From 337aef87ef141c767c106cbe2cec0a7c6914eeab Mon Sep 17 00:00:00 2001 From: rabuzarus Date: Wed, 30 Sep 2015 00:19:54 +0200 Subject: [PATCH 01/47] port of reds geotag feature --- include/Photo.php | 51 +++++++++++++++++++++++-------------------- include/features.php | 1 + include/photos.php | 27 +++++++++++++++++++++++ mod/photos.php | 52 ++++++++++++++++++++++++++++++++++++-------- 4 files changed, 98 insertions(+), 33 deletions(-) create mode 100644 include/photos.php diff --git a/include/Photo.php b/include/Photo.php index 785601c7e4..9732801c9a 100644 --- a/include/Photo.php +++ b/include/Photo.php @@ -345,38 +345,37 @@ class Photo { } public function orient($filename) { - if ($this->is_imagick()) { - // based off comment on http://php.net/manual/en/imagick.getimageorientation.php - $orientation = $this->image->getImageOrientation(); - switch ($orientation) { - case imagick::ORIENTATION_BOTTOMRIGHT: - $this->image->rotateimage("#000", 180); - break; - case imagick::ORIENTATION_RIGHTTOP: - $this->image->rotateimage("#000", 90); - break; - case imagick::ORIENTATION_LEFTBOTTOM: - $this->image->rotateimage("#000", -90); - break; - } + if ($this->is_imagick()) { + // based off comment on http://php.net/manual/en/imagick.getimageorientation.php + $orientation = $this->image->getImageOrientation(); + switch ($orientation) { + case imagick::ORIENTATION_BOTTOMRIGHT: + $this->image->rotateimage("#000", 180); + break; + case imagick::ORIENTATION_RIGHTTOP: + $this->image->rotateimage("#000", 90); + break; + case imagick::ORIENTATION_LEFTBOTTOM: + $this->image->rotateimage("#000", -90); + break; + } - $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); - return TRUE; - } + $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); + return TRUE; + } // based off comment on http://php.net/manual/en/function.imagerotate.php if(!$this->is_valid()) - return FALSE; + return FALSE; if( (! function_exists('exif_read_data')) || ($this->getType() !== 'image/jpeg') ) - return; + return; - $exif = @exif_read_data($filename); + $exif = @exif_read_data($filename,null,true); + if(! $exif) + return; - if(! $exif) - return; - - $ort = $exif['Orientation']; + $ort = $exif['IFD0']['Orientation']; switch($ort) { @@ -413,6 +412,10 @@ class Photo { $this->rotate(90); break; } + + // logger('exif: ' . print_r($exif,true)); + return $exif; + } diff --git a/include/features.php b/include/features.php index 091dfc6e9d..5450c7fab0 100644 --- a/include/features.php +++ b/include/features.php @@ -23,6 +23,7 @@ function get_features() { t('General Features'), //array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')), array('multi_profiles', t('Multiple Profiles'), t('Ability to create multiple profiles')), + array('photo_location', t('Photo Location'), t('Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'),false), ), // Post composition diff --git a/include/photos.php b/include/photos.php new file mode 100644 index 0000000000..93a565b511 --- /dev/null +++ b/include/photos.php @@ -0,0 +1,27 @@ + 0 ? gps2Num($exifCoord[0]) : 0; + $minutes = count($exifCoord) > 1 ? gps2Num($exifCoord[1]) : 0; + $seconds = count($exifCoord) > 2 ? gps2Num($exifCoord[2]) : 0; + + $flip = ($hemi == 'W' or $hemi == 'S') ? -1 : 1; + + return floatval($flip * ($degrees + ($minutes / 60) + ($seconds / 3600))); +} + +function gps2Num($coordPart) { + $parts = explode('/', $coordPart); + + if (count($parts) <= 0) + return 0; + + if (count($parts) == 1) + return $parts[0]; + + return floatval($parts[0]) / floatval($parts[1]); +} diff --git a/mod/photos.php b/mod/photos.php index 3d3b92a46d..e911c65054 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -1,5 +1,6 @@ get_baseurl() . '/' . $_SESSION['photo_return']); } + /* + * RENAME photo album + */ + $newalbum = notags(trim($_POST['albumname'])); if($newalbum != $album) { q("UPDATE `photo` SET `album` = '%s' WHERE `album` = '%s' AND `uid` = %d", @@ -206,6 +211,9 @@ function photos_post(&$a) { return; // NOTREACHED } + /* + * DELETE photo album and all its photos + */ if($_POST['dropalbum'] == t('Delete Album')) { @@ -534,12 +542,12 @@ function photos_post(&$a) { if(count($links)) { foreach($links as $link) { if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') - $profile = $link['@attributes']['href']; + $profile = $link['@attributes']['href']; if($link['@attributes']['rel'] === 'salmon') { $salmon = '$url:' . str_replace(',','%sc',$link['@attributes']['href']); if(strlen($inform)) $inform .= ','; - $inform .= $salmon; + $inform .= $salmon; } } } @@ -833,7 +841,7 @@ function photos_post(&$a) { killme(); } - $ph->orient($src); + $exif = $ph->orient($src); @unlink($src); $max_length = get_config('system','max_image_length'); @@ -874,8 +882,20 @@ function photos_post(&$a) { // Create item container + $lat = $lon = null; + + if($exif && $exif['GPS']) { + if(feature_enabled($channel_id,'photo_location')) { + $lat = getGps($exif['GPS']['GPSLatitude'], $exif['GPS']['GPSLatitudeRef']); + $lon = getGps($exif['GPS']['GPSLongitude'], $exif['GPS']['GPSLongitudeRef']); + } + } + $arr = array(); + if($lat && $lon) + $arr['coord'] = $lat . ' ' . $lon; + $arr['uid'] = $page_owner_uid; $arr['uri'] = $uri; $arr['parent-uri'] = $uri; @@ -1062,10 +1082,9 @@ function photos_content(&$a) { $_is_owner = (local_user() && (local_user() == $owner_uid)); $o .= profile_tabs($a,$_is_owner, $a->data['user']['nickname']); - // - // dispatch request - // - + /** + * Display upload form + */ if($datatype === 'upload') { if(! ($can_post)) { @@ -1176,6 +1195,10 @@ function photos_content(&$a) { return $o; } + /* + * Display a single photo album + */ + if($datatype === 'album') { $album = hex2bin($datum); @@ -1203,6 +1226,7 @@ function photos_content(&$a) { intval($a->pager['itemspage']) ); + //edit album name if($cmd === 'edit') { if(($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos'))) { if($can_post) { @@ -1290,11 +1314,12 @@ function photos_content(&$a) { } + /** + * Display one photo + */ if($datatype === 'image') { - - //$o = ''; // fetch image, item containing image, then comments @@ -1418,6 +1443,9 @@ function photos_content(&$a) { $linked_items = q("SELECT * FROM `item` WHERE `resource-id` = '%s' $sql_extra LIMIT 1", dbesc($datum) ); + + $map = null; + if(count($linked_items)) { $link_item = $linked_items[0]; $r = q("SELECT COUNT(*) AS `total` @@ -1461,6 +1489,10 @@ function photos_content(&$a) { ); update_thread($link_item['parent']); } + + if($link_item['coord']) { + $map = generate_map($link_item['coord']); + } } $tags=Null; @@ -1753,6 +1785,8 @@ function photos_content(&$a) { '$desc' => $ph[0]['desc'], '$tags' => $tags_e, '$edit' => $edit, + '$map' => $map, + '$map_text' => t('Map'), '$likebuttons' => $likebuttons, '$like' => $like_e, '$dislike' => $dikslike_e, From 8e1564965df15d707547e2c3749df28143a1429b Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Wed, 30 Sep 2015 12:33:57 +0200 Subject: [PATCH 02/47] port of reds geotag feature --- include/Photo.php | 51 +++++++++++++++++++++++--------------------- include/features.php | 1 + include/photos.php | 27 +++++++++++++++++++++++ mod/photos.php | 48 +++++++++++++++++++++++++++++++++++------ 4 files changed, 96 insertions(+), 31 deletions(-) create mode 100644 include/photos.php diff --git a/include/Photo.php b/include/Photo.php index 785601c7e4..9732801c9a 100644 --- a/include/Photo.php +++ b/include/Photo.php @@ -345,38 +345,37 @@ class Photo { } public function orient($filename) { - if ($this->is_imagick()) { - // based off comment on http://php.net/manual/en/imagick.getimageorientation.php - $orientation = $this->image->getImageOrientation(); - switch ($orientation) { - case imagick::ORIENTATION_BOTTOMRIGHT: - $this->image->rotateimage("#000", 180); - break; - case imagick::ORIENTATION_RIGHTTOP: - $this->image->rotateimage("#000", 90); - break; - case imagick::ORIENTATION_LEFTBOTTOM: - $this->image->rotateimage("#000", -90); - break; - } + if ($this->is_imagick()) { + // based off comment on http://php.net/manual/en/imagick.getimageorientation.php + $orientation = $this->image->getImageOrientation(); + switch ($orientation) { + case imagick::ORIENTATION_BOTTOMRIGHT: + $this->image->rotateimage("#000", 180); + break; + case imagick::ORIENTATION_RIGHTTOP: + $this->image->rotateimage("#000", 90); + break; + case imagick::ORIENTATION_LEFTBOTTOM: + $this->image->rotateimage("#000", -90); + break; + } - $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); - return TRUE; - } + $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); + return TRUE; + } // based off comment on http://php.net/manual/en/function.imagerotate.php if(!$this->is_valid()) - return FALSE; + return FALSE; if( (! function_exists('exif_read_data')) || ($this->getType() !== 'image/jpeg') ) - return; + return; - $exif = @exif_read_data($filename); + $exif = @exif_read_data($filename,null,true); + if(! $exif) + return; - if(! $exif) - return; - - $ort = $exif['Orientation']; + $ort = $exif['IFD0']['Orientation']; switch($ort) { @@ -413,6 +412,10 @@ class Photo { $this->rotate(90); break; } + + // logger('exif: ' . print_r($exif,true)); + return $exif; + } diff --git a/include/features.php b/include/features.php index 091dfc6e9d..5450c7fab0 100644 --- a/include/features.php +++ b/include/features.php @@ -23,6 +23,7 @@ function get_features() { t('General Features'), //array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')), array('multi_profiles', t('Multiple Profiles'), t('Ability to create multiple profiles')), + array('photo_location', t('Photo Location'), t('Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'),false), ), // Post composition diff --git a/include/photos.php b/include/photos.php new file mode 100644 index 0000000000..93a565b511 --- /dev/null +++ b/include/photos.php @@ -0,0 +1,27 @@ + 0 ? gps2Num($exifCoord[0]) : 0; + $minutes = count($exifCoord) > 1 ? gps2Num($exifCoord[1]) : 0; + $seconds = count($exifCoord) > 2 ? gps2Num($exifCoord[2]) : 0; + + $flip = ($hemi == 'W' or $hemi == 'S') ? -1 : 1; + + return floatval($flip * ($degrees + ($minutes / 60) + ($seconds / 3600))); +} + +function gps2Num($coordPart) { + $parts = explode('/', $coordPart); + + if (count($parts) <= 0) + return 0; + + if (count($parts) == 1) + return $parts[0]; + + return floatval($parts[0]) / floatval($parts[1]); +} diff --git a/mod/photos.php b/mod/photos.php index a19cfaaa72..834fab33fd 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -1,5 +1,6 @@ get_baseurl() . '/' . $_SESSION['photo_return']); } + /* + * RENAME photo album + */ + $newalbum = notags(trim($_POST['albumname'])); if($newalbum != $album) { q("UPDATE `photo` SET `album` = '%s' WHERE `album` = '%s' AND `uid` = %d", @@ -210,6 +215,9 @@ function photos_post(&$a) { return; // NOTREACHED } + /* + * DELETE photo album and all its photos + */ if($_POST['dropalbum'] == t('Delete Album')) { @@ -837,7 +845,7 @@ function photos_post(&$a) { killme(); } - $ph->orient($src); + $exif = $ph->orient($src); @unlink($src); $max_length = get_config('system','max_image_length'); @@ -878,8 +886,20 @@ function photos_post(&$a) { // Create item container + $lat = $lon = null; + + if($exif && $exif['GPS']) { + if(feature_enabled($channel_id,'photo_location')) { + $lat = getGps($exif['GPS']['GPSLatitude'], $exif['GPS']['GPSLatitudeRef']); + $lon = getGps($exif['GPS']['GPSLongitude'], $exif['GPS']['GPSLongitudeRef']); + } + } + $arr = array(); + if($lat && $lon) + $arr['coord'] = $lat . ' ' . $lon; + $arr['uid'] = $page_owner_uid; $arr['uri'] = $uri; $arr['parent-uri'] = $uri; @@ -1066,10 +1086,9 @@ function photos_content(&$a) { $is_owner = (local_user() && (local_user() == $owner_uid)); $o .= profile_tabs($a,$is_owner, $a->data['user']['nickname']); - // - // dispatch request - // - + /** + * Display upload form + */ if($datatype === 'upload') { if(! ($can_post)) { @@ -1180,6 +1199,10 @@ function photos_content(&$a) { return $o; } + /* + * Display a single photo album + */ + if($datatype === 'album') { $album = hex2bin($datum); @@ -1207,6 +1230,7 @@ function photos_content(&$a) { intval($a->pager['itemspage']) ); + //edit album name if($cmd === 'edit') { if(($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos'))) { if($can_post) { @@ -1294,11 +1318,12 @@ function photos_content(&$a) { } + /** + * Display one photo + */ if($datatype === 'image') { - - //$o = ''; // fetch image, item containing image, then comments @@ -1422,6 +1447,9 @@ function photos_content(&$a) { $linked_items = q("SELECT * FROM `item` WHERE `resource-id` = '%s' $sql_extra LIMIT 1", dbesc($datum) ); + + $map = null; + if(count($linked_items)) { $link_item = $linked_items[0]; $r = q("SELECT COUNT(*) AS `total` @@ -1465,6 +1493,10 @@ function photos_content(&$a) { ); update_thread($link_item['parent']); } + + if($link_item['coord']) { + $map = generate_map($link_item['coord']); + } } $tags=Null; @@ -1757,6 +1789,8 @@ function photos_content(&$a) { '$desc' => $ph[0]['desc'], '$tags' => $tags_e, '$edit' => $edit, + '$map' => $map, + '$map_text' => t('Map'), '$likebuttons' => $likebuttons, '$like' => $like_e, '$dislike' => $dikslike_e, From 68a6f0298e4ebbe74d353d130da0094490a4579c Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 30 Sep 2015 18:50:44 +0200 Subject: [PATCH 03/47] The events moved from the profile to the navigation bar - for supported themes --- boot.php | 1 + include/identity.php | 47 ++++++++++++++++++++------------------- include/nav.php | 1 + mod/events.php | 7 +++++- mod/notes.php | 2 ++ mod/photos.php | 2 ++ mod/videos.php | 2 ++ view/theme/vier/theme.php | 3 +++ 8 files changed, 41 insertions(+), 24 deletions(-) diff --git a/boot.php b/boot.php index 5f633fd878..b395d3423a 100644 --- a/boot.php +++ b/boot.php @@ -408,6 +408,7 @@ if(! class_exists('App')) { public $videoheight = 350; public $force_max_items = 0; public $theme_thread_allow = true; + public $theme_events_in_profile = true; // An array for all theme-controllable parameters // Mostly unimplemented yet. Only options 'stylesheet' and diff --git a/include/identity.php b/include/identity.php index 0fba0c592f..b4bc79e00f 100644 --- a/include/identity.php +++ b/include/identity.php @@ -501,7 +501,7 @@ if(! function_exists('get_events')) { } $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false); - + $rr['title'] = $title; $rr['description'] = $desciption; $rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : ''); @@ -533,21 +533,21 @@ function advanced_profile(&$a) { if($a->profile['name']) { $tpl = get_markup_template('profile_advanced.tpl'); - + $profile = array(); - + $profile['fullname'] = array( t('Full Name:'), $a->profile['name'] ) ; - + if($a->profile['gender']) $profile['gender'] = array( t('Gender:'), $a->profile['gender'] ); - + if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) { - + $year_bd_format = t('j F, Y'); $short_bd_format = t('j F'); - - $val = ((intval($a->profile['dob'])) + + $val = ((intval($a->profile['dob'])) ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00',$year_bd_format)) : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],5) . ' 00:00 +00:00',$short_bd_format))); @@ -556,7 +556,7 @@ function advanced_profile(&$a) { } if($age = age($a->profile['dob'],$a->profile['timezone'],'')) $profile['age'] = array( t('Age:'), $age ); - + if($a->profile['marital']) $profile['marital'] = array( t('Status:'), $a->profile['marital']); @@ -591,7 +591,7 @@ function advanced_profile(&$a) { if($txt = prepare_text($a->profile['contact'])) $profile['contact'] = array( t('Contact information and Social Networks:'), $txt); if($txt = prepare_text($a->profile['music'])) $profile['music'] = array( t('Musical interests:'), $txt); - + if($txt = prepare_text($a->profile['book'])) $profile['book'] = array( t('Books, literature:'), $txt); if($txt = prepare_text($a->profile['tv'])) $profile['tv'] = array( t('Television:'), $txt); @@ -599,14 +599,14 @@ function advanced_profile(&$a) { if($txt = prepare_text($a->profile['film'])) $profile['film'] = array( t('Film/dance/culture/entertainment:'), $txt); if($txt = prepare_text($a->profile['romance'])) $profile['romance'] = array( t('Love/Romance:'), $txt); - + if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt); if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt ); - + if ($a->profile['uid'] == local_user()) $profile['edit'] = array($a->get_baseurl(). '/profiles/'.$a->profile['id'], t('Edit profile'),"", t('Edit profile')); - + return replace_macros($tpl, array( '$title' => t('Profile'), '$profile' => $profile @@ -664,14 +664,15 @@ if(! function_exists('profile_tabs')){ ); if ($is_owner){ - $tabs[] = array( - 'label' => t('Events'), - 'url' => $a->get_baseurl() . '/events', - 'sel' =>((!isset($tab)&&$a->argv[0]=='events')?'active':''), - 'title' => t('Events and Calendar'), - 'id' => 'events-tab', - 'accesskey' => 'e', - ); + if ($a->theme_events_in_profile) + $tabs[] = array( + 'label' => t('Events'), + 'url' => $a->get_baseurl() . '/events', + 'sel' =>((!isset($tab)&&$a->argv[0]=='events')?'active':''), + 'title' => t('Events and Calendar'), + 'id' => 'events-tab', + 'accesskey' => 'e', + ); $tabs[] = array( 'label' => t('Personal Notes'), 'url' => $a->get_baseurl() . '/notes', @@ -737,8 +738,8 @@ function zrl($s,$force = false) { // Used from within PCSS themes to set theme parameters. If there's a // puid request variable, that is the "page owner" and normally their theme -// settings take precedence; unless a local user sets the "always_my_theme" -// system pconfig, which means they don't want to see anybody else's theme +// settings take precedence; unless a local user sets the "always_my_theme" +// system pconfig, which means they don't want to see anybody else's theme // settings except their own while on this site. function get_theme_uid() { diff --git a/include/nav.php b/include/nav.php index 972a6248c1..7fa9754ef1 100644 --- a/include/nav.php +++ b/include/nav.php @@ -240,6 +240,7 @@ function nav_set_selected($item){ 'settings' => null, 'contacts' => null, 'manage' => null, + 'events' => null, 'register' => null, ); $a->nav_sel[$item] = 'selected'; diff --git a/mod/events.php b/mod/events.php index ff61514170..c9c9b7d9f1 100644 --- a/mod/events.php +++ b/mod/events.php @@ -179,6 +179,10 @@ function events_content(&$a) { ); } + if ($a->theme_events_in_profile) + nav_set_selected('home'); + else + nav_set_selected('events'); $editselect = 'none'; if( feature_enabled(local_user(), 'richtext') ) @@ -249,7 +253,8 @@ function events_content(&$a) { $o =""; // tabs - $tabs = profile_tabs($a, True); + if ($a->theme_events_in_profile) + $tabs = profile_tabs($a, True); diff --git a/mod/notes.php b/mod/notes.php index b960924956..73c1507e3e 100644 --- a/mod/notes.php +++ b/mod/notes.php @@ -9,6 +9,8 @@ function notes_init(&$a) { $which = $a->user['nickname']; + nav_set_selected('home'); + // profile_load($a,$which,$profile); } diff --git a/mod/photos.php b/mod/photos.php index a19cfaaa72..6d147a6f55 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -17,6 +17,8 @@ function photos_init(&$a) { return; } + nav_set_selected('home'); + $o = ''; if($a->argc > 1) { diff --git a/mod/videos.php b/mod/videos.php index df47262f1d..a7d48cb751 100644 --- a/mod/videos.php +++ b/mod/videos.php @@ -15,6 +15,8 @@ function videos_init(&$a) { return; } + nav_set_selected('home'); + $o = ''; if($a->argc > 1) { diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index 7c94f001aa..c52a2be82e 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -10,6 +10,9 @@ */ function vier_init(&$a) { + +$a->theme_events_in_profile = false; + set_template_engine($a, 'smarty3'); $baseurl = $a->get_baseurl(); From 389b7de451eb8e684b48e2c96598f1d12c1465d9 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 30 Sep 2015 19:18:13 +0200 Subject: [PATCH 04/47] Setting for the first day of the week --- mod/events.php | 3 +-- mod/settings.php | 7 +++++++ view/templates/settings_display.tpl | 1 + 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/mod/events.php b/mod/events.php index c9c9b7d9f1..e601ce8e4e 100644 --- a/mod/events.php +++ b/mod/events.php @@ -189,8 +189,7 @@ function events_content(&$a) { $editselect = 'textareas'; // First day of the week (0 = Sunday) - // To-Do: Needs to be configurable - $firstDay = 0; + $firstDay = get_pconfig(local_user(),'system','first_day_of_week'); $i18n = array( "firstDay" => $firstDay, diff --git a/mod/settings.php b/mod/settings.php index 556fb63e8a..e18d8bd6d8 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -284,6 +284,7 @@ function settings_post(&$a) { $theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : $a->user['theme']); $mobile_theme = ((x($_POST,'mobile_theme')) ? notags(trim($_POST['mobile_theme'])) : ''); $nosmile = ((x($_POST,'nosmile')) ? intval($_POST['nosmile']) : 0); + $first_day_of_week = ((x($_POST,'first_day_of_week')) ? intval($_POST['first_day_of_week']) : 0); $noinfo = ((x($_POST,'noinfo')) ? intval($_POST['noinfo']) : 0); $infinite_scroll = ((x($_POST,'infinite_scroll')) ? intval($_POST['infinite_scroll']) : 0); $no_auto_update = ((x($_POST,'no_auto_update')) ? intval($_POST['no_auto_update']) : 0); @@ -308,6 +309,7 @@ function settings_post(&$a) { set_pconfig(local_user(),'system','itemspage_network', $itemspage_network); set_pconfig(local_user(),'system','itemspage_mobile_network', $itemspage_mobile_network); set_pconfig(local_user(),'system','no_smilies',$nosmile); + set_pconfig(local_user(),'system','first_day_of_week',$first_day_of_week); set_pconfig(local_user(),'system','ignore_info',$noinfo); set_pconfig(local_user(),'system','infinite_scroll',$infinite_scroll); set_pconfig(local_user(),'system','no_auto_update',$no_auto_update); @@ -915,6 +917,10 @@ function settings_content(&$a) { $nosmile = get_pconfig(local_user(),'system','no_smilies'); $nosmile = (($nosmile===false)? '0': $nosmile); // default if not set: 0 + $first_day_of_week = get_pconfig(local_user(),'system','first_day_of_week'); + $first_day_of_week = (($first_day_of_week===false)? '0': $first_day_of_week); // default if not set: 0 + $weekdays = array(0 => t("Sunday"), 1 => t("Monday")); + $noinfo = get_pconfig(local_user(),'system','ignore_info'); $noinfo = (($noinfo===false)? '0': $noinfo); // default if not set: 0 @@ -944,6 +950,7 @@ function settings_content(&$a) { '$itemspage_network' => array('itemspage_network', t("Number of items to display per page:"), $itemspage_network, t('Maximum of 100 items')), '$itemspage_mobile_network' => array('itemspage_mobile_network', t("Number of items to display per page when viewed from mobile device:"), $itemspage_mobile_network, t('Maximum of 100 items')), '$nosmile' => array('nosmile', t("Don't show emoticons"), $nosmile, ''), + '$first_day_of_week' => array('first_day_of_week', t('Beginning of week:'), $first_day_of_week, '', $weekdays, false), '$noinfo' => array('noinfo', t("Don't show notices"), $noinfo, ''), '$infinite_scroll' => array('infinite_scroll', t("Infinite scroll"), $infinite_scroll, ''), '$no_auto_update' => array('no_auto_update', t("Automatic updates only at the top of the network page"), $no_auto_update, 'When disabled, the network page is updated all the time, which could be confusing while reading.'), diff --git a/view/templates/settings_display.tpl b/view/templates/settings_display.tpl index ac41c1c27c..ff2d7fe1d6 100644 --- a/view/templates/settings_display.tpl +++ b/view/templates/settings_display.tpl @@ -13,6 +13,7 @@ {{include file="field_checkbox.tpl" field=$nosmile}} {{include file="field_checkbox.tpl" field=$noinfo}} {{include file="field_checkbox.tpl" field=$infinite_scroll}} +{{include file="field_select.tpl" field=$first_day_of_week}}
From 5fe357ee75221a155aa1c535ba272f8441053e5a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 30 Sep 2015 21:59:55 +0200 Subject: [PATCH 05/47] Rearrange the navigation bar on smaller windows --- view/theme/vier/narrow.css | 12 ++++++++++++ view/theme/vier/style.php | 2 -- view/theme/vier/theme.php | 1 + 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 view/theme/vier/narrow.css diff --git a/view/theme/vier/narrow.css b/view/theme/vier/narrow.css new file mode 100644 index 0000000000..09f0e2f12e --- /dev/null +++ b/view/theme/vier/narrow.css @@ -0,0 +1,12 @@ +#nav-user-linklabel { + display: none; +} + +nav ul li .menu-popup { + left: auto; + right: 0px; +} + +nav #search-box #search-text { + width: 100px; +} diff --git a/view/theme/vier/style.php b/view/theme/vier/style.php index e118d1ef09..72731a9beb 100644 --- a/view/theme/vier/style.php +++ b/view/theme/vier/style.php @@ -26,5 +26,3 @@ else if ($style == "dark") $stylecss = file_get_contents('view/theme/vier/dark.css'); echo $stylecss; - - diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index c52a2be82e..af7cd0275f 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -20,6 +20,7 @@ $baseurl = $a->get_baseurl(); $a->theme_info = array(); $a->page['htmlhead'] .= <<< EOT + EOT; + + // Hide the left menu bar + if (($a->page['aside'] == "") AND in_array($a->argv[0], array("community", "events", "help", "manage", "notifications", "probe", "webfinger", "login"))) + $a->page['htmlhead'] .= ""; } +function get_vier_config($key, $default = false) { + if (local_user()) { + $result = get_pconfig(local_user(), "vier", $key); + if ($result !== false) + return $result; + } + + $result = get_config("vier", $key); + if ($result !== false) + return $result; + + return $default; +} + +function vier_community_info() { + $a = get_app(); +/* + $close_pages = get_vier_config("close_pages", 1); + $close_profiles = get_vier_config("close_profiles", 0); + $close_helpers = get_vier_config("close_helpers", 0); + $close_services = get_vier_config("close_services", 0); + $close_friends = get_vier_config("close_friends", 0); + $close_lastusers = get_vier_config("close_lastusers", 0); + $close_lastphotos = get_vier_config("close_lastphotos", 0); + $close_lastlikes = get_vier_config("close_lastlikes", 0); +*/ + $close_pages = false; + $close_profiles = true; + $close_helpers = false; + $close_services = false; + $close_friends = false; + $close_lastusers = true; + $close_lastphotos = true; + $close_lastlikes = true; + + // comunity_profiles + if(!$close_profiles) { + $aside['$comunity_profiles_title'] = t('Community Profiles'); + $aside['$comunity_profiles_items'] = array(); + $r = q("select gcontact.* from gcontact left join glink on glink.gcid = gcontact.id + where glink.cid = 0 and glink.uid = 0 order by rand() limit 9"); + $tpl = get_markup_template('ch_directory_item.tpl'); + if(count($r)) { + $photo = 'photo'; + foreach($r as $rr) { + $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']); + $entry = replace_macros($tpl,array( + '$id' => $rr['id'], + '$profile_link' => zrl($rr['url']), + '$photo' => $rr[$photo], + '$alt_text' => $rr['name'], + )); + $aside['$comunity_profiles_items'][] = $entry; + } + } + } + + // last 12 users + if(!$close_lastusers) { + $aside['$lastusers_title'] = t('Last users'); + $aside['$lastusers_items'] = array(); + $sql_extra = ""; + $publish = (get_config('system','publish_all') ? '' : " AND `publish` = 1 "); + $order = " ORDER BY `register_date` DESC "; + + $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname` + FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` + WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra $order LIMIT %d , %d ", + 0, 9); + + $tpl = get_markup_template('ch_directory_item.tpl'); + if(count($r)) { + $photo = 'thumb'; + foreach($r as $rr) { + $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']); + $entry = replace_macros($tpl,array( + '$id' => $rr['id'], + '$profile_link' => $profile_link, + '$photo' => $a->get_cached_avatar_image($rr[$photo]), + '$alt_text' => $rr['name'])); + $aside['$lastusers_items'][] = $entry; + } + } + } + + // last 10 liked items +/* + if(!$close_lastlikes) { + $aside['$like_title'] = t('Last likes'); + $aside['$like_items'] = array(); + $r = q("SELECT `T1`.`created`, `T1`.`liker`, `T1`.`liker-link`, `item`.* FROM + (SELECT `parent-uri`, `created`, `author-name` AS `liker`,`author-link` AS `liker-link` + FROM `item` WHERE `verb`='http://activitystrea.ms/schema/1.0/like' GROUP BY `parent-uri` ORDER BY `created` DESC) AS T1 + INNER JOIN `item` ON `item`.`uri`=`T1`.`parent-uri` + WHERE `T1`.`liker-link` LIKE '%s%%' OR `item`.`author-link` LIKE '%s%%' + GROUP BY `uri` + ORDER BY `T1`.`created` DESC + LIMIT 0,5", + $a->get_baseurl(),$a->get_baseurl()); + + foreach ($r as $rr) { + $author = '' . $rr['liker'] . ''; + $objauthor = '' . $rr['author-name'] . ''; + + //var_dump($rr['verb'],$rr['object-type']); killme(); + switch($rr['verb']){ + case 'http://activitystrea.ms/schema/1.0/post': + switch ($rr['object-type']){ + case 'http://activitystrea.ms/schema/1.0/event': + $post_type = t('event'); + break; + default: + $post_type = t('status'); + } + break; + default: + if ($rr['resource-id']){ + $post_type = t('photo'); + $m=array(); + preg_match("/\[url=([^]]*)\]/", $rr['body'], $m); + $rr['plink'] = $m[1]; + } else + $post_type = t('status'); + } + $plink = '' . $post_type . ''; + + $aside['$like_items'][] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink); + + } + } + + // last 12 photos + if(!$close_lastphotos) { + $aside['$photos_title'] = t('Last photos'); + $aside['$photos_items'] = array(); + $r = q("SELECT `photo`.`id`, `photo`.`resource-id`, `photo`.`scale`, `photo`.`desc`, `user`.`nickname`, `user`.`username` FROM + (SELECT `resource-id`, MAX(`scale`) as maxscale FROM `photo` + WHERE `profile`=0 AND `contact-id`=0 AND `album` NOT IN ('Contact Photos', '%s', 'Profile Photos', '%s') + AND `allow_cid`='' AND `allow_gid`='' AND `deny_cid`='' AND `deny_gid`='' GROUP BY `resource-id`) AS `t1` + INNER JOIN `photo` ON `photo`.`resource-id`=`t1`.`resource-id` AND `photo`.`scale` = `t1`.`maxscale`, + `user` + WHERE `user`.`uid` = `photo`.`uid` + AND `user`.`blockwall`=0 + AND `user`.`hidewall`=0 + ORDER BY `photo`.`edited` DESC + LIMIT 0, 9", + dbesc(t('Contact Photos')), + dbesc(t('Profile Photos')) + ); + if(count($r)) { + $tpl = get_markup_template('ch_directory_item.tpl'); + foreach($r as $rr) { + $photo_page = $a->get_baseurl() . '/photos/' . $rr['nickname'] . '/image/' . $rr['resource-id']; + $photo_url = $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['scale'] .'.jpg'; + + $entry = replace_macros($tpl,array( + '$id' => $rr['id'], + '$profile_link' => $photo_page, + '$photo' => $photo_url, + '$alt_text' => $rr['username']." : ".$rr['desc'])); + + $aside['$photos_items'][] = $entry; + } + } + } +*/ + //right_aside FIND FRIENDS + if (!$close_friends AND local_user()) { + $nv = array(); + $nv['title'] = Array("", t('Find Friends'), "", ""); + $nv['directory'] = Array('directory', t('Local Directory'), "", ""); + $nv['global_directory'] = Array('http://dir.friendica.com/', t('Global Directory'), "", ""); + $nv['match'] = Array('match', t('Similar Interests'), "", ""); + $nv['suggest'] = Array('suggest', t('Friend Suggestions'), "", ""); + $nv['invite'] = Array('invite', t('Invite Friends'), "", ""); + + $nv['search'] = '
+ + + + + '; + + $aside['$nv'] = $nv; + } + + //Community_Pages at right_aside + if(!$close_pages AND local_user()) { + $page = ' +

'.t("Community Pages").'

+
    '; + + $pagelist = array(); + + $contacts = q("SELECT `id`, `url`, `name`, `micro`FROM `contact` + WHERE `network`= 'dfrn' AND `forum` = 1 AND `uid` = %d + ORDER BY `name` ASC", + intval($a->user['uid'])); + + $pageD = array(); + + // Look if the profile is a community page + foreach($contacts as $contact) { + $pageD[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']); + }; + + + $contacts = $pageD; + + foreach($contacts as $contact) { + $page .= '
  • ' . $contact['url'] . ' '. + $contact["name"]."
  • "; + } + $page .= '
'; + //if (sizeof($contacts) > 0) + $aside['$page'] = $page; + } + //END Community Page + + //helpers + if(!$close_helpers) { + $helpers = array(); + $helpers['title'] = Array("", t('Help or @NewHere ?'), "", ""); + $aside['$helpers'] = $helpers; + } + //end helpers + + //connectable services + if (!$close_services) { + $con_services = array(); + $con_services['title'] = Array("", t('Connect Services'), "", ""); + $aside['$con_services'] = $con_services; + } + //end connectable services + +/* + if($ccCookie != "9") { + $close_pages = get_vier_config( "close_pages", 1 ); + $close_profiles = get_vier_config( "close_profiles", 0 ); + $close_helpers = get_vier_config( "close_helpers", 0 ); + $close_services = get_vier_config( "close_services", 0 ); + $close_friends = get_vier_config( "close_friends", 0 ); + $close_lastusers = get_vier_config( "close_lastusers", 0 ); + $close_lastphotos = get_vier_config( "close_lastphotos", 0 ); + $close_lastlikes = get_vier_config( "close_lastlikes", 0 ); + $close_or_not = array('1'=>t("don't show"), '0'=>t("show"),); + $boxsettings['title'] = Array("", t('Show/hide boxes at right-hand column:'), "", ""); + $aside['$boxsettings'] = $boxsettings; + $aside['$close_pages'] = array('vier_close_pages', t('Community Pages'), $close_pages, '', $close_or_not); + $aside['$close_profiles'] = array('vier_close_profiles', t('Community Profiles'), $close_profiles, '', $close_or_not); + $aside['$close_helpers'] = array('vier_close_helpers', t('Help or @NewHere ?'), $close_helpers, '', $close_or_not); + $aside['$close_services'] = array('vier_close_services', t('Connect Services'), $close_services, '', $close_or_not); + $aside['$close_friends'] = array('vier_close_friends', t('Find Friends'), $close_friends, '', $close_or_not); + $aside['$close_lastusers'] = array('vier_close_lastusers', t('Last users'), $close_lastusers, '', $close_or_not); + $aside['$close_lastphotos'] = array('vier_close_lastphotos', t('Last photos'), $close_lastphotos, '', $close_or_not); + $aside['$close_lastlikes'] = array('vier_close_lastlikes', t('Last likes'), $close_lastlikes, '', $close_or_not); + $aside['$sub'] = t('Submit'); + $baseurl = $a->get_baseurl($ssl_state); + $aside['$baseurl'] = $baseurl; + + if (isset($_POST['vier-settings-box-sub']) && $_POST['vier-settings-box-sub']!=''){ + set_pconfig(local_user(), 'vier', 'close_pages', $_POST['vier_close_pages']); + set_pconfig(local_user(), 'vier', 'close_profiles', $_POST['vier_close_profiles']); + set_pconfig(local_user(), 'vier', 'close_helpers', $_POST['vier_close_helpers']); + set_pconfig(local_user(), 'vier', 'close_services', $_POST['vier_close_services']); + set_pconfig(local_user(), 'vier', 'close_friends', $_POST['vier_close_friends']); + set_pconfig(local_user(), 'vier', 'close_lastusers', $_POST['vier_close_lastusers']); + set_pconfig(local_user(), 'vier', 'close_lastphotos', $_POST['vier_close_lastphotos']); + set_pconfig(local_user(), 'vier', 'close_lastlikes', $_POST['vier_close_lastlikes']); + } + } + $close = t('Settings'); + $aside['$close'] = $close; +*/ + //get_baseurl + $url = $a->get_baseurl($ssl_state); + $aside['$url'] = $url; + + //print right_aside + $tpl = get_markup_template('communityhome.tpl'); + $a->page['right_aside'] = replace_macros($tpl, $aside); +} diff --git a/view/theme/vier/wide.css b/view/theme/vier/wide.css new file mode 100644 index 0000000000..7c703a4af5 --- /dev/null +++ b/view/theme/vier/wide.css @@ -0,0 +1,23 @@ +right_aside { + vertical-align: top; + width: 185px; + padding-top: 10px; + padding-right: 20px; + padding-bottom: 0px; + padding-left: 10px; + background-color: #FFFFFF; + font-size: 13px; + overflow-y: auto; + z-index: 2; + line-height: 17px; + position: fixed; + color: #737373; + top: 44px; + height: calc(100% - 54px); + display: block; + margin-left: calc(100% - 215px); +} + +#forumlist-sidebar { + display: none; +} From 3ae0deadb681b39228640f2aa2f67125327306de Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 3 Oct 2015 12:55:55 +0200 Subject: [PATCH 08/47] The right side now contains much stuff from diabook - but completely reworked. --- view/theme/vier/config.php | 58 ++- view/theme/vier/style.css | 10 +- view/theme/vier/templates/ch_connectors.tpl | 2 + view/theme/vier/templates/ch_helpers.tpl | 1 + view/theme/vier/templates/communityhome.tpl | 83 ++--- .../vier/templates/theme_admin_settings.tpl | 1 + view/theme/vier/templates/theme_settings.tpl | 6 + view/theme/vier/theme.php | 350 +++++++++--------- view/theme/vier/wide.css | 33 +- 9 files changed, 288 insertions(+), 256 deletions(-) create mode 100644 view/theme/vier/templates/ch_connectors.tpl create mode 100644 view/theme/vier/templates/ch_helpers.tpl create mode 100644 view/theme/vier/templates/theme_admin_settings.tpl diff --git a/view/theme/vier/config.php b/view/theme/vier/config.php index 9df9088ed8..5084a26053 100644 --- a/view/theme/vier/config.php +++ b/view/theme/vier/config.php @@ -17,7 +17,15 @@ function theme_content(&$a){ if ($style == "") $style = "plus"; - return vier_form($a,$style); + $show_pages = get_vier_config('show_pages', true); + $show_profiles = get_vier_config('show_profiles', true); + $show_helpers = get_vier_config('show_helpers', true); + $show_services = get_vier_config('show_services', true); + $show_friends = get_vier_config('show_friends', true); + $show_lastusers = get_vier_config('show_lastusers', true); + + return vier_form($a,$style, $show_pages, $show_profiles, $show_helpers, + $show_services, $show_friends, $show_lastusers); } function theme_post(&$a){ @@ -26,23 +34,56 @@ function theme_post(&$a){ if (isset($_POST['vier-settings-submit'])){ set_pconfig(local_user(), 'vier', 'style', $_POST['vier_style']); + set_pconfig(local_user(), 'vier', 'show_pages', $_POST['vier_show_pages']); + set_pconfig(local_user(), 'vier', 'show_profiles', $_POST['vier_show_profiles']); + set_pconfig(local_user(), 'vier', 'show_helpers', $_POST['vier_show_helpers']); + set_pconfig(local_user(), 'vier', 'show_services', $_POST['vier_show_services']); + set_pconfig(local_user(), 'vier', 'show_friends', $_POST['vier_show_friends']); + set_pconfig(local_user(), 'vier', 'show_lastusers', $_POST['vier_show_lastusers']); } } function theme_admin(&$a){ $style = get_config('vier', 'style'); - return vier_form($a,$style); + + $helperlist = get_config('vier', 'helperlist'); + + if ($helperlist == "") + $helperlist = "https://helpers.pyxis.uberspace.de/profile/helpers"; + + $t = get_markup_template("theme_admin_settings.tpl"); + $o .= replace_macros($t, array( + '$helperlist' => array('vier_helperlist', t('Comma separated list of helper forums'), $helperlist, '', ''), + )); + + $show_pages = get_vier_config('show_pages', true, true); + $show_profiles = get_vier_config('show_profiles', true, true); + $show_helpers = get_vier_config('show_helpers', true, true); + $show_services = get_vier_config('show_services', true, true); + $show_friends = get_vier_config('show_friends', true, true); + $show_lastusers = get_vier_config('show_lastusers', true, true); + $o .= vier_form($a,$style, $show_pages, $show_profiles, $show_helpers, $show_services, + $show_friends, $show_lastusers); + + return $o; } function theme_admin_post(&$a){ if (isset($_POST['vier-settings-submit'])){ set_config('vier', 'style', $_POST['vier_style']); + set_config('vier', 'show_pages', $_POST['vier_show_pages']); + set_config('vier', 'show_profiles', $_POST['vier_show_profiles']); + set_config('vier', 'show_helpers', $_POST['vier_show_helpers']); + set_config('vier', 'show_services', $_POST['vier_show_services']); + set_config('vier', 'show_friends', $_POST['vier_show_friends']); + set_config('vier', 'show_lastusers', $_POST['vier_show_lastusers']); + set_config('vier', 'helperlist', $_POST['vier_helperlist']); } } -function vier_form(&$a, $style){ +function vier_form(&$a, $style, $show_pages, $show_profiles, $show_helpers, $show_services, $show_friends, $show_lastusers){ $styles = array( "plus"=>"Plus", "breathe"=>"Breathe", @@ -51,12 +92,21 @@ function vier_form(&$a, $style){ "netcolour"=>"Coloured Networks", "flat"=>"Flat" ); - $t = get_markup_template("theme_settings.tpl" ); + + $show_or_not = array('0'=>t("don't show"), '1'=>t("show"),); + + $t = get_markup_template("theme_settings.tpl"); $o .= replace_macros($t, array( '$submit' => t('Submit'), '$baseurl' => $a->get_baseurl(), '$title' => t("Theme settings"), '$style' => array('vier_style',t ('Set style'),$style,'',$styles), + '$show_pages' => array('vier_show_pages', t('Community Pages'), $show_pages, '', $show_or_not), + '$show_profiles' => array('vier_show_profiles', t('Community Profiles'), $show_profiles, '', $show_or_not), + '$show_helpers' => array('vier_show_helpers', t('Help or @NewHere ?'), $show_helpers, '', $show_or_not), + '$show_services' => array('vier_show_services', t('Connect Services'), $show_services, '', $show_or_not), + '$show_friends' => array('vier_show_friends', t('Find Friends'), $show_friends, '', $show_or_not), + '$show_lastusers' => array('vier_show_lastusers', t('Last users'), $show_lastusers, '', $show_or_not) )); return $o; } diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 031413ea9e..aadd09c61d 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -390,7 +390,7 @@ code { } .sidebar-group-li:hover, #sidebar-new-group:hover, #hide-forum-list:hover, -#sidebar-ungrouped:hover, .side-link:hover, .nets-ul li:hover, #forum-list div:hover, +#sidebar-ungrouped:hover, .side-link:hover, .nets-ul li:hover, #forum-list div:hover, #forum-list-right div:hover, .nets-all:hover, .saved-search-li:hover, li.tool:hover, .admin.link:hover, aside h4 a:hover, right_aside h4 a:hover, #message-new:hover { /* background-color: #ddd; */ /* background-color: #e5e5e5; */ @@ -409,7 +409,7 @@ code { font-weight: bold; } -#sidebar-new-group, #hide-forum-list, #forum-list, #sidebar-ungrouped, +#sidebar-new-group, #hide-forum-list, #forum-list, #forum-list-right, #sidebar-ungrouped, .side-link, #peoplefind-desc, #connect-desc, .nets-all, .admin.link, #message-new { padding-left: 10px; padding-top: 3px; @@ -445,11 +445,11 @@ a.sidebar-group-element { color: black; } -#forum-list a, .tool a, .admin.link a { +#forum-list a, #forum-list-right a, .tool a, .admin.link a { color: #737373; } -#forum-list { +#forum-list, #forum-list-right { margin-top: 2px; } @@ -970,7 +970,7 @@ aside #profiles-menu { left: 10px; } -aside #search-text, aside #side-follow-url, aside #side-peoplefind-url { +aside #search-text, aside #side-follow-url, aside #side-peoplefind-url, right_aside input { width: 140px; height: 17px; padding-left: 10px; diff --git a/view/theme/vier/templates/ch_connectors.tpl b/view/theme/vier/templates/ch_connectors.tpl new file mode 100644 index 0000000000..2ca114807b --- /dev/null +++ b/view/theme/vier/templates/ch_connectors.tpl @@ -0,0 +1,2 @@ +{{$alt_text}} + diff --git a/view/theme/vier/templates/ch_helpers.tpl b/view/theme/vier/templates/ch_helpers.tpl new file mode 100644 index 0000000000..e10011e04d --- /dev/null +++ b/view/theme/vier/templates/ch_helpers.tpl @@ -0,0 +1 @@ + diff --git a/view/theme/vier/templates/communityhome.tpl b/view/theme/vier/templates/communityhome.tpl index 92e56b3227..54be327aa2 100644 --- a/view/theme/vier/templates/communityhome.tpl +++ b/view/theme/vier/templates/communityhome.tpl @@ -1,76 +1,66 @@ -
-
- -
- -
{{if $page}} +
{{$page}}
-{{/if}}
+{{/if}} -
{{if $comunity_profiles_title}} +

{{$comunity_profiles_title}}

{{foreach $comunity_profiles_items as $i}} {{$i}} {{/foreach}}
-{{/if}}
+{{/if}} -
{{if $helpers}} +

{{$helpers.title.1}}

-{{/if}}
+{{/if}} -
{{if $con_services}} +

{{$con_services.title.1}}

-
-Facebook -StatusNet -LiveJournal -Posterous -Tumblr -Twitter -WordPress -E-Mail +
+{{foreach $connector_items as $i}} + {{$i}} +{{/foreach}} +
{{/if}} -
-
{{if $nv}} + +{{/if}} -
{{if $lastusers_title}} +

{{$lastusers_title}}

{{foreach $lastusers_items as $i}} {{$i}} {{/foreach}}
-{{/if}}
+{{/if}} {{if $activeusers_title}}

{{$activeusers_title}}

@@ -80,28 +70,3 @@ {{/foreach}}
{{/if}} - -
-{{if $photos_title}} -

{{$photos_title}}

-
-{{foreach $photos_items as $i}} - {{$i}} -{{/foreach}} -
-{{/if}} -
- -
-{{if $like_title}} -

{{$like_title}}

-
    -{{foreach $like_items as $i}} -
  • {{$i}}
  • -{{/foreach}} -
-{{/if}} -
- -
-
diff --git a/view/theme/vier/templates/theme_admin_settings.tpl b/view/theme/vier/templates/theme_admin_settings.tpl new file mode 100644 index 0000000000..21b8867e29 --- /dev/null +++ b/view/theme/vier/templates/theme_admin_settings.tpl @@ -0,0 +1 @@ +{{include file="field_input.tpl" field=$helperlist}} diff --git a/view/theme/vier/templates/theme_settings.tpl b/view/theme/vier/templates/theme_settings.tpl index 412978ea2f..3e957e39ca 100644 --- a/view/theme/vier/templates/theme_settings.tpl +++ b/view/theme/vier/templates/theme_settings.tpl @@ -1,5 +1,11 @@ {{include file="field_select.tpl" field=$style}} +{{include file="field_select.tpl" field=$show_pages}} +{{include file="field_select.tpl" field=$show_profiles}} +{{include file="field_select.tpl" field=$show_helpers}} +{{include file="field_select.tpl" field=$show_services}} +{{include file="field_select.tpl" field=$show_friends}} +{{include file="field_select.tpl" field=$show_lastusers}}
diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index 0b01b3db80..df28c0689e 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -9,6 +9,10 @@ * Description: "Vier" is a very compact and modern theme. It uses the font awesome font library: http://fortawesome.github.com/Font-Awesome/ */ +require_once("mod/nodeinfo.php"); +require_once("mod/proxy.php"); +require_once("include/socgraph.php"); + function vier_init(&$a) { $a->theme_events_in_profile = false; @@ -84,8 +88,8 @@ EOT; $a->page['htmlhead'] .= ""; } -function get_vier_config($key, $default = false) { - if (local_user()) { +function get_vier_config($key, $default = false, $admin = false) { + if (local_user() AND !$admin) { $result = get_pconfig(local_user(), "vier", $key); if ($result !== false) return $result; @@ -100,40 +104,34 @@ function get_vier_config($key, $default = false) { function vier_community_info() { $a = get_app(); -/* - $close_pages = get_vier_config("close_pages", 1); - $close_profiles = get_vier_config("close_profiles", 0); - $close_helpers = get_vier_config("close_helpers", 0); - $close_services = get_vier_config("close_services", 0); - $close_friends = get_vier_config("close_friends", 0); - $close_lastusers = get_vier_config("close_lastusers", 0); - $close_lastphotos = get_vier_config("close_lastphotos", 0); - $close_lastlikes = get_vier_config("close_lastlikes", 0); -*/ - $close_pages = false; - $close_profiles = true; - $close_helpers = false; - $close_services = false; - $close_friends = false; - $close_lastusers = true; - $close_lastphotos = true; - $close_lastlikes = true; + + $show_pages = get_vier_config("show_pages", 1); + $show_profiles = get_vier_config("show_profiles", 1); + $show_helpers = get_vier_config("show_helpers", 1); + $show_services = get_vier_config("show_services", 1); + $show_friends = get_vier_config("show_friends", 1); + $show_lastusers = get_vier_config("show_lastusers", 1); + + //get_baseurl + $url = $a->get_baseurl($ssl_state); + $aside['$url'] = $url; // comunity_profiles - if(!$close_profiles) { - $aside['$comunity_profiles_title'] = t('Community Profiles'); - $aside['$comunity_profiles_items'] = array(); - $r = q("select gcontact.* from gcontact left join glink on glink.gcid = gcontact.id - where glink.cid = 0 and glink.uid = 0 order by rand() limit 9"); + if($show_profiles) { + + $r = suggestion_query(local_user(), 0, 9); + $tpl = get_markup_template('ch_directory_item.tpl'); if(count($r)) { - $photo = 'photo'; + + $aside['$comunity_profiles_title'] = t('Community Profiles'); + $aside['$comunity_profiles_items'] = array(); + foreach($r as $rr) { - $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']); $entry = replace_macros($tpl,array( '$id' => $rr['id'], '$profile_link' => zrl($rr['url']), - '$photo' => $rr[$photo], + '$photo' => proxy_url($rr['photo']), '$alt_text' => $rr['name'], )); $aside['$comunity_profiles_items'][] = $entry; @@ -141,126 +139,45 @@ function vier_community_info() { } } - // last 12 users - if(!$close_lastusers) { - $aside['$lastusers_title'] = t('Last users'); - $aside['$lastusers_items'] = array(); - $sql_extra = ""; + // last 9 users + if($show_lastusers) { $publish = (get_config('system','publish_all') ? '' : " AND `publish` = 1 "); $order = " ORDER BY `register_date` DESC "; $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` - WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra $order LIMIT %d , %d ", + WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $order LIMIT %d , %d ", 0, 9); $tpl = get_markup_template('ch_directory_item.tpl'); if(count($r)) { - $photo = 'thumb'; + + $aside['$lastusers_title'] = t('Last users'); + $aside['$lastusers_items'] = array(); + foreach($r as $rr) { $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']); $entry = replace_macros($tpl,array( '$id' => $rr['id'], '$profile_link' => $profile_link, - '$photo' => $a->get_cached_avatar_image($rr[$photo]), + '$photo' => $a->get_cached_avatar_image($rr['thumb']), '$alt_text' => $rr['name'])); $aside['$lastusers_items'][] = $entry; } } } - // last 10 liked items -/* - if(!$close_lastlikes) { - $aside['$like_title'] = t('Last likes'); - $aside['$like_items'] = array(); - $r = q("SELECT `T1`.`created`, `T1`.`liker`, `T1`.`liker-link`, `item`.* FROM - (SELECT `parent-uri`, `created`, `author-name` AS `liker`,`author-link` AS `liker-link` - FROM `item` WHERE `verb`='http://activitystrea.ms/schema/1.0/like' GROUP BY `parent-uri` ORDER BY `created` DESC) AS T1 - INNER JOIN `item` ON `item`.`uri`=`T1`.`parent-uri` - WHERE `T1`.`liker-link` LIKE '%s%%' OR `item`.`author-link` LIKE '%s%%' - GROUP BY `uri` - ORDER BY `T1`.`created` DESC - LIMIT 0,5", - $a->get_baseurl(),$a->get_baseurl()); - - foreach ($r as $rr) { - $author = '' . $rr['liker'] . ''; - $objauthor = '' . $rr['author-name'] . ''; - - //var_dump($rr['verb'],$rr['object-type']); killme(); - switch($rr['verb']){ - case 'http://activitystrea.ms/schema/1.0/post': - switch ($rr['object-type']){ - case 'http://activitystrea.ms/schema/1.0/event': - $post_type = t('event'); - break; - default: - $post_type = t('status'); - } - break; - default: - if ($rr['resource-id']){ - $post_type = t('photo'); - $m=array(); - preg_match("/\[url=([^]]*)\]/", $rr['body'], $m); - $rr['plink'] = $m[1]; - } else - $post_type = t('status'); - } - $plink = '' . $post_type . ''; - - $aside['$like_items'][] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink); - - } - } - - // last 12 photos - if(!$close_lastphotos) { - $aside['$photos_title'] = t('Last photos'); - $aside['$photos_items'] = array(); - $r = q("SELECT `photo`.`id`, `photo`.`resource-id`, `photo`.`scale`, `photo`.`desc`, `user`.`nickname`, `user`.`username` FROM - (SELECT `resource-id`, MAX(`scale`) as maxscale FROM `photo` - WHERE `profile`=0 AND `contact-id`=0 AND `album` NOT IN ('Contact Photos', '%s', 'Profile Photos', '%s') - AND `allow_cid`='' AND `allow_gid`='' AND `deny_cid`='' AND `deny_gid`='' GROUP BY `resource-id`) AS `t1` - INNER JOIN `photo` ON `photo`.`resource-id`=`t1`.`resource-id` AND `photo`.`scale` = `t1`.`maxscale`, - `user` - WHERE `user`.`uid` = `photo`.`uid` - AND `user`.`blockwall`=0 - AND `user`.`hidewall`=0 - ORDER BY `photo`.`edited` DESC - LIMIT 0, 9", - dbesc(t('Contact Photos')), - dbesc(t('Profile Photos')) - ); - if(count($r)) { - $tpl = get_markup_template('ch_directory_item.tpl'); - foreach($r as $rr) { - $photo_page = $a->get_baseurl() . '/photos/' . $rr['nickname'] . '/image/' . $rr['resource-id']; - $photo_url = $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['scale'] .'.jpg'; - - $entry = replace_macros($tpl,array( - '$id' => $rr['id'], - '$profile_link' => $photo_page, - '$photo' => $photo_url, - '$alt_text' => $rr['username']." : ".$rr['desc'])); - - $aside['$photos_items'][] = $entry; - } - } - } -*/ //right_aside FIND FRIENDS - if (!$close_friends AND local_user()) { + if ($show_friends AND local_user()) { $nv = array(); $nv['title'] = Array("", t('Find Friends'), "", ""); $nv['directory'] = Array('directory', t('Local Directory'), "", ""); - $nv['global_directory'] = Array('http://dir.friendica.com/', t('Global Directory'), "", ""); + $nv['global_directory'] = Array(get_server(), t('Global Directory'), "", ""); $nv['match'] = Array('match', t('Similar Interests'), "", ""); $nv['suggest'] = Array('suggest', t('Friend Suggestions'), "", ""); $nv['invite'] = Array('invite', t('Invite Friends'), "", ""); - $nv['search'] = ' + $nv['search'] = ' @@ -271,17 +188,17 @@ function vier_community_info() { } //Community_Pages at right_aside - if(!$close_pages AND local_user()) { - $page = ' -

'.t("Community Pages").'

-
    '; + if($show_pages AND local_user()) { $pagelist = array(); - $contacts = q("SELECT `id`, `url`, `name`, `micro`FROM `contact` - WHERE `network`= 'dfrn' AND `forum` = 1 AND `uid` = %d + $contacts = q("SELECT `id`, `url`, `name`, `micro` FROM `contact` + WHERE `network`= '%s' AND `forum` AND `uid` = %d AND + NOT `hidden` AND NOT `blocked` AND + NOT `archive` AND NOT `pending` AND + `success_update` > `failure_update` ORDER BY `name` ASC", - intval($a->user['uid'])); + dbesc(NETWORK_DFRN), intval($a->user['uid'])); $pageD = array(); @@ -290,78 +207,141 @@ function vier_community_info() { $pageD[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']); }; - $contacts = $pageD; - foreach($contacts as $contact) { - $page .= '
  • ' . $contact['url'] . ' '. - $contact["name"]."
  • "; - } - $page .= '
'; - //if (sizeof($contacts) > 0) + if ($contacts) { + $page = ' +

'.t("Community Pages").'

+
'; + + foreach($contacts as $contact) { + $page .= '"; + } + + $page .= '
'; $aside['$page'] = $page; + } } //END Community Page //helpers - if(!$close_helpers) { - $helpers = array(); - $helpers['title'] = Array("", t('Help or @NewHere ?'), "", ""); - $aside['$helpers'] = $helpers; + if($show_helpers) { + $r = array(); + + $helperlist = get_config("vier", "helperlist"); + + $helpers = explode(",",$helperlist); + + if ($helpers) { + $query = ""; + foreach ($helpers AS $index=>$helper) { + if ($query != "") + $query .= ","; + + $query .= "'".dbesc(normalise_link(trim($helper)))."'"; + } + + $r = q("SELECT `url`, `name` FROM `gcontact` WHERE `nurl` IN (%s)", $query); + } + + foreach ($r AS $index => $helper) + $r[$index]["url"] = zrl($helper["url"]); + + $r[] = Array("url" => "help/Quick-Start-guide", "name" => t("Quick Start")); + + $tpl = get_markup_template('ch_helpers.tpl'); + + if ($r) { + + $helpers = array(); + $helpers['title'] = Array("", t('Help'), "", ""); + + $aside['$helpers_items'] = array(); + + foreach($r as $rr) { + $entry = replace_macros($tpl,array( + '$url' => $rr['url'], + '$title' => $rr['name'], + )); + $aside['$helpers_items'][] = $entry; + } + + $aside['$helpers'] = $helpers; + } } //end helpers //connectable services - if (!$close_services) { - $con_services = array(); - $con_services['title'] = Array("", t('Connect Services'), "", ""); - $aside['$con_services'] = $con_services; + if ($show_services) { + + $r = array(); + + if (nodeinfo_plugin_enabled("appnet")) + $r[] = array("photo" => "images/appnet.png", "name" => "App.net"); + + if (nodeinfo_plugin_enabled("buffer")) + $r[] = array("photo" => "images/buffer.png", "name" => "Buffer"); + + if (nodeinfo_plugin_enabled("blogger")) + $r[] = array("photo" => "images/blogger.png", "name" => "Blogger"); + + if (nodeinfo_plugin_enabled("dwpost")) + $r[] = array("photo" => "images/dreamwidth.png", "name" => "Dreamwidth"); + + if (nodeinfo_plugin_enabled("fbpost")) + $r[] = array("photo" => "images/facebook.png", "name" => "Facebook"); + + if (nodeinfo_plugin_enabled("statusnet")) + $r[] = array("photo" => "images/gnusocial.png", "name" => "GNU Social"); + + if (nodeinfo_plugin_enabled("gpluspost")) + $r[] = array("photo" => "images/googleplus.png", "name" => "Google+"); + + //if (nodeinfo_plugin_enabled("ijpost")) + // $r[] = array("photo" => "images/", "name" => ""); + + if (nodeinfo_plugin_enabled("libertree")) + $r[] = array("photo" => "images/libertree.png", "name" => "Libertree"); + + //if (nodeinfo_plugin_enabled("ljpost")) + // $r[] = array("photo" => "images/", "name" => ""); + + if (nodeinfo_plugin_enabled("pumpio")) + $r[] = array("photo" => "images/pumpio.png", "name" => "pump.io"); + + if (nodeinfo_plugin_enabled("tumblr")) + $r[] = array("photo" => "images/tumblr.png", "name" => "Tumblr"); + + if (nodeinfo_plugin_enabled("twitter")) + $r[] = array("photo" => "images/twitter.png", "name" => "Twitter"); + + if (nodeinfo_plugin_enabled("wppost")) + $r[] = array("photo" => "images/wordpress", "name" => "Wordpress"); + + if(function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only")) + $r[] = array("photo" => "images/mail", "name" => "E-Mail"); + + $tpl = get_markup_template('ch_connectors.tpl'); + + if(count($r)) { + + $con_services = array(); + $con_services['title'] = Array("", t('Connect Services'), "", ""); + $aside['$con_services'] = $con_services; + + foreach($r as $rr) { + $entry = replace_macros($tpl,array( + '$url' => $url, + '$photo' => $rr['photo'], + '$alt_text' => $rr['name'], + )); + $aside['$connector_items'][] = $entry; + } + } + } //end connectable services -/* - if($ccCookie != "9") { - $close_pages = get_vier_config( "close_pages", 1 ); - $close_profiles = get_vier_config( "close_profiles", 0 ); - $close_helpers = get_vier_config( "close_helpers", 0 ); - $close_services = get_vier_config( "close_services", 0 ); - $close_friends = get_vier_config( "close_friends", 0 ); - $close_lastusers = get_vier_config( "close_lastusers", 0 ); - $close_lastphotos = get_vier_config( "close_lastphotos", 0 ); - $close_lastlikes = get_vier_config( "close_lastlikes", 0 ); - $close_or_not = array('1'=>t("don't show"), '0'=>t("show"),); - $boxsettings['title'] = Array("", t('Show/hide boxes at right-hand column:'), "", ""); - $aside['$boxsettings'] = $boxsettings; - $aside['$close_pages'] = array('vier_close_pages', t('Community Pages'), $close_pages, '', $close_or_not); - $aside['$close_profiles'] = array('vier_close_profiles', t('Community Profiles'), $close_profiles, '', $close_or_not); - $aside['$close_helpers'] = array('vier_close_helpers', t('Help or @NewHere ?'), $close_helpers, '', $close_or_not); - $aside['$close_services'] = array('vier_close_services', t('Connect Services'), $close_services, '', $close_or_not); - $aside['$close_friends'] = array('vier_close_friends', t('Find Friends'), $close_friends, '', $close_or_not); - $aside['$close_lastusers'] = array('vier_close_lastusers', t('Last users'), $close_lastusers, '', $close_or_not); - $aside['$close_lastphotos'] = array('vier_close_lastphotos', t('Last photos'), $close_lastphotos, '', $close_or_not); - $aside['$close_lastlikes'] = array('vier_close_lastlikes', t('Last likes'), $close_lastlikes, '', $close_or_not); - $aside['$sub'] = t('Submit'); - $baseurl = $a->get_baseurl($ssl_state); - $aside['$baseurl'] = $baseurl; - - if (isset($_POST['vier-settings-box-sub']) && $_POST['vier-settings-box-sub']!=''){ - set_pconfig(local_user(), 'vier', 'close_pages', $_POST['vier_close_pages']); - set_pconfig(local_user(), 'vier', 'close_profiles', $_POST['vier_close_profiles']); - set_pconfig(local_user(), 'vier', 'close_helpers', $_POST['vier_close_helpers']); - set_pconfig(local_user(), 'vier', 'close_services', $_POST['vier_close_services']); - set_pconfig(local_user(), 'vier', 'close_friends', $_POST['vier_close_friends']); - set_pconfig(local_user(), 'vier', 'close_lastusers', $_POST['vier_close_lastusers']); - set_pconfig(local_user(), 'vier', 'close_lastphotos', $_POST['vier_close_lastphotos']); - set_pconfig(local_user(), 'vier', 'close_lastlikes', $_POST['vier_close_lastlikes']); - } - } - $close = t('Settings'); - $aside['$close'] = $close; -*/ - //get_baseurl - $url = $a->get_baseurl($ssl_state); - $aside['$url'] = $url; - //print right_aside $tpl = get_markup_template('communityhome.tpl'); $a->page['right_aside'] = replace_macros($tpl, $aside); diff --git a/view/theme/vier/wide.css b/view/theme/vier/wide.css index 7c703a4af5..ecffd485e0 100644 --- a/view/theme/vier/wide.css +++ b/view/theme/vier/wide.css @@ -10,14 +10,41 @@ right_aside { overflow-y: auto; z-index: 2; line-height: 17px; - position: fixed; color: #737373; - top: 44px; - height: calc(100% - 54px); + top: 44px; + position: absolute; +/* position: fixed; + height: calc(100% - 54px); */ display: block; margin-left: calc(100% - 215px); + box-shadow: 1px 2px 0px 0px #D8D8D8; } #forumlist-sidebar { display: none; } + +right_aside span.sbox { + margin-left: 10px; +} + +right_aside .directory-item { + width: 50px; + height: 50px; +} + +right_aside img.directory-photo-img { + width: 45px; + height: 45px; +} + +right_aside #right_services img { + width: 32px; +} + +right_aside #lastusers-wrapper, +right_aside div.itens-wrapper, +right_aside #right_services_icons { + margin-left: 10px; + margin-top: 5px; +} From f92a2539468cb2c8ec303baec0e390f6baac5ca7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 3 Oct 2015 13:58:10 +0200 Subject: [PATCH 09/47] Bugfix: Remote self worked anymore --- include/feed.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/feed.php b/include/feed.php index 18d96e6abb..dd360a07b5 100644 --- a/include/feed.php +++ b/include/feed.php @@ -106,9 +106,17 @@ function feed_import($xml,$importer,&$contact, &$hub) { $header["wall"] = 0; $header["origin"] = 0; $header["gravity"] = GRAVITY_PARENT; + $header["private"] = 2; + $header["verb"] = ACTIVITY_POST; + $header["object-type"] = ACTIVITY_OBJ_NOTE; $header["contact-id"] = $contact["id"]; + if(!strlen($contact["notify"])) { + // one way feed - no remote comment ability + $header["last-child"] = 0; + } + if (!is_object($entries)) return; From c775d6885bd464da8f998585fa1077d9e75701d5 Mon Sep 17 00:00:00 2001 From: rabuzarus Date: Wed, 30 Sep 2015 00:19:54 +0200 Subject: [PATCH 10/47] port of reds geotag feature --- include/Photo.php | 51 +++++++++++++++++++++++--------------------- include/features.php | 1 + include/photos.php | 27 +++++++++++++++++++++++ mod/photos.php | 50 ++++++++++++++++++++++++++++++++++++------- 4 files changed, 97 insertions(+), 32 deletions(-) create mode 100644 include/photos.php diff --git a/include/Photo.php b/include/Photo.php index 785601c7e4..9732801c9a 100644 --- a/include/Photo.php +++ b/include/Photo.php @@ -345,38 +345,37 @@ class Photo { } public function orient($filename) { - if ($this->is_imagick()) { - // based off comment on http://php.net/manual/en/imagick.getimageorientation.php - $orientation = $this->image->getImageOrientation(); - switch ($orientation) { - case imagick::ORIENTATION_BOTTOMRIGHT: - $this->image->rotateimage("#000", 180); - break; - case imagick::ORIENTATION_RIGHTTOP: - $this->image->rotateimage("#000", 90); - break; - case imagick::ORIENTATION_LEFTBOTTOM: - $this->image->rotateimage("#000", -90); - break; - } + if ($this->is_imagick()) { + // based off comment on http://php.net/manual/en/imagick.getimageorientation.php + $orientation = $this->image->getImageOrientation(); + switch ($orientation) { + case imagick::ORIENTATION_BOTTOMRIGHT: + $this->image->rotateimage("#000", 180); + break; + case imagick::ORIENTATION_RIGHTTOP: + $this->image->rotateimage("#000", 90); + break; + case imagick::ORIENTATION_LEFTBOTTOM: + $this->image->rotateimage("#000", -90); + break; + } - $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); - return TRUE; - } + $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); + return TRUE; + } // based off comment on http://php.net/manual/en/function.imagerotate.php if(!$this->is_valid()) - return FALSE; + return FALSE; if( (! function_exists('exif_read_data')) || ($this->getType() !== 'image/jpeg') ) - return; + return; - $exif = @exif_read_data($filename); + $exif = @exif_read_data($filename,null,true); + if(! $exif) + return; - if(! $exif) - return; - - $ort = $exif['Orientation']; + $ort = $exif['IFD0']['Orientation']; switch($ort) { @@ -413,6 +412,10 @@ class Photo { $this->rotate(90); break; } + + // logger('exif: ' . print_r($exif,true)); + return $exif; + } diff --git a/include/features.php b/include/features.php index 091dfc6e9d..5450c7fab0 100644 --- a/include/features.php +++ b/include/features.php @@ -23,6 +23,7 @@ function get_features() { t('General Features'), //array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')), array('multi_profiles', t('Multiple Profiles'), t('Ability to create multiple profiles')), + array('photo_location', t('Photo Location'), t('Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'),false), ), // Post composition diff --git a/include/photos.php b/include/photos.php new file mode 100644 index 0000000000..93a565b511 --- /dev/null +++ b/include/photos.php @@ -0,0 +1,27 @@ + 0 ? gps2Num($exifCoord[0]) : 0; + $minutes = count($exifCoord) > 1 ? gps2Num($exifCoord[1]) : 0; + $seconds = count($exifCoord) > 2 ? gps2Num($exifCoord[2]) : 0; + + $flip = ($hemi == 'W' or $hemi == 'S') ? -1 : 1; + + return floatval($flip * ($degrees + ($minutes / 60) + ($seconds / 3600))); +} + +function gps2Num($coordPart) { + $parts = explode('/', $coordPart); + + if (count($parts) <= 0) + return 0; + + if (count($parts) == 1) + return $parts[0]; + + return floatval($parts[0]) / floatval($parts[1]); +} diff --git a/mod/photos.php b/mod/photos.php index 6d147a6f55..03021e5501 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -1,5 +1,6 @@ get_baseurl() . '/' . $_SESSION['photo_return']); } + /* + * RENAME photo album + */ + $newalbum = notags(trim($_POST['albumname'])); if($newalbum != $album) { q("UPDATE `photo` SET `album` = '%s' WHERE `album` = '%s' AND `uid` = %d", @@ -212,6 +217,9 @@ function photos_post(&$a) { return; // NOTREACHED } + /* + * DELETE photo album and all its photos + */ if($_POST['dropalbum'] == t('Delete Album')) { @@ -540,7 +548,7 @@ function photos_post(&$a) { if(count($links)) { foreach($links as $link) { if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') - $profile = $link['@attributes']['href']; + $profile = $link['@attributes']['href']; if($link['@attributes']['rel'] === 'salmon') { $salmon = '$url:' . str_replace(',','%sc',$link['@attributes']['href']); if(strlen($inform)) @@ -839,7 +847,7 @@ function photos_post(&$a) { killme(); } - $ph->orient($src); + $exif = $ph->orient($src); @unlink($src); $max_length = get_config('system','max_image_length'); @@ -880,8 +888,20 @@ function photos_post(&$a) { // Create item container + $lat = $lon = null; + + if($exif && $exif['GPS']) { + if(feature_enabled($channel_id,'photo_location')) { + $lat = getGps($exif['GPS']['GPSLatitude'], $exif['GPS']['GPSLatitudeRef']); + $lon = getGps($exif['GPS']['GPSLongitude'], $exif['GPS']['GPSLongitudeRef']); + } + } + $arr = array(); + if($lat && $lon) + $arr['coord'] = $lat . ' ' . $lon; + $arr['uid'] = $page_owner_uid; $arr['uri'] = $uri; $arr['parent-uri'] = $uri; @@ -1068,10 +1088,9 @@ function photos_content(&$a) { $is_owner = (local_user() && (local_user() == $owner_uid)); $o .= profile_tabs($a,$is_owner, $a->data['user']['nickname']); - // - // dispatch request - // - + /** + * Display upload form + */ if($datatype === 'upload') { if(! ($can_post)) { @@ -1182,6 +1201,10 @@ function photos_content(&$a) { return $o; } + /* + * Display a single photo album + */ + if($datatype === 'album') { $album = hex2bin($datum); @@ -1209,6 +1232,7 @@ function photos_content(&$a) { intval($a->pager['itemspage']) ); + //edit album name if($cmd === 'edit') { if(($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos'))) { if($can_post) { @@ -1296,11 +1320,12 @@ function photos_content(&$a) { } + /** + * Display one photo + */ if($datatype === 'image') { - - //$o = ''; // fetch image, item containing image, then comments @@ -1424,6 +1449,9 @@ function photos_content(&$a) { $linked_items = q("SELECT * FROM `item` WHERE `resource-id` = '%s' $sql_extra LIMIT 1", dbesc($datum) ); + + $map = null; + if(count($linked_items)) { $link_item = $linked_items[0]; $r = q("SELECT COUNT(*) AS `total` @@ -1467,6 +1495,10 @@ function photos_content(&$a) { ); update_thread($link_item['parent']); } + + if($link_item['coord']) { + $map = generate_map($link_item['coord']); + } } $tags=Null; @@ -1759,6 +1791,8 @@ function photos_content(&$a) { '$desc' => $ph[0]['desc'], '$tags' => $tags_e, '$edit' => $edit, + '$map' => $map, + '$map_text' => t('Map'), '$likebuttons' => $likebuttons, '$like' => $like_e, '$dislike' => $dikslike_e, From 2840bf22931acc060b57d2da99eb65ae3cf338e7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 3 Oct 2015 23:16:40 +0200 Subject: [PATCH 11/47] New option to permit crawlers --- include/network.php | 15 ++++++++++++--- mod/search.php | 27 +++++++++++++++++++++++---- 2 files changed, 35 insertions(+), 7 deletions(-) diff --git a/include/network.php b/include/network.php index 02b2d7c2ae..2815e1ab85 100644 --- a/include/network.php +++ b/include/network.php @@ -309,16 +309,25 @@ function xml_status($st, $message = '') { if(! function_exists('http_status_exit')) { -function http_status_exit($val) { - +function http_status_exit($val, $description = array()) { $err = ''; - if($val >= 400) + if($val >= 400) { $err = 'Error'; + if (!isset($description["title"])) + $description["title"] = $err." ".$val; + } if($val >= 200 && $val < 300) $err = 'OK'; logger('http_status_exit ' . $val); header($_SERVER["SERVER_PROTOCOL"] . ' ' . $val . ' ' . $err); + + if (isset($description["title"])) { + $tpl = get_markup_template('http_status.tpl'); + echo replace_macros($tpl, array('$title' => $description["title"], + '$description' => $description["description"])); + } + killme(); }} diff --git a/mod/search.php b/mod/search.php index 251dd4778f..c15dfae3fe 100644 --- a/mod/search.php +++ b/mod/search.php @@ -95,10 +95,29 @@ function search_content(&$a) { } if(get_config('system','local_search') AND !local_user()) { - notice(t('Public access denied.').EOL); - return; - //http_status_exit(403); - //killme(); + http_status_exit(403, + array("title" => t("Public access denied."), + "description" => t("Only logged in users are permitted to perform a search."))); + killme(); + //notice(t('Public access denied.').EOL); + //return; + } + + if (get_config('system','permit_crawling') AND !local_user()) { + // To-Do: + // - 10 requests are "free", after the 11th only a call per minute is allowed + + $remote = $_SERVER["REMOTE_ADDR"]; + $result = Cache::get("remote_search:".$remote); + if (!is_null($result)) { + if ($result > (time() - 60)) { + http_status_exit(429, + array("title" => t("Too Many Requests"), + "description" => t("Only one search per minute is permitted for not logged in users."))); + killme(); + } + } + Cache::set("remote_search:".$remote, time(), CACHE_HOUR); } nav_set_selected('search'); From 42ad8c2b25ddc33398c8fc268b2cccae11da5de7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 3 Oct 2015 23:19:09 +0200 Subject: [PATCH 12/47] New template for http status messages --- view/templates/http_status.tpl | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 view/templates/http_status.tpl diff --git a/view/templates/http_status.tpl b/view/templates/http_status.tpl new file mode 100644 index 0000000000..55cc133ff0 --- /dev/null +++ b/view/templates/http_status.tpl @@ -0,0 +1,9 @@ + + + {{$title}} + + +

{{$title}}

+

{{$description}}

+ + From 4e1bffd0a935b7bc047917bc188257f61c7557a2 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 3 Oct 2015 23:57:00 +0200 Subject: [PATCH 13/47] Issue 1914: A feed was falsely detected as OStatus --- include/Scrape.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Scrape.php b/include/Scrape.php index 93d68be22b..ce20350772 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -552,7 +552,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { if($network !== NETWORK_ZOT && $network !== NETWORK_DFRN && $network !== NETWORK_MAIL) { if($diaspora) $network = NETWORK_DIASPORA; - elseif($has_lrdd) + elseif($has_lrdd AND ($notify)) $network = NETWORK_OSTATUS; if(strpos($url,'@')) From c0e277cec84a3e26c95ac98a8b27246120030927 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 00:28:15 +0200 Subject: [PATCH 14/47] Issue 1913: Report invalid feed --- include/Scrape.php | 5 +++-- include/gprobe.php | 2 +- include/identity.php | 2 +- include/socgraph.php | 2 +- mod/follow.php | 6 ++++++ 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/include/Scrape.php b/include/Scrape.php index 93d68be22b..5e26c461ae 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -652,9 +652,10 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { $feed->set_raw_data(($xml) ? $xml : ''); $feed->init(); - if($feed->error()) + if($feed->error()) { logger('probe_url: scrape_feed: Error parsing XML: ' . $feed->error()); - + $network = NETWORK_PHANTOM; + } if(! x($vcard,'photo')) $vcard['photo'] = $feed->get_image_url(); diff --git a/include/gprobe.php b/include/gprobe.php index 03cdbd072b..84292f263a 100644 --- a/include/gprobe.php +++ b/include/gprobe.php @@ -47,7 +47,7 @@ function gprobe_run(&$argv, &$argc){ $result = Cache::get("gprobe:".$urlparts["host"]); if (!is_null($result)) { $result = unserialize($result); - if ($result["network"] == NETWORK_FEED) { + if (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) { logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG); return; } diff --git a/include/identity.php b/include/identity.php index b4bc79e00f..6faddffd3c 100644 --- a/include/identity.php +++ b/include/identity.php @@ -710,7 +710,7 @@ function zrl_init(&$a) { $result = Cache::get("gprobe:".$urlparts["host"]); if (!is_null($result)) { $result = unserialize($result); - if ($result["network"] == NETWORK_FEED) { + if (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) { logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG); return; } diff --git a/include/socgraph.php b/include/socgraph.php index d380af4344..b0f0c8672f 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -570,7 +570,7 @@ function poco_last_updated($profile, $force = false) { return false; } - if (($data["poll"] == "") OR ($data["network"] == NETWORK_FEED)) { + if (($data["poll"] == "") OR (in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM)))) { q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc(normalise_link($profile))); return false; diff --git a/mod/follow.php b/mod/follow.php index bdcde77435..dd717aacd9 100755 --- a/mod/follow.php +++ b/mod/follow.php @@ -31,6 +31,12 @@ function follow_content(&$a) { $ret = probe_url($url); + if ($ret["network"] == NETWORK_PHANTOM) { + notice( t("The network type couldn't be detected. Contact can't be added.") . EOL); + goaway($_SESSION['return_url']); + // NOTREACHED + } + if ($ret["network"] == NETWORK_MAIL) $ret["url"] = $ret["addr"]; From 01d38a353ca080a169a832f05dca1236d9d230ab Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 4 Oct 2015 09:23:58 +0200 Subject: [PATCH 15/47] DE update to the translation --- view/de/messages.po | 11200 +++++++++++++++++++++--------------------- view/de/strings.php | 2006 ++++---- 2 files changed, 6701 insertions(+), 6505 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index e1d3d54f81..3a7a5d53b4 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -31,9 +31,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-01 07:09+0200\n" -"PO-Revision-Date: 2015-09-16 17:08+0000\n" -"Last-Translator: Abrax \n" +"POT-Creation-Date: 2015-09-22 09:58+0200\n" +"PO-Revision-Date: 2015-10-04 07:21+0000\n" +"Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,6 +41,3084 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Dieser Beitrag wurde bearbeitet." + +#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 +msgid "Private Message" +msgstr "Private Nachricht" + +#: object/Item.php:121 mod/settings.php:694 mod/content.php:730 +msgid "Edit" +msgstr "Bearbeiten" + +#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 +#: mod/content.php:742 include/conversation.php:612 +msgid "Select" +msgstr "Auswählen" + +#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673 +#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171 +#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 +msgid "Delete" +msgstr "Löschen" + +#: object/Item.php:134 mod/content.php:765 +msgid "save to folder" +msgstr "In Ordner speichern" + +#: object/Item.php:196 mod/content.php:755 +msgid "add star" +msgstr "markieren" + +#: object/Item.php:197 mod/content.php:756 +msgid "remove star" +msgstr "Markierung entfernen" + +#: object/Item.php:198 mod/content.php:757 +msgid "toggle star status" +msgstr "Markierung umschalten" + +#: object/Item.php:201 mod/content.php:760 +msgid "starred" +msgstr "markiert" + +#: object/Item.php:209 +msgid "ignore thread" +msgstr "Thread ignorieren" + +#: object/Item.php:210 +msgid "unignore thread" +msgstr "Thread nicht mehr ignorieren" + +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: object/Item.php:214 mod/ostatus_subscribe.php:69 +msgid "ignored" +msgstr "Ignoriert" + +#: object/Item.php:221 mod/content.php:761 +msgid "add tag" +msgstr "Tag hinzufügen" + +#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 +msgid "I like this (toggle)" +msgstr "Ich mag das (toggle)" + +#: object/Item.php:232 mod/content.php:686 +msgid "like" +msgstr "mag ich" + +#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 +msgid "I don't like this (toggle)" +msgstr "Ich mag das nicht (toggle)" + +#: object/Item.php:233 mod/content.php:687 +msgid "dislike" +msgstr "mag ich nicht" + +#: object/Item.php:235 mod/content.php:689 +msgid "Share this" +msgstr "Weitersagen" + +#: object/Item.php:235 mod/content.php:689 +msgid "share" +msgstr "Teilen" + +#: object/Item.php:318 include/conversation.php:665 +msgid "Categories:" +msgstr "Kategorien:" + +#: object/Item.php:319 include/conversation.php:666 +msgid "Filed under:" +msgstr "Abgelegt unter:" + +#: object/Item.php:328 object/Item.php:329 mod/content.php:473 +#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Das Profil von %s auf %s betrachten." + +#: object/Item.php:330 mod/content.php:856 +msgid "to" +msgstr "zu" + +#: object/Item.php:331 +msgid "via" +msgstr "via" + +#: object/Item.php:332 mod/content.php:857 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: object/Item.php:333 mod/content.php:858 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: object/Item.php:342 mod/content.php:483 mod/content.php:866 +#: include/conversation.php:673 +#, php-format +msgid "%s from %s" +msgstr "%s von %s" + +#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583 +#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764 +msgid "Comment" +msgstr "Kommentar" + +#: object/Item.php:366 mod/message.php:335 mod/message.php:566 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 +#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 +#: include/conversation.php:1074 +msgid "Please wait" +msgstr "Bitte warten" + +#: object/Item.php:389 mod/content.php:605 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" + +#: object/Item.php:391 object/Item.php:404 mod/content.php:607 +#: include/text.php:2038 +msgid "comment" +msgid_plural "comments" +msgstr[0] "Kommentar" +msgstr[1] "Kommentare" + +#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147 +#: include/contact_widgets.php:205 +msgid "show more" +msgstr "mehr anzeigen" + +#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625 +#: mod/photos.php:1713 mod/content.php:709 +msgid "This is you" +msgstr "Das bist Du" + +#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336 +#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104 +#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 +#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596 +#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199 +#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 +#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 +#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 +#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 +#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/cleanzero/config.php:80 +msgid "Submit" +msgstr "Senden" + +#: object/Item.php:681 mod/content.php:713 +msgid "Bold" +msgstr "Fett" + +#: object/Item.php:682 mod/content.php:714 +msgid "Italic" +msgstr "Kursiv" + +#: object/Item.php:683 mod/content.php:715 +msgid "Underline" +msgstr "Unterstrichen" + +#: object/Item.php:684 mod/content.php:716 +msgid "Quote" +msgstr "Zitat" + +#: object/Item.php:685 mod/content.php:717 +msgid "Code" +msgstr "Code" + +#: object/Item.php:686 mod/content.php:718 +msgid "Image" +msgstr "Bild" + +#: object/Item.php:687 mod/content.php:719 +msgid "Link" +msgstr "Link" + +#: object/Item.php:688 mod/content.php:720 +msgid "Video" +msgstr "Video" + +#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509 +#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 +#: mod/content.php:721 include/conversation.php:1089 +msgid "Preview" +msgstr "Vorschau" + +#: index.php:225 mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." + +#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: index.php:272 mod/help.php:45 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: index.php:381 mod/profperm.php:19 mod/group.php:72 +msgid "Permission denied" +msgstr "Zugriff verweigert" + +#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 +#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 +#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 +#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70 +#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156 +#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33 +#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83 +#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15 +#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116 +#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165 +#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61 +#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96 +#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20 +#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19 +#: mod/profile_photo.php:169 mod/profile_photo.php:180 +#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110 +#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4 +#: mod/crepair.php:120 include/items.php:5036 +msgid "Permission denied." +msgstr "Zugriff verweigert." + +#: index.php:441 +msgid "toggle mobile" +msgstr "auf/von Mobile Ansicht wechseln" + +#: mod/update_notes.php:37 mod/update_profile.php:41 +#: mod/update_community.php:18 mod/update_network.php:25 +#: mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" + +#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 +#: mod/crepair.php:134 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden." + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Kontaktvorschlag gesendet." + +#: 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/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" +msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Kontaktanfrage abgeschlossen." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Nicht behebbarer Protokollfehler." + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Maßnahmen zum Spamschutz wurden ergriffen." + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Ungültiger Locator" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Ungültige E-Mail-Adresse." + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Du hast Dich hier bereits vorgestellt." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ungültige Profil-URL." + +#: mod/dfrn_request.php:507 include/follow.php:70 +msgid "Disallowed profile URL." +msgstr "Nicht erlaubte Profil-URL." + +#: mod/dfrn_request.php:576 mod/contacts.php:194 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Deine Kontaktanfrage wurde gesendet." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Bestätigen" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Verberge diesen Kontakt" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Willkommen zurück %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." + +#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250 +msgid "[Name Withheld]" +msgstr "[Name unterdrückt]" + +#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 +#: mod/search.php:93 mod/search.php:98 mod/display.php:223 +#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35 +msgid "Public access denied." +msgstr "Öffentlicher Zugriff verweigert." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" + +#: mod/dfrn_request.php:840 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." + +#: mod/dfrn_request.php:845 +msgid "Friend/Connection Request" +msgstr "Freundschafts-/Kontaktanfrage" + +#: mod/dfrn_request.php:846 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:847 mod/follow.php:58 +msgid "Please answer the following:" +msgstr "Bitte beantworte folgendes:" + +#: mod/dfrn_request.php:848 mod/follow.php:59 +#, php-format +msgid "Does %s know you?" +msgstr "Kennt %s Dich?" + +#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236 +#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074 +#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091 +#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109 +#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137 +#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658 +#: mod/profiles.php:662 +msgid "No" +msgstr "Nein" + +#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105 +#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59 +#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082 +#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097 +#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135 +#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138 +#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661 +#: mod/suggest.php:29 include/items.php:4868 +msgid "Yes" +msgstr "Ja" + +#: mod/dfrn_request.php:852 mod/follow.php:60 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" + +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:855 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:856 mod/settings.php:793 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/dfrn_request.php:857 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste." + +#: mod/dfrn_request.php:858 mod/follow.php:66 +msgid "Your Identity Address:" +msgstr "Adresse Deines Profils:" + +#: mod/dfrn_request.php:861 mod/follow.php:69 +msgid "Submit Request" +msgstr "Anfrage abschicken" + +#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148 +#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225 +#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121 +#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633 +#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871 +#: include/conversation.php:1093 +msgid "Cancel" +msgstr "Abbrechen" + +#: mod/files.php:156 mod/videos.php:373 include/text.php:1460 +msgid "View Video" +msgstr "Video ansehen" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: mod/profile.php:155 mod/display.php:343 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Tipps für neue Nutzer" + +#: mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." + +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 +msgid "Discard" +msgstr "Verwerfen" + +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623 +#: mod/contacts.php:799 +msgid "Ignore" +msgstr "Ignorieren" + +#: mod/notifications.php:78 +msgid "System" +msgstr "System" + +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +msgid "Network" +msgstr "Netzwerk" + +#: mod/notifications.php:90 mod/network.php:375 +msgid "Personal" +msgstr "Persönlich" + +#: mod/notifications.php:96 view/theme/diabook/theme.php:123 +#: include/nav.php:105 include/nav.php:156 +msgid "Home" +msgstr "Pinnwand" + +#: mod/notifications.php:102 include/nav.php:161 +msgid "Introductions" +msgstr "Kontaktanfragen" + +#: mod/notifications.php:127 +msgid "Show Ignored Requests" +msgstr "Zeige ignorierte Anfragen" + +#: mod/notifications.php:127 +msgid "Hide Ignored Requests" +msgstr "Verberge ignorierte Anfragen" + +#: mod/notifications.php:159 mod/notifications.php:209 +msgid "Notification type: " +msgstr "Benachrichtigungstyp: " + +#: mod/notifications.php:160 +msgid "Friend Suggestion" +msgstr "Kontaktvorschlag" + +#: mod/notifications.php:162 +#, php-format +msgid "suggested by %s" +msgstr "vorgeschlagen von %s" + +#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629 +msgid "Hide this contact from others" +msgstr "Verbirg diesen Kontakt vor andere" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "Post a new friend activity" +msgstr "Neue-Kontakt Nachricht senden" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "if applicable" +msgstr "falls anwendbar" + +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085 +msgid "Approve" +msgstr "Genehmigen" + +#: mod/notifications.php:191 +msgid "Claims to be known to you: " +msgstr "Behauptet Dich zu kennen: " + +#: mod/notifications.php:191 +msgid "yes" +msgstr "ja" + +#: mod/notifications.php:191 +msgid "no" +msgstr "nein" + +#: mod/notifications.php:192 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" + +#: mod/notifications.php:195 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" + +#: mod/notifications.php:203 +msgid "Friend" +msgstr "Freund" + +#: mod/notifications.php:204 +msgid "Sharer" +msgstr "Teilenden" + +#: mod/notifications.php:204 +msgid "Fan/Admirer" +msgstr "Fan/Verehrer" + +#: mod/notifications.php:210 +msgid "Friend/Connect Request" +msgstr "Kontakt-/Freundschaftsanfrage" + +#: mod/notifications.php:210 +msgid "New Follower" +msgstr "Neuer Bewunderer" + +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/event.php:42 include/identity.php:268 +#: include/bb2diaspora.php:170 +msgid "Location:" +msgstr "Ort:" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:582 +msgid "About:" +msgstr "Über:" + +#: mod/notifications.php:224 include/identity.php:576 +msgid "Tags:" +msgstr "Tags" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:541 +msgid "Gender:" +msgstr "Geschlecht:" + +#: mod/notifications.php:240 +msgid "No introductions." +msgstr "Keine Kontaktanfragen." + +#: mod/notifications.php:243 include/nav.php:164 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 +#, php-format +msgid "%s liked %s's post" +msgstr "%s mag %ss Beitrag" + +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mag %ss Beitrag nicht" + +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s ist jetzt mit %s befreundet" + +#: mod/notifications.php:313 mod/notifications.php:442 +#, php-format +msgid "%s created a new post" +msgstr "%s hat einen neuen Beitrag erstellt" + +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s hat %ss Beitrag kommentiert" + +#: mod/notifications.php:329 +msgid "No more network notifications." +msgstr "Keine weiteren Netzwerk-Benachrichtigungen." + +#: mod/notifications.php:333 +msgid "Network Notifications" +msgstr "Netzwerk Benachrichtigungen" + +#: mod/notifications.php:359 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Keine weiteren Systembenachrichtigungen." + +#: mod/notifications.php:363 mod/notify.php:76 +msgid "System Notifications" +msgstr "Systembenachrichtigungen" + +#: mod/notifications.php:458 +msgid "No more personal notifications." +msgstr "Keine weiteren persönlichen Benachrichtigungen" + +#: mod/notifications.php:462 +msgid "Personal Notifications" +msgstr "Persönliche Benachrichtigungen" + +#: mod/notifications.php:543 +msgid "No more home notifications." +msgstr "Keine weiteren Pinnwand-Benachrichtigungen" + +#: mod/notifications.php:547 +msgid "Home Notifications" +msgstr "Pinnwand Benachrichtigungen" + +#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:471 include/text.php:2034 +#: include/diaspora.php:2134 include/conversation.php:126 +#: include/conversation.php:253 +msgid "photo" +msgstr "Foto" + +#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 +#: include/diaspora.php:2134 include/conversation.php:121 +#: include/conversation.php:130 include/conversation.php:248 +#: include/conversation.php:257 +msgid "status" +msgstr "Status" + +#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150 +#: include/conversation.php:137 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s" + +#: mod/like.php:168 include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s nicht" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Anmeldung fehlgeschlagen." + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Quelle (bbcode) Text:" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Originaltext:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (reines HTML): " + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Originaltext (Diaspora Format): " + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/admin.php:57 +msgid "Theme settings updated." +msgstr "Themeneinstellungen aktualisiert." + +#: mod/admin.php:104 mod/admin.php:687 +msgid "Site" +msgstr "Seite" + +#: mod/admin.php:105 mod/admin.php:633 mod/admin.php:1078 mod/admin.php:1093 +msgid "Users" +msgstr "Nutzer" + +#: mod/admin.php:106 mod/admin.php:1182 mod/admin.php:1242 mod/settings.php:66 +msgid "Plugins" +msgstr "Plugins" + +#: mod/admin.php:107 mod/admin.php:1410 mod/admin.php:1444 +msgid "Themes" +msgstr "Themen" + +#: mod/admin.php:108 +msgid "DB updates" +msgstr "DB Updates" + +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "Warteschlange Inspizieren" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1531 +msgid "Logs" +msgstr "Protokolle" + +#: mod/admin.php:125 +msgid "probe address" +msgstr "Adresse untersuchen" + +#: mod/admin.php:126 +msgid "check webfinger" +msgstr "Webfinger überprüfen" + +#: mod/admin.php:131 include/nav.php:193 +msgid "Admin" +msgstr "Administration" + +#: mod/admin.php:132 +msgid "Plugin Features" +msgstr "Plugin Features" + +#: mod/admin.php:134 +msgid "diagnostics" +msgstr "Diagnose" + +#: mod/admin.php:135 +msgid "User registrations waiting for confirmation" +msgstr "Nutzeranmeldungen die auf Bestätigung warten" + +#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15 +#: mod/display.php:82 mod/display.php:295 mod/display.php:512 +#: mod/viewsrc.php:15 include/items.php:4827 +msgid "Item not found." +msgstr "Beitrag nicht gefunden." + +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077 +#: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443 +#: mod/admin.php:1530 +msgid "Administration" +msgstr "Administration" + +#: mod/admin.php:202 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "Empfänger Name" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "Empfänger Profil" + +#: mod/admin.php:206 +msgid "Created" +msgstr "Erstellt" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "Zuletzt versucht" + +#: mod/admin.php:208 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden." + +#: mod/admin.php:220 mod/admin.php:1031 +msgid "Normal Account" +msgstr "Normales Konto" + +#: mod/admin.php:221 mod/admin.php:1032 +msgid "Soapbox Account" +msgstr "Marktschreier-Konto" + +#: mod/admin.php:222 mod/admin.php:1033 +msgid "Community/Celebrity Account" +msgstr "Forum/Promi-Konto" + +#: mod/admin.php:223 mod/admin.php:1034 +msgid "Automatic Friend Account" +msgstr "Automatisches Freundekonto" + +#: mod/admin.php:224 +msgid "Blog Account" +msgstr "Blog-Konto" + +#: mod/admin.php:225 +msgid "Private Forum" +msgstr "Privates Forum" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" + +#: mod/admin.php:250 +msgid "Summary" +msgstr "Zusammenfassung" + +#: mod/admin.php:252 +msgid "Registered users" +msgstr "Registrierte Nutzer" + +#: mod/admin.php:254 +msgid "Pending registrations" +msgstr "Anstehende Anmeldungen" + +#: mod/admin.php:255 +msgid "Version" +msgstr "Version" + +#: mod/admin.php:260 +msgid "Active plugins" +msgstr "Aktive Plugins" + +#: mod/admin.php:283 +msgid "Can not parse base url. Must have at least ://" +msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" + +#: mod/admin.php:556 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "RINO2 benötigt die PHP Extension mcrypt." + +#: mod/admin.php:564 +msgid "Site settings updated." +msgstr "Seiteneinstellungen aktualisiert." + +#: mod/admin.php:599 mod/settings.php:885 +msgid "No special theme for mobile devices" +msgstr "Kein spezielles Theme für mobile Geräte verwenden." + +#: mod/admin.php:616 +msgid "No community page" +msgstr "Keine Gemeinschaftsseite" + +#: mod/admin.php:617 +msgid "Public postings from users of this site" +msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" + +#: mod/admin.php:618 +msgid "Global community page" +msgstr "Globale Gemeinschaftsseite" + +#: mod/admin.php:623 mod/contacts.php:526 +msgid "Never" +msgstr "Niemals" + +#: mod/admin.php:624 +msgid "At post arrival" +msgstr "Beim Empfang von Nachrichten" + +#: mod/admin.php:625 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "immer wieder" + +#: mod/admin.php:626 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Stündlich" + +#: mod/admin.php:627 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Zweimal täglich" + +#: mod/admin.php:628 include/contact_selectors.php:59 +msgid "Daily" +msgstr "Täglich" + +#: mod/admin.php:632 mod/contacts.php:585 +msgid "Disabled" +msgstr "Deaktiviert" + +#: mod/admin.php:634 +msgid "Users, Global Contacts" +msgstr "Nutzer, globale Kontakte" + +#: mod/admin.php:635 +msgid "Users, Global Contacts/fallback" +msgstr "Nutzer, globale Kontakte / Fallback" + +#: mod/admin.php:639 +msgid "One month" +msgstr "ein Monat" + +#: mod/admin.php:640 +msgid "Three months" +msgstr "drei Monate" + +#: mod/admin.php:641 +msgid "Half a year" +msgstr "ein halbes Jahr" + +#: mod/admin.php:642 +msgid "One year" +msgstr "ein Jahr" + +#: mod/admin.php:647 +msgid "Multi user instance" +msgstr "Mehrbenutzer Instanz" + +#: mod/admin.php:670 +msgid "Closed" +msgstr "Geschlossen" + +#: mod/admin.php:671 +msgid "Requires approval" +msgstr "Bedarf der Zustimmung" + +#: mod/admin.php:672 +msgid "Open" +msgstr "Offen" + +#: mod/admin.php:676 +msgid "No SSL policy, links will track page SSL state" +msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" + +#: mod/admin.php:677 +msgid "Force all links to use SSL" +msgstr "SSL für alle Links erzwingen" + +#: mod/admin.php:678 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" + +#: mod/admin.php:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786 +#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: mod/admin.php:689 mod/register.php:260 +msgid "Registration" +msgstr "Registrierung" + +#: mod/admin.php:690 +msgid "File upload" +msgstr "Datei hochladen" + +#: mod/admin.php:691 +msgid "Policies" +msgstr "Regeln" + +#: mod/admin.php:692 +msgid "Advanced" +msgstr "Erweitert" + +#: mod/admin.php:693 +msgid "Auto Discovered Contact Directory" +msgstr "Automatisch ein Kontaktverzeichnis erstellen" + +#: mod/admin.php:694 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:695 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." + +#: mod/admin.php:698 +msgid "Site name" +msgstr "Seitenname" + +#: mod/admin.php:699 +msgid "Host name" +msgstr "Host Name" + +#: mod/admin.php:700 +msgid "Sender Email" +msgstr "Absender für Emails" + +#: mod/admin.php:700 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll." + +#: mod/admin.php:701 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:702 +msgid "Shortcut icon" +msgstr "Shortcut Icon" + +#: mod/admin.php:702 +msgid "Link to an icon that will be used for browsers." +msgstr "Link zu einem Icon, das Browser verwenden werden." + +#: mod/admin.php:703 +msgid "Touch icon" +msgstr "Touch Icon" + +#: mod/admin.php:703 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen." + +#: mod/admin.php:704 +msgid "Additional Info" +msgstr "Zusätzliche Informationen" + +#: mod/admin.php:704 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden." + +#: mod/admin.php:705 +msgid "System language" +msgstr "Systemsprache" + +#: mod/admin.php:706 +msgid "System theme" +msgstr "Systemweites Theme" + +#: mod/admin.php:706 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern" + +#: mod/admin.php:707 +msgid "Mobile system theme" +msgstr "Systemweites mobiles Theme" + +#: mod/admin.php:707 +msgid "Theme for mobile devices" +msgstr "Thema für mobile Geräte" + +#: mod/admin.php:708 +msgid "SSL link policy" +msgstr "Regeln für SSL Links" + +#: mod/admin.php:708 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" + +#: mod/admin.php:709 +msgid "Force SSL" +msgstr "Erzwinge SSL" + +#: mod/admin.php:709 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife." + +#: mod/admin.php:710 +msgid "Old style 'Share'" +msgstr "Altes \"Teilen\" Element" + +#: mod/admin.php:710 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." + +#: mod/admin.php:711 +msgid "Hide help entry from navigation menu" +msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" + +#: mod/admin.php:711 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." + +#: mod/admin.php:712 +msgid "Single user instance" +msgstr "Ein-Nutzer Instanz" + +#: mod/admin.php:712 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt." + +#: mod/admin.php:713 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" + +#: mod/admin.php:713 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit." + +#: mod/admin.php:714 +msgid "Maximum image length" +msgstr "Maximale Bildlänge" + +#: mod/admin.php:714 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet." + +#: mod/admin.php:715 +msgid "JPEG image quality" +msgstr "Qualität des JPEG Bildes" + +#: mod/admin.php:715 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." + +#: mod/admin.php:717 +msgid "Register policy" +msgstr "Registrierungsmethode" + +#: mod/admin.php:718 +msgid "Maximum Daily Registrations" +msgstr "Maximum täglicher Registrierungen" + +#: mod/admin.php:718 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt." + +#: mod/admin.php:719 +msgid "Register text" +msgstr "Registrierungstext" + +#: mod/admin.php:719 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." + +#: mod/admin.php:720 +msgid "Accounts abandoned after x days" +msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" + +#: mod/admin.php:720 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit." + +#: mod/admin.php:721 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" + +#: mod/admin.php:721 +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:722 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" + +#: mod/admin.php:722 +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:723 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" + +#: mod/admin.php:723 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." + +#: mod/admin.php:724 +msgid "Force publish" +msgstr "Erzwinge Veröffentlichung" + +#: mod/admin.php:724 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." + +#: mod/admin.php:725 +msgid "Global directory URL" +msgstr "URL des weltweiten Verzeichnisses" + +#: mod/admin.php:725 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar." + +#: mod/admin.php:726 +msgid "Allow threaded items" +msgstr "Erlaube Threads in Diskussionen" + +#: mod/admin.php:726 +msgid "Allow infinite level threading for items on this site." +msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." + +#: mod/admin.php:727 +msgid "Private posts by default for new users" +msgstr "Private Beiträge als Standard für neue Nutzer" + +#: mod/admin.php:727 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen." + +#: mod/admin.php:728 +msgid "Don't include post content in email notifications" +msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" + +#: mod/admin.php:728 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." + +#: mod/admin.php:729 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." + +#: mod/admin.php:729 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt." + +#: mod/admin.php:730 +msgid "Don't embed private images in posts" +msgstr "Private Bilder nicht in Beiträgen einbetten." + +#: mod/admin.php:730 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." + +#: mod/admin.php:731 +msgid "Allow Users to set remote_self" +msgstr "Nutzern erlauben das remote_self Flag zu setzen" + +#: mod/admin.php:731 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet." + +#: mod/admin.php:732 +msgid "Block multiple registrations" +msgstr "Unterbinde Mehrfachregistrierung" + +#: mod/admin.php:732 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen." + +#: mod/admin.php:733 +msgid "OpenID support" +msgstr "OpenID Unterstützung" + +#: mod/admin.php:733 +msgid "OpenID support for registration and logins." +msgstr "OpenID-Unterstützung für Registrierung und Login." + +#: mod/admin.php:734 +msgid "Fullname check" +msgstr "Namen auf Vollständigkeit überprüfen" + +#: mod/admin.php:734 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden." + +#: mod/admin.php:735 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 Reguläre Ausdrücke" + +#: mod/admin.php:735 +msgid "Use PHP UTF8 regular expressions" +msgstr "PHP UTF8 Ausdrücke verwenden" + +#: mod/admin.php:736 +msgid "Community Page Style" +msgstr "Art der Gemeinschaftsseite" + +#: mod/admin.php:736 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen." + +#: mod/admin.php:737 +msgid "Posts per user on community page" +msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" + +#: mod/admin.php:737 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt." + +#: mod/admin.php:738 +msgid "Enable OStatus support" +msgstr "OStatus Unterstützung aktivieren" + +#: mod/admin.php:738 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt." + +#: mod/admin.php:739 +msgid "OStatus conversation completion interval" +msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" + +#: mod/admin.php:739 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein." + +#: mod/admin.php:740 +msgid "Enable Diaspora support" +msgstr "Diaspora Unterstützung aktivieren" + +#: mod/admin.php:740 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Verwende die eingebaute Diaspora-Verknüpfung." + +#: mod/admin.php:741 +msgid "Only allow Friendica contacts" +msgstr "Nur Friendica-Kontakte erlauben" + +#: mod/admin.php:741 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert." + +#: mod/admin.php:742 +msgid "Verify SSL" +msgstr "SSL Überprüfen" + +#: mod/admin.php:742 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann." + +#: mod/admin.php:743 +msgid "Proxy user" +msgstr "Proxy Nutzer" + +#: mod/admin.php:744 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: mod/admin.php:745 +msgid "Network timeout" +msgstr "Netzwerk Wartezeit" + +#: mod/admin.php:745 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." + +#: mod/admin.php:746 +msgid "Delivery interval" +msgstr "Zustellungsintervall" + +#: mod/admin.php:746 +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 an 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:747 +msgid "Poll interval" +msgstr "Abfrageintervall" + +#: mod/admin.php:747 +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 an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet." + +#: mod/admin.php:748 +msgid "Maximum Load Average" +msgstr "Maximum Load Average" + +#: mod/admin.php:748 +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:749 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximum Load Average (Frontend)" + +#: mod/admin.php:749 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50." + +#: mod/admin.php:751 +msgid "Periodical check of global contacts" +msgstr "Regelmäßig globale Kontakte überprüfen" + +#: mod/admin.php:751 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft." + +#: mod/admin.php:752 +msgid "Days between requery" +msgstr "Tage zwischen erneuten Abfragen" + +#: mod/admin.php:752 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll." + +#: mod/admin.php:753 +msgid "Discover contacts from other servers" +msgstr "Neue Kontakte auf anderen Servern entdecken" + +#: mod/admin.php:753 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'." + +#: mod/admin.php:754 +msgid "Timeframe for fetching global contacts" +msgstr "Zeitfenster für globale Kontakte" + +#: mod/admin.php:754 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden." + +#: mod/admin.php:755 +msgid "Search the local directory" +msgstr "Lokales Verzeichnis durchsuchen" + +#: mod/admin.php:755 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird." + +#: mod/admin.php:757 +msgid "Publish server information" +msgstr "Server Informationen veröffentlichen" + +#: mod/admin.php:757 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte the-federation.info aufrufen." + +#: mod/admin.php:759 +msgid "Use MySQL full text engine" +msgstr "Nutze MySQL full text engine" + +#: mod/admin.php:759 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden." + +#: mod/admin.php:760 +msgid "Suppress Language" +msgstr "Sprachinformation unterdrücken" + +#: mod/admin.php:760 +msgid "Suppress language information in meta information about a posting." +msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." + +#: mod/admin.php:761 +msgid "Suppress Tags" +msgstr "Tags Unterdrücken" + +#: mod/admin.php:761 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." + +#: mod/admin.php:762 +msgid "Path to item cache" +msgstr "Pfad zum Eintrag Cache" + +#: mod/admin.php:762 +msgid "The item caches buffers generated bbcode and external images." +msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert." + +#: mod/admin.php:763 +msgid "Cache duration in seconds" +msgstr "Cache-Dauer in Sekunden" + +#: mod/admin.php:763 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1." + +#: mod/admin.php:764 +msgid "Maximum numbers of comments per post" +msgstr "Maximale Anzahl von Kommentaren pro Beitrag" + +#: mod/admin.php:764 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." + +#: mod/admin.php:765 +msgid "Path for lock file" +msgstr "Pfad für die Sperrdatei" + +#: mod/admin.php:765 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis." + +#: mod/admin.php:766 +msgid "Temp path" +msgstr "Temp Pfad" + +#: mod/admin.php:766 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad." + +#: mod/admin.php:767 +msgid "Base path to installation" +msgstr "Basis-Pfad zur Installation" + +#: mod/admin.php:767 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist." + +#: mod/admin.php:768 +msgid "Disable picture proxy" +msgstr "Bilder Proxy deaktivieren" + +#: mod/admin.php:768 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." + +#: mod/admin.php:769 +msgid "Enable old style pager" +msgstr "Den Old-Style Pager aktiviren" + +#: mod/admin.php:769 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite." + +#: mod/admin.php:770 +msgid "Only search in tags" +msgstr "Nur in Tags suchen" + +#: mod/admin.php:770 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." + +#: mod/admin.php:772 +msgid "New base url" +msgstr "Neue Basis-URL" + +#: mod/admin.php:772 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen." + +#: mod/admin.php:774 +msgid "RINO Encryption" +msgstr "RINO Verschlüsselung" + +#: mod/admin.php:774 +msgid "Encryption layer between nodes." +msgstr "Verschlüsselung zwischen Friendica Instanzen" + +#: mod/admin.php:775 +msgid "Embedly API key" +msgstr "Embedly API Schlüssel" + +#: mod/admin.php:775 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "Embedly wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter." + +#: mod/admin.php:793 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" + +#: mod/admin.php:801 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." + +#: mod/admin.php:804 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s" + +#: mod/admin.php:816 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" + +#: mod/admin.php:819 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s war erfolgreich." + +#: mod/admin.php:823 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." + +#: mod/admin.php:825 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." + +#: mod/admin.php:844 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Updates." + +#: mod/admin.php:845 +msgid "Check database structure" +msgstr "Datenbank Struktur überprüfen" + +#: mod/admin.php:850 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Updates" + +#: mod/admin.php:851 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." + +#: mod/admin.php:852 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" + +#: mod/admin.php:853 +msgid "Attempt to execute this update step automatically" +msgstr "Versuchen, diesen Schritt automatisch auszuführen" + +#: mod/admin.php:885 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt." + +#: mod/admin.php:888 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s." + +#: mod/admin.php:920 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Details der Registration von %s" + +#: mod/admin.php:932 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s Benutzer geblockt/freigegeben" +msgstr[1] "%s Benutzer geblockt/freigegeben" + +#: mod/admin.php:939 +#, 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:978 +#, php-format +msgid "User '%s' deleted" +msgstr "Nutzer '%s' gelöscht" + +#: mod/admin.php:986 +#, php-format +msgid "User '%s' unblocked" +msgstr "Nutzer '%s' entsperrt" + +#: mod/admin.php:986 +#, php-format +msgid "User '%s' blocked" +msgstr "Nutzer '%s' gesperrt" + +#: mod/admin.php:1079 +msgid "Add User" +msgstr "Nutzer hinzufügen" + +#: mod/admin.php:1080 +msgid "select all" +msgstr "Alle auswählen" + +#: mod/admin.php:1081 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" + +#: mod/admin.php:1082 +msgid "User waiting for permanent deletion" +msgstr "Nutzer wartet auf permanente Löschung" + +#: mod/admin.php:1083 +msgid "Request date" +msgstr "Anfragedatum" + +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109 +#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170 +msgid "Name" +msgstr "Name" + +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "E-Mail" + +#: mod/admin.php:1084 +msgid "No registrations." +msgstr "Keine Neuanmeldungen." + +#: mod/admin.php:1086 +msgid "Deny" +msgstr "Verwehren" + +#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 +msgid "Block" +msgstr "Sperren" + +#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 +msgid "Unblock" +msgstr "Entsperren" + +#: mod/admin.php:1090 +msgid "Site admin" +msgstr "Seitenadministrator" + +#: mod/admin.php:1091 +msgid "Account expired" +msgstr "Account ist abgelaufen" + +#: mod/admin.php:1094 +msgid "New User" +msgstr "Neuer Nutzer" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Register date" +msgstr "Anmeldedatum" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Last login" +msgstr "Letzte Anmeldung" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Last item" +msgstr "Letzter Beitrag" + +#: mod/admin.php:1095 +msgid "Deleted since" +msgstr "Gelöscht seit" + +#: mod/admin.php:1096 mod/settings.php:41 +msgid "Account" +msgstr "Nutzerkonto" + +#: mod/admin.php:1098 +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\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?" + +#: mod/admin.php:1099 +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 permanent gelöscht!\\n\\nBist Du sicher?" + +#: mod/admin.php:1109 +msgid "Name of the new user." +msgstr "Name des neuen Nutzers" + +#: mod/admin.php:1110 +msgid "Nickname" +msgstr "Spitzname" + +#: mod/admin.php:1110 +msgid "Nickname of the new user." +msgstr "Spitznamen für den neuen Nutzer" + +#: mod/admin.php:1111 +msgid "Email address of the new user." +msgstr "Email Adresse des neuen Nutzers" + +#: mod/admin.php:1144 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s deaktiviert." + +#: mod/admin.php:1148 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s aktiviert." + +#: mod/admin.php:1158 mod/admin.php:1381 +msgid "Disable" +msgstr "Ausschalten" + +#: mod/admin.php:1160 mod/admin.php:1383 +msgid "Enable" +msgstr "Einschalten" + +#: mod/admin.php:1183 mod/admin.php:1411 +msgid "Toggle" +msgstr "Umschalten" + +#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22 +#: mod/settings.php:99 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 include/nav.php:181 +msgid "Settings" +msgstr "Einstellungen" + +#: mod/admin.php:1191 mod/admin.php:1421 +msgid "Author: " +msgstr "Autor:" + +#: mod/admin.php:1192 mod/admin.php:1422 +msgid "Maintainer: " +msgstr "Betreuer:" + +#: mod/admin.php:1341 +msgid "No themes found." +msgstr "Keine Themen gefunden." + +#: mod/admin.php:1403 +msgid "Screenshot" +msgstr "Bildschirmfoto" + +#: mod/admin.php:1449 +msgid "[Experimental]" +msgstr "[Experimentell]" + +#: mod/admin.php:1450 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" + +#: mod/admin.php:1477 +msgid "Log settings updated." +msgstr "Protokolleinstellungen aktualisiert." + +#: mod/admin.php:1533 +msgid "Clear" +msgstr "löschen" + +#: mod/admin.php:1539 +msgid "Enable Debugging" +msgstr "Protokoll führen" + +#: mod/admin.php:1540 +msgid "Log file" +msgstr "Protokolldatei" + +#: mod/admin.php:1540 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." + +#: mod/admin.php:1541 +msgid "Log level" +msgstr "Protokoll-Level" + +#: mod/admin.php:1590 mod/contacts.php:619 +msgid "Update now" +msgstr "Jetzt aktualisieren" + +#: mod/admin.php:1591 include/acl_selectors.php:347 +msgid "Close" +msgstr "Schließen" + +#: mod/admin.php:1597 +msgid "FTP Host" +msgstr "FTP Host" + +#: mod/admin.php:1598 +msgid "FTP Path" +msgstr "FTP Pfad" + +#: mod/admin.php:1599 +msgid "FTP User" +msgstr "FTP Nutzername" + +#: mod/admin.php:1600 +msgid "FTP Password" +msgstr "FTP Passwort" + +#: mod/message.php:9 include/nav.php:173 +msgid "New Message" +msgstr "Neue Nachricht" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Kein Empfänger gewählt." + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "Konnte die Kontaktinformationen nicht finden." + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Nachricht konnte nicht gesendet werden." + +#: mod/message.php:74 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Konnte Nachrichten nicht abrufen." + +#: mod/message.php:77 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Nachricht gesendet." + +#: mod/message.php:183 include/nav.php:170 +msgid "Messages" +msgstr "Nachrichten" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "Möchtest Du wirklich diese Nachricht löschen?" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "Nachricht gelöscht." + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: mod/message.php:284 mod/message.php:292 mod/message.php:467 +#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1001 include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "Bitte gib die URL des Links ein:" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "An:" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Betreff:" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110 +#: mod/wallmessage.php:154 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114 +#: mod/wallmessage.php:155 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Einen Link einfügen" + +#: mod/message.php:372 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "'Unbekannter Absender - %s" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "Du und %s" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "%s und Du" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "Nachricht nicht verfügbar." + +#: mod/message.php:521 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: mod/message.php:549 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." + +#: mod/message.php:553 +msgid "Send Reply" +msgstr "Antwort senden" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Beitrag nicht gefunden" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Beitrag bearbeiten" + +#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997 +msgid "Save" +msgstr "Speichern" + +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "Bild hochladen" + +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Datei anhängen" + +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "Datei anhängen" + +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "Weblink" + +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" + +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "Video-Link" + +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" + +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "Audio-Link" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "Deinen Standort festlegen" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "Ort setzen" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "Ort löschen" + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "Cc: E-Mail-Addressen" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Titel setzen" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Z.B.: bob@example.com, mary@example.com" + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 +msgid "Profile not found." +msgstr "Profil nicht gefunden." + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Antwort der Gegenstelle unverständlich." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Unerwartete Antwort der Gegenstelle: " + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Bestätigung erfolgreich abgeschlossen." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Gegenstelle meldet: " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Konnte das Bild des Kontakts nicht speichern." + +#: mod/dfrn_confirm.php:487 include/diaspora.php:633 +#: include/conversation.php:172 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Für '%s' wurde kein Nutzer gefunden" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s ist %2$s beigetreten" + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." + +#: mod/events.php:317 +msgid "l, F j" +msgstr "l, F j" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" + +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +msgid "link to source" +msgstr "Link zum Originalbeitrag" + +#: mod/events.php:396 view/theme/diabook/theme.php:127 +#: include/identity.php:668 include/nav.php:80 +msgid "Events" +msgstr "Veranstaltungen" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Vorherige" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Nächste" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Veranstaltungsdetails" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "Anfangszeitpunkt und Titel werden benötigt" + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "Veranstaltungsbeginn:" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Benötigt" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "Veranstaltungsende:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "An Zeitzone des Betrachters anpassen" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Beschreibung" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Veranstaltung teilen" + +#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126 +#: include/identity.php:649 include/nav.php:78 +msgid "Photos" +msgstr "Bilder" + +#: mod/fbrowser.php:122 +msgid "Files" +msgstr "Dateien" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen zu %s" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Konnte Deinen Heimatort nicht bestimmen." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Kein Empfänger." + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." + +#: mod/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838 +#: mod/viewcontacts.php:64 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besuche %ss Profil [%s]" + +#: mod/nogroup.php:41 mod/contacts.php:839 +msgid "Edit contact" +msgstr "Kontakt bearbeiten" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakte, die keiner Gruppe zugewiesen sind" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Dies ist Friendica, Version" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "die unter folgender Webadresse zu finden ist" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "dem Bugtracker auf github" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Erweiterungen/Apps" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Keine Plugins/Erweiterungen/Apps installiert" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Konto löschen" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Bitte gib Dein Passwort zur Verifikation ein:" + +#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 +#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 +#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +msgid "Invalid request." +msgstr "Ungültige Anfrage" + +#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Bildgröße überschreitet das Limit von %s" + +#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Konnte das Bild nicht bearbeiten." + +#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220 +#: mod/item.php:486 include/message.php:145 include/Photo.php:951 +#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 +msgid "Wall Photos" +msgstr "Pinnwand-Bilder" + +#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Hochladen des Bildes gescheitert." + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Verbindung der Applikation autorisieren" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Bitte melde Dich an um fortzufahren." + +#: 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 den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?" + +#: mod/tagger.php:95 include/conversation.php:265 +#, 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 getaggt" + +#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 +#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 +#: mod/photos.php:1791 view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Kontaktbilder" + +#: mod/photos.php:84 include/identity.php:652 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: mod/photos.php:102 mod/settings.php:34 +msgid "everybody" +msgstr "jeder" + +#: mod/photos.php:166 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" + +#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 +#: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81 +#: mod/profile_photo.php:88 mod/profile_photo.php:204 +#: mod/profile_photo.php:296 mod/profile_photo.php:305 +#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350 +#: include/user.php:357 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: mod/photos.php:187 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +msgid "Delete Album" +msgstr "Album löschen" + +#: mod/photos.php:220 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" + +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: mod/photos.php:309 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest Du wirklich dieses Foto löschen?" + +#: mod/photos.php:684 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s wurde von %3$s in %2$s getaggt" + +#: mod/photos.php:684 +msgid "a photo" +msgstr "einem Foto" + +#: mod/photos.php:797 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: mod/photos.php:952 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" + +#: mod/photos.php:1053 mod/videos.php:298 +msgid "Access to this item is restricted." +msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." + +#: mod/photos.php:1149 +msgid "Upload Photos" +msgstr "Bilder hochladen" + +#: mod/photos.php:1153 mod/photos.php:1219 +msgid "New album name: " +msgstr "Name des neuen Albums: " + +#: mod/photos.php:1154 +msgid "or existing album name: " +msgstr "oder existierender Albumname: " + +#: mod/photos.php:1155 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" + +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Berechtigungen" + +#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202 +msgid "Show to Groups" +msgstr "Zeige den Gruppen" + +#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203 +msgid "Show to Contacts" +msgstr "Zeige den Kontakten" + +#: mod/photos.php:1168 +msgid "Private Photo" +msgstr "Privates Foto" + +#: mod/photos.php:1169 +msgid "Public Photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1232 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: mod/photos.php:1238 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" + +#: mod/photos.php:1240 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" + +#: mod/photos.php:1268 mod/photos.php:1821 +msgid "View Photo" +msgstr "Foto betrachten" + +#: mod/photos.php:1314 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." + +#: mod/photos.php:1316 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Fotos ansehen" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" + +#: mod/photos.php:1477 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1480 +msgid "[Remove any tag]" +msgstr "[Tag entfernen]" + +#: mod/photos.php:1520 +msgid "New album name" +msgstr "Name des neuen Albums" + +#: mod/photos.php:1521 +msgid "Caption" +msgstr "Bildunterschrift" + +#: mod/photos.php:1522 +msgid "Add a Tag" +msgstr "Tag hinzufügen" + +#: mod/photos.php:1522 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "Nicht rotieren" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" + +#: mod/photos.php:1540 +msgid "Private photo" +msgstr "Privates Foto" + +#: mod/photos.php:1541 +msgid "Public photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Teilen" + +#: mod/photos.php:1827 mod/videos.php:380 +msgid "View Album" +msgstr "Album betrachten" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Kein Profil" + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." + +#: mod/register.php:188 mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst." + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Deine OpenID (optional): " + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "ID Deiner Einladung: " + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vollständiger Name (z.B. Max Mustermann): " + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Deine E-Mail-Adresse: " + +#: mod/register.php:271 mod/settings.php:1174 +msgid "New Password:" +msgstr "Neues Passwort:" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "Leer lassen um das Passwort automatisch zu generieren." + +#: mod/register.php:272 mod/settings.php:1175 +msgid "Confirm:" +msgstr "Bestätigen:" + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Spitznamen wählen: " + +#: mod/register.php:277 boot.php:1248 include/nav.php:109 +msgid "Register" +msgstr "Registrieren" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "Import" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "Importiere Dein Profil auf diese Friendica Instanz" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." + +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast." + +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." + +#: mod/lostpass.php:109 boot.php:1287 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort - und dann" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "hier klicken, um Dich anzumelden" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)." + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden." + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hast Du Dein Passwort vergessen?" + +#: mod/lostpass.php:160 +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 an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Spitzname oder E-Mail:" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Zurücksetzen" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "System zur Wartung abgeschaltet" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Beitrag nicht verfügbar." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Beitrag konnte nicht gefunden werden." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Anwendungen" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Keine Applikationen installiert." + +#: mod/help.php:31 +msgid "Help:" +msgstr "Hilfe:" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Hilfe" + #: mod/contacts.php:114 #, php-format msgid "%d contact edited." @@ -48,7 +3126,7 @@ msgid_plural "%d contacts edited" msgstr[0] "%d Kontakt bearbeitet." msgstr[1] "%d Kontakte bearbeitet" -#: mod/contacts.php:145 mod/contacts.php:340 +#: mod/contacts.php:145 mod/contacts.php:368 msgid "Could not access contact record." msgstr "Konnte nicht auf die Kontaktdaten zugreifen." @@ -60,490 +3138,416 @@ msgstr "Konnte das ausgewählte Profil nicht finden." msgid "Contact updated." msgstr "Kontakt aktualisiert." -#: mod/contacts.php:194 mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." - -#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 -#: mod/profile_photo.php:19 mod/profile_photo.php:169 -#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/follow.php:9 -#: mod/follow.php:44 mod/follow.php:83 mod/item.php:170 mod/item.php:186 -#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 -#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 -#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 -#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 -#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 -#: mod/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135 -#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 -#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 -#: include/items.php:5023 index.php:382 -msgid "Permission denied." -msgstr "Zugriff verweigert." - -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been unblocked" msgstr "Kontakt wurde wieder freigegeben" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been ignored" msgstr "Kontakt wurde ignoriert" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been unignored" msgstr "Kontakt wird nicht mehr ignoriert" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been archived" msgstr "Kontakt wurde archiviert" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been unarchived" msgstr "Kontakt wurde aus dem Archiv geholt" -#: mod/contacts.php:411 mod/contacts.php:767 +#: mod/contacts.php:439 mod/contacts.php:795 msgid "Do you really want to delete this contact?" msgstr "Möchtest Du wirklich diesen Kontakt löschen?" -#: mod/contacts.php:413 mod/follow.php:59 mod/message.php:210 -#: mod/settings.php:1066 mod/settings.php:1072 mod/settings.php:1080 -#: mod/settings.php:1084 mod/settings.php:1089 mod/settings.php:1095 -#: mod/settings.php:1101 mod/settings.php:1107 mod/settings.php:1133 -#: mod/settings.php:1134 mod/settings.php:1135 mod/settings.php:1136 -#: mod/settings.php:1137 mod/dfrn_request.php:848 mod/register.php:235 -#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/api.php:105 include/items.php:4855 -msgid "Yes" -msgstr "Ja" - -#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:70 -#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 -#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 -#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 -#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 -#: include/items.php:4858 -msgid "Cancel" -msgstr "Abbrechen" - -#: mod/contacts.php:428 +#: mod/contacts.php:456 msgid "Contact has been removed." msgstr "Kontakt wurde entfernt." -#: mod/contacts.php:466 +#: mod/contacts.php:494 #, php-format msgid "You are mutual friends with %s" msgstr "Du hast mit %s eine beidseitige Freundschaft" -#: mod/contacts.php:470 +#: mod/contacts.php:498 #, php-format msgid "You are sharing with %s" msgstr "Du teilst mit %s" -#: mod/contacts.php:475 +#: mod/contacts.php:503 #, php-format msgid "%s is sharing with you" msgstr "%s teilt mit Dir" -#: mod/contacts.php:495 +#: mod/contacts.php:523 msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." -#: mod/contacts.php:498 mod/admin.php:618 -msgid "Never" -msgstr "Niemals" - -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was not successful)" msgstr "(Aktualisierung war nicht erfolgreich)" -#: mod/contacts.php:504 +#: mod/contacts.php:532 msgid "Suggest friends" msgstr "Kontakte vorschlagen" -#: mod/contacts.php:508 +#: mod/contacts.php:536 #, php-format msgid "Network type: %s" msgstr "Netzwerktyp: %s" -#: mod/contacts.php:511 include/contact_widgets.php:200 +#: mod/contacts.php:539 include/contact_widgets.php:200 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gemeinsamer Kontakt" msgstr[1] "%d gemeinsame Kontakte" -#: mod/contacts.php:516 +#: mod/contacts.php:544 msgid "View all contacts" msgstr "Alle Kontakte anzeigen" -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1083 -msgid "Unblock" -msgstr "Entsperren" - -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1082 -msgid "Block" -msgstr "Sperren" - -#: mod/contacts.php:524 +#: mod/contacts.php:552 msgid "Toggle Blocked status" msgstr "Geblockt-Status ein-/ausschalten" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 msgid "Unignore" msgstr "Ignorieren aufheben" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 -msgid "Ignore" -msgstr "Ignorieren" - -#: mod/contacts.php:531 +#: mod/contacts.php:559 msgid "Toggle Ignored status" msgstr "Ignoriert-Status ein-/ausschalten" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Archive" msgstr "Archivieren" -#: mod/contacts.php:539 +#: mod/contacts.php:567 msgid "Toggle Archive status" msgstr "Archiviert-Status ein-/ausschalten" -#: mod/contacts.php:543 +#: mod/contacts.php:571 msgid "Repair" msgstr "Reparieren" -#: mod/contacts.php:546 +#: mod/contacts.php:574 msgid "Advanced Contact Settings" msgstr "Fortgeschrittene Kontakteinstellungen" -#: mod/contacts.php:553 +#: mod/contacts.php:581 msgid "Communications lost with this contact!" msgstr "Verbindungen mit diesem Kontakt verloren!" -#: mod/contacts.php:556 +#: mod/contacts.php:584 msgid "Fetch further information for feeds" msgstr "Weitere Informationen zu Feeds holen" -#: mod/contacts.php:557 mod/admin.php:627 -msgid "Disabled" -msgstr "Deaktiviert" - -#: mod/contacts.php:557 +#: mod/contacts.php:585 msgid "Fetch information" msgstr "Beziehe Information" -#: mod/contacts.php:557 +#: mod/contacts.php:585 msgid "Fetch information and keywords" msgstr "Beziehe Information und Schlüsselworte" -#: mod/contacts.php:566 +#: mod/contacts.php:594 msgid "Contact Editor" msgstr "Kontakt Editor" -#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 -#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 -#: mod/events.php:511 mod/content.php:712 mod/install.php:250 -#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 -#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 -#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 -#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 -#: object/Item.php:680 view/theme/cleanzero/config.php:80 -#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 -#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 -#: view/theme/vier/config.php:56 view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Senden" - -#: mod/contacts.php:569 +#: mod/contacts.php:597 msgid "Profile Visibility" msgstr "Profil-Sichtbarkeit" -#: mod/contacts.php:570 +#: mod/contacts.php:598 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft." -#: mod/contacts.php:571 +#: mod/contacts.php:599 msgid "Contact Information / Notes" msgstr "Kontakt Informationen / Notizen" -#: mod/contacts.php:572 +#: mod/contacts.php:600 msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbeiten" -#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 -#: mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besuche %ss Profil [%s]" - -#: mod/contacts.php:578 +#: mod/contacts.php:606 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" -#: mod/contacts.php:579 +#: mod/contacts.php:607 msgid "Ignore contact" msgstr "Ignoriere den Kontakt" -#: mod/contacts.php:580 +#: mod/contacts.php:608 msgid "Repair URL settings" msgstr "URL Einstellungen reparieren" -#: mod/contacts.php:581 +#: mod/contacts.php:609 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: mod/contacts.php:583 +#: mod/contacts.php:611 msgid "Delete contact" msgstr "Lösche den Kontakt" -#: mod/contacts.php:587 +#: mod/contacts.php:615 msgid "Last update:" msgstr "Letzte Aktualisierung: " -#: mod/contacts.php:589 +#: mod/contacts.php:617 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: mod/contacts.php:591 mod/admin.php:1584 -msgid "Update now" -msgstr "Jetzt aktualisieren" - -#: mod/contacts.php:598 +#: mod/contacts.php:626 msgid "Currently blocked" msgstr "Derzeit geblockt" -#: mod/contacts.php:599 +#: mod/contacts.php:627 msgid "Currently ignored" msgstr "Derzeit ignoriert" -#: mod/contacts.php:600 +#: mod/contacts.php:628 msgid "Currently archived" msgstr "Momentan archiviert" -#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 -msgid "Hide this contact from others" -msgstr "Verbirg diesen Kontakt vor andere" - -#: mod/contacts.php:601 +#: mod/contacts.php:629 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" -#: mod/contacts.php:602 +#: mod/contacts.php:630 msgid "Notification for new posts" msgstr "Benachrichtigung bei neuen Beiträgen" -#: mod/contacts.php:602 +#: mod/contacts.php:630 msgid "Send a notification of every new post of this contact" msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." -#: mod/contacts.php:605 +#: mod/contacts.php:633 msgid "Blacklisted keywords" msgstr "Blacklistete Schlüsselworte " -#: mod/contacts.php:605 +#: mod/contacts.php:633 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" -#: mod/contacts.php:612 +#: mod/contacts.php:640 msgid "Profile URL" msgstr "Profil URL" -#: mod/contacts.php:658 +#: mod/contacts.php:686 msgid "Suggestions" msgstr "Kontaktvorschläge" -#: mod/contacts.php:661 +#: mod/contacts.php:689 msgid "Suggest potential friends" msgstr "Freunde vorschlagen" -#: mod/contacts.php:665 mod/group.php:192 +#: mod/contacts.php:693 mod/group.php:192 msgid "All Contacts" msgstr "Alle Kontakte" -#: mod/contacts.php:668 +#: mod/contacts.php:696 msgid "Show all contacts" msgstr "Alle Kontakte anzeigen" -#: mod/contacts.php:672 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "Ungeblockt" -#: mod/contacts.php:675 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "Nur nicht-blockierte Kontakte anzeigen" -#: mod/contacts.php:680 +#: mod/contacts.php:708 msgid "Blocked" msgstr "Geblockt" -#: mod/contacts.php:683 +#: mod/contacts.php:711 msgid "Only show blocked contacts" msgstr "Nur blockierte Kontakte anzeigen" -#: mod/contacts.php:688 +#: mod/contacts.php:716 msgid "Ignored" msgstr "Ignoriert" -#: mod/contacts.php:691 +#: mod/contacts.php:719 msgid "Only show ignored contacts" msgstr "Nur ignorierte Kontakte anzeigen" -#: mod/contacts.php:696 +#: mod/contacts.php:724 msgid "Archived" msgstr "Archiviert" -#: mod/contacts.php:699 +#: mod/contacts.php:727 msgid "Only show archived contacts" msgstr "Nur archivierte Kontakte anzeigen" -#: mod/contacts.php:704 +#: mod/contacts.php:732 msgid "Hidden" msgstr "Verborgen" -#: mod/contacts.php:707 +#: mod/contacts.php:735 msgid "Only show hidden contacts" msgstr "Nur verborgene Kontakte anzeigen" -#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 -#: include/nav.php:186 view/theme/diabook/theme.php:125 +#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 +#: include/nav.php:124 include/nav.php:186 msgid "Contacts" msgstr "Kontakte" -#: mod/contacts.php:762 +#: mod/contacts.php:790 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: mod/contacts.php:763 mod/directory.php:63 +#: mod/contacts.php:791 mod/directory.php:63 msgid "Finding: " msgstr "Funde: " -#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 msgid "Find" msgstr "Finde" -#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 +#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 msgid "Update" msgstr "Aktualisierungen" -#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 -#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 -msgid "Delete" -msgstr "Löschen" - -#: mod/contacts.php:786 +#: mod/contacts.php:814 msgid "Mutual Friendship" msgstr "Beidseitige Freundschaft" -#: mod/contacts.php:790 +#: mod/contacts.php:818 msgid "is a fan of yours" msgstr "ist ein Fan von dir" -#: mod/contacts.php:794 +#: mod/contacts.php:822 msgid "you are a fan of" msgstr "Du bist Fan von" -#: mod/contacts.php:811 mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Kontakt bearbeiten" +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "Möchtest Du dieses Video wirklich löschen?" -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Kein Profil" +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "Video Löschen" -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Verwalte Identitäten und/oder Seiten" +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Keine Videos ausgewählt" -#: mod/manage.php:107 +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Neueste Videos" + +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Neues Video hochladen" + +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" + +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Keine gemeinsamen Kontakte." + +#: mod/follow.php:26 +msgid "You already added this contact." +msgstr "Du hast den Kontakt bereits hinzugefügt." + +#: mod/follow.php:108 +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +msgid "Login" +msgstr "Anmeldung" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Der Beitrag wurde angelegt" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Account umziehen" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." + +#: mod/uimport.php:68 msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast." +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist." -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten aus: " +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Beitrag erfolgreich veröffentlicht." +#: mod/uimport.php:70 +msgid "Account file" +msgstr "Account Datei" -#: mod/profperm.php:19 mod/group.php:72 index.php:381 -msgid "Permission denied" -msgstr "Zugriff verweigert" +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Bezeichner." +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt %2$s %3$s" -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Editor für die Profil-Sichtbarkeit" +#: mod/allfriends.php:37 +#, php-format +msgid "Friends of %s" +msgstr "Freunde von %s" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 -#: include/identity.php:610 include/identity.php:640 include/nav.php:77 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Keine Freunde zum Anzeigen." -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag entfernt" -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Sichtbar für" +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Gegenstands-Tag entfernen" -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Wähle ein Tag zum Entfernen aus: " -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 -#: mod/notice.php:15 include/items.php:4814 -msgid "Item not found." -msgstr "Beitrag nicht gefunden." - -#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 -#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 -#: mod/directory.php:35 mod/photos.php:942 -msgid "Public access denied." -msgstr "Öffentlicher Zugriff verweigert." - -#: mod/display.php:343 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "Eintrag wurde entfernt." +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Entfernen" #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -576,12 +3580,6 @@ msgid "" " join." msgstr "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst." -#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 -#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Einstellungen" - #: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "Gehe zu deinen Einstellungen" @@ -601,7 +3599,13 @@ msgid "" "potential friends know exactly how to find you." msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können." -#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 +#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 +#: include/identity.php:530 include/identity.php:611 include/identity.php:641 +#: include/nav.php:77 +msgid "Profile" +msgstr "Profil" + +#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "Profilbild hochladen" @@ -740,3097 +3744,123 @@ msgid "" " features and resources." msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Anmeldung fehlgeschlagen." - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." - -#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:204 mod/profile_photo.php:296 -#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753 -#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 -#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinern der Bildgröße von [%s] scheiterte." - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Bild konnte nicht verarbeitet werden" - -#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Bildgröße überschreitet das Limit von %s" - -#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 -msgid "Unable to process image." -msgstr "Konnte das Bild nicht bearbeiten." - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Datei hochladen:" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Profil auswählen:" - -#: mod/profile_photo.php:245 -msgid "Upload" -msgstr "Hochladen" - -#: mod/profile_photo.php:248 -msgid "or" -msgstr "oder" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "wähle ein Foto aus deinen Fotoalben" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Bild zurechtschneiden" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Bearbeitung abgeschlossen" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." - -#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." - -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 -#: include/conversation.php:126 include/conversation.php:253 -#: include/text.php:2034 include/diaspora.php:2127 -#: view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "Foto" - -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 -#: include/conversation.php:121 include/conversation.php:130 -#: include/conversation.php:248 include/conversation.php:257 -#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 -#: view/theme/diabook/theme.php:475 -msgid "status" -msgstr "Status" - -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt %2$s %3$s" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag entfernt" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Entfernen" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "In diesem Ordner speichern:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- auswählen -" - -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 -msgid "Save" -msgstr "Speichern" - -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "Du hast den Kontakt bereits hinzugefügt." - -#: mod/follow.php:58 mod/dfrn_request.php:847 -msgid "Please answer the following:" -msgstr "Bitte beantworte folgendes:" - -#: mod/follow.php:59 mod/dfrn_request.php:848 -#, php-format -msgid "Does %s know you?" -msgstr "Kennt %s Dich?" - -#: mod/follow.php:59 mod/settings.php:1066 mod/settings.php:1072 -#: mod/settings.php:1080 mod/settings.php:1084 mod/settings.php:1089 -#: mod/settings.php:1095 mod/settings.php:1101 mod/settings.php:1107 -#: mod/settings.php:1133 mod/settings.php:1134 mod/settings.php:1135 -#: mod/settings.php:1136 mod/settings.php:1137 mod/dfrn_request.php:848 -#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 -#: mod/api.php:106 -msgid "No" -msgstr "Nein" - -#: mod/follow.php:60 mod/dfrn_request.php:852 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - -#: mod/follow.php:66 mod/dfrn_request.php:858 -msgid "Your Identity Address:" -msgstr "Adresse Deines Profils:" - -#: mod/follow.php:69 mod/dfrn_request.php:861 -msgid "Submit Request" -msgstr "Anfrage abschicken" - -#: mod/follow.php:108 -msgid "Contact added" -msgstr "Kontakt hinzugefügt" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Konnte den Originalbeitrag nicht finden." - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Leerer Beitrag wurde verworfen." - -#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 -#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 -#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 -msgid "Wall Photos" -msgstr "Pinnwand-Bilder" - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." - -#: mod/item.php:989 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." - -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Du kannst sie online unter %s besuchen" - -#: mod/item.php:992 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest." - -#: mod/item.php:996 -#, php-format -msgid "%s posted an update." -msgstr "%s hat ein Update veröffentlicht." - -#: mod/group.php:29 -msgid "Group created." -msgstr "Gruppe erstellt." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Konnte die Gruppe nicht erstellen." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Gruppe nicht gefunden." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Gruppenname geändert." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Gruppe speichern" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Eine Gruppe von Kontakten/Freunden anlegen." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Gruppenname:" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Gruppe entfernt." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Konnte die Gruppe nicht entfernen." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Gruppeneditor" - -#: mod/group.php:190 -msgid "Members" -msgstr "Mitglieder" - -#: mod/apps.php:7 index.php:225 -msgid "You must be logged in to use addons. " -msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Anwendungen" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Keine Applikationen installiert." - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:627 -msgid "Profile not found." -msgstr "Profil nicht gefunden." - -#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:134 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden." - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwort der Gegenstelle unverständlich." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Unerwartete Antwort der Gegenstelle: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bestätigung erfolgreich abgeschlossen." - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Gegenstelle meldet: " - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Konnte das Bild des Kontakts nicht speichern." - -#: mod/dfrn_confirm.php:487 include/conversation.php:172 -#: include/diaspora.php:634 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ist nun mit %2$s befreundet" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Für '%s' wurde kein Nutzer gefunden" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." - -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" - -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4237 -msgid "[Name Withheld]" -msgstr "[Name unterdrückt]" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s ist %2$s beigetreten" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Tipps für neue Nutzer" - -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "Möchtest Du dieses Video wirklich löschen?" - -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Video Löschen" - -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Keine Videos ausgewählt" - -#: mod/videos.php:298 mod/photos.php:1053 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." - -#: mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "Video ansehen" - -#: mod/videos.php:380 mod/photos.php:1827 -msgid "View Album" -msgstr "Album betrachten" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Neueste Videos" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Neues Video hochladen" - -#: mod/tagger.php:95 include/conversation.php:265 -#, 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 getaggt" - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kontaktvorschlag gesendet." - -#: 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/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 -#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 -#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 -msgid "Invalid request." -msgstr "Ungültige Anfrage" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." - -#: mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast." - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." - -#: mod/lostpass.php:109 boot.php:1287 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort - und dann" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "hier klicken, um Dich anzumelden" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)." - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden." - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hast Du Dein Passwort vergessen?" - -#: mod/lostpass.php:160 -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 an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Spitzname oder E-Mail:" - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Zurücksetzen" - -#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 -#: view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s" - -#: mod/like.php:168 include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s nicht" - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit Dir in Kontakt treten" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} schickte Dir eine Nachricht" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Keine Kontakte." - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Invalid request identifier." - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "Verwerfen" - -#: mod/notifications.php:78 -msgid "System" -msgstr "System" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "Netzwerk" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "Persönlich" - -#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 -#: view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Pinnwand" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "Kontaktanfragen" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "Zeige ignorierte Anfragen" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "Verberge ignorierte Anfragen" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "Benachrichtigungstyp: " - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "Kontaktvorschlag" - -#: mod/notifications.php:162 -#, php-format -msgid "suggested by %s" -msgstr "vorgeschlagen von %s" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "Neue-Kontakt Nachricht senden" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "falls anwendbar" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 -msgid "Approve" -msgstr "Genehmigen" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "Behauptet Dich zu kennen: " - -#: mod/notifications.php:191 -msgid "yes" -msgstr "ja" - -#: mod/notifications.php:191 -msgid "no" -msgstr "nein" - -#: mod/notifications.php:192 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" - -#: mod/notifications.php:195 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" - -#: mod/notifications.php:203 -msgid "Friend" -msgstr "Freund" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "Teilenden" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "Fan/Verehrer" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "Kontakt-/Freundschaftsanfrage" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "Neuer Bewunderer" - -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 -#: include/event.php:42 -msgid "Location:" -msgstr "Ort:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:581 -msgid "About:" -msgstr "Über:" - -#: mod/notifications.php:224 include/identity.php:575 -msgid "Tags:" -msgstr "Tags" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:540 -msgid "Gender:" -msgstr "Geschlecht:" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "Keine Kontaktanfragen." - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 -#, php-format -msgid "%s liked %s's post" -msgstr "%s mag %ss Beitrag" - -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s mag %ss Beitrag nicht" - -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s ist jetzt mit %s befreundet" - -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" -msgstr "%s hat einen neuen Beitrag erstellt" - -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s hat %ss Beitrag kommentiert" - -#: mod/notifications.php:329 -msgid "No more network notifications." -msgstr "Keine weiteren Netzwerk-Benachrichtigungen." - -#: mod/notifications.php:333 -msgid "Network Notifications" -msgstr "Netzwerk Benachrichtigungen" - -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Keine weiteren Systembenachrichtigungen." - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "Systembenachrichtigungen" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "Keine weiteren persönlichen Benachrichtigungen" - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "Persönliche Benachrichtigungen" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "Keine weiteren Pinnwand-Benachrichtigungen" - -#: mod/notifications.php:547 -msgid "Home Notifications" -msgstr "Pinnwand Benachrichtigungen" - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Quelle (bbcode) Text:" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Originaltext:" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (reines HTML): " - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Originaltext (Diaspora Format): " - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" - -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "Neue Nachricht" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Kein Empfänger gewählt." - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." - -#: mod/message.php:74 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Konnte Nachrichten nicht abrufen." - -#: mod/message.php:77 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Nachricht gesendet." - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "Nachrichten" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "Möchtest Du wirklich diese Nachricht löschen?" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "Nachricht gelöscht." - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: mod/message.php:284 mod/message.php:292 mod/message.php:467 -#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "Bitte gib die URL des Links ein:" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "An:" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Betreff:" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Einen Link einfügen" - -#: mod/message.php:335 mod/message.php:566 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 -#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "Bitte warten" - -#: mod/message.php:372 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "'Unbekannter Absender - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Du und %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s und Du" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" - -#: mod/message.php:451 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." - -#: mod/message.php:521 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: mod/message.php:549 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." - -#: mod/message.php:553 -msgid "Send Reply" -msgstr "Antwort senden" - -#: mod/update_display.php:22 mod/update_community.php:18 -#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Einstellungen zum Kontakt angewandt." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Konnte den Kontakt nicht aktualisieren." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" - -#: mod/crepair.php:142 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." - -#: mod/crepair.php:143 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." - -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Zurück zum Kontakteditor" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Kein Spiegeln" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Spiegeln als weitergeleitete Beiträge" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Spiegeln als meine eigenen Beiträge" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Kontaktdaten neu laden" - -#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 -#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 -#: mod/settings.php:660 -msgid "Name" -msgstr "Name" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Konto-Spitzname" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - überschreibt Name/Spitzname" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "Konto-URL" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL für Freundschaftsanfragen" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL für Bestätigungen von Freundschaftsanfragen" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "URL-Endpunkt für Benachrichtigungen" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "Pull/Feed-URL" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Neues Foto von dieser URL" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "Entfernte Konten" - -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "Spiegle Beiträge dieses Kontakts" - -#: mod/crepair.php:181 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." - -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "Anmeldung" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Der Beitrag wurde angelegt" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Zugriff verweigert." - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "Personensuche - %s" - -#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 -#: include/contact_widgets.php:10 include/identity.php:188 -msgid "Connect" -msgstr "Verbinden" - -#: mod/dirfind.php:139 mod/match.php:73 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 -#: view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Bilder" - -#: mod/fbrowser.php:122 -msgid "Files" -msgstr "Dateien" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakte, die keiner Gruppe zugewiesen sind" - -#: mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Themeneinstellungen aktualisiert." - -#: mod/admin.php:104 mod/admin.php:682 -msgid "Site" -msgstr "Seite" - -#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 -msgid "Users" -msgstr "Nutzer" - -#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 -msgid "Plugins" -msgstr "Plugins" - -#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 -msgid "Themes" -msgstr "Themen" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "DB Updates" - -#: mod/admin.php:109 mod/admin.php:200 -msgid "Inspect Queue" -msgstr "Warteschlange Inspizieren" - -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 -msgid "Logs" -msgstr "Protokolle" - -#: mod/admin.php:125 -msgid "probe address" -msgstr "Adresse untersuchen" - -#: mod/admin.php:126 -msgid "check webfinger" -msgstr "Webfinger überprüfen" - -#: mod/admin.php:131 include/nav.php:193 -msgid "Admin" -msgstr "Administration" - -#: mod/admin.php:132 -msgid "Plugin Features" -msgstr "Plugin Features" - -#: mod/admin.php:134 -msgid "diagnostics" -msgstr "Diagnose" - -#: mod/admin.php:135 -msgid "User registrations waiting for confirmation" -msgstr "Nutzeranmeldungen die auf Bestätigung warten" - -#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 -#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 -#: mod/admin.php:1524 -msgid "Administration" -msgstr "Administration" - -#: mod/admin.php:202 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:203 -msgid "Recipient Name" -msgstr "Empfänger Name" - -#: mod/admin.php:204 -msgid "Recipient Profile" -msgstr "Empfänger Profil" - -#: mod/admin.php:206 -msgid "Created" -msgstr "Erstellt" - -#: mod/admin.php:207 -msgid "Last Tried" -msgstr "Zuletzt versucht" - -#: mod/admin.php:208 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden." - -#: mod/admin.php:220 mod/admin.php:1025 -msgid "Normal Account" -msgstr "Normales Konto" - -#: mod/admin.php:221 mod/admin.php:1026 -msgid "Soapbox Account" -msgstr "Marktschreier-Konto" - -#: mod/admin.php:222 mod/admin.php:1027 -msgid "Community/Celebrity Account" -msgstr "Forum/Promi-Konto" - -#: mod/admin.php:223 mod/admin.php:1028 -msgid "Automatic Friend Account" -msgstr "Automatisches Freundekonto" - -#: mod/admin.php:224 -msgid "Blog Account" -msgstr "Blog-Konto" - -#: mod/admin.php:225 -msgid "Private Forum" -msgstr "Privates Forum" - -#: mod/admin.php:244 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" - -#: mod/admin.php:250 -msgid "Summary" -msgstr "Zusammenfassung" - -#: mod/admin.php:252 -msgid "Registered users" -msgstr "Registrierte Nutzer" - -#: mod/admin.php:254 -msgid "Pending registrations" -msgstr "Anstehende Anmeldungen" - -#: mod/admin.php:255 -msgid "Version" -msgstr "Version" - -#: mod/admin.php:260 -msgid "Active plugins" -msgstr "Aktive Plugins" - -#: mod/admin.php:283 -msgid "Can not parse base url. Must have at least ://" -msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" - -#: mod/admin.php:565 -msgid "Site settings updated." -msgstr "Seiteneinstellungen aktualisiert." - -#: mod/admin.php:594 mod/settings.php:883 -msgid "No special theme for mobile devices" -msgstr "Kein spezielles Theme für mobile Geräte verwenden." - -#: mod/admin.php:611 -msgid "No community page" -msgstr "Keine Gemeinschaftsseite" - -#: mod/admin.php:612 -msgid "Public postings from users of this site" -msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" - -#: mod/admin.php:613 -msgid "Global community page" -msgstr "Globale Gemeinschaftsseite" - -#: mod/admin.php:619 -msgid "At post arrival" -msgstr "Beim Empfang von Nachrichten" - -#: mod/admin.php:620 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "immer wieder" - -#: mod/admin.php:621 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Stündlich" - -#: mod/admin.php:622 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Zweimal täglich" - -#: mod/admin.php:623 include/contact_selectors.php:59 -msgid "Daily" -msgstr "Täglich" - -#: mod/admin.php:629 -msgid "Users, Global Contacts" -msgstr "Nutzer, globale Kontakte" - -#: mod/admin.php:630 -msgid "Users, Global Contacts/fallback" -msgstr "Nutzer, globale Kontakte / Fallback" - -#: mod/admin.php:634 -msgid "One month" -msgstr "ein Monat" - -#: mod/admin.php:635 -msgid "Three months" -msgstr "drei Monate" - -#: mod/admin.php:636 -msgid "Half a year" -msgstr "ein halbes Jahr" - -#: mod/admin.php:637 -msgid "One year" -msgstr "ein Jahr" - -#: mod/admin.php:642 -msgid "Multi user instance" -msgstr "Mehrbenutzer Instanz" - -#: mod/admin.php:665 -msgid "Closed" -msgstr "Geschlossen" - -#: mod/admin.php:666 -msgid "Requires approval" -msgstr "Bedarf der Zustimmung" - -#: mod/admin.php:667 -msgid "Open" -msgstr "Offen" - -#: mod/admin.php:671 -msgid "No SSL policy, links will track page SSL state" -msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" - -#: mod/admin.php:672 -msgid "Force all links to use SSL" -msgstr "SSL für alle Links erzwingen" - -#: mod/admin.php:673 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" - -#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:784 -#: mod/settings.php:853 mod/settings.php:935 mod/settings.php:1165 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: mod/admin.php:684 mod/register.php:260 -msgid "Registration" -msgstr "Registrierung" - -#: mod/admin.php:685 -msgid "File upload" -msgstr "Datei hochladen" - -#: mod/admin.php:686 -msgid "Policies" -msgstr "Regeln" - -#: mod/admin.php:687 -msgid "Advanced" -msgstr "Erweitert" - -#: mod/admin.php:688 -msgid "Auto Discovered Contact Directory" -msgstr "Automatisch ein Kontaktverzeichnis erstellen" - -#: mod/admin.php:689 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:690 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." - -#: mod/admin.php:693 -msgid "Site name" -msgstr "Seitenname" - -#: mod/admin.php:694 -msgid "Host name" -msgstr "Host Name" - -#: mod/admin.php:695 -msgid "Sender Email" -msgstr "Absender für Emails" - -#: mod/admin.php:695 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll." - -#: mod/admin.php:696 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:697 -msgid "Shortcut icon" -msgstr "Shortcut Icon" - -#: mod/admin.php:697 -msgid "Link to an icon that will be used for browsers." -msgstr "Link zu einem Icon, das Browser verwenden werden." - -#: mod/admin.php:698 -msgid "Touch icon" -msgstr "Touch Icon" - -#: mod/admin.php:698 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen." - -#: mod/admin.php:699 -msgid "Additional Info" -msgstr "Zusätzliche Informationen" - -#: mod/admin.php:699 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden." - -#: mod/admin.php:700 -msgid "System language" -msgstr "Systemsprache" - -#: mod/admin.php:701 -msgid "System theme" -msgstr "Systemweites Theme" - -#: mod/admin.php:701 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern" - -#: mod/admin.php:702 -msgid "Mobile system theme" -msgstr "Systemweites mobiles Theme" - -#: mod/admin.php:702 -msgid "Theme for mobile devices" -msgstr "Thema für mobile Geräte" - -#: mod/admin.php:703 -msgid "SSL link policy" -msgstr "Regeln für SSL Links" - -#: mod/admin.php:703 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" - -#: mod/admin.php:704 -msgid "Force SSL" -msgstr "Erzwinge SSL" - -#: mod/admin.php:704 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife." - -#: mod/admin.php:705 -msgid "Old style 'Share'" -msgstr "Altes \"Teilen\" Element" - -#: mod/admin.php:705 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." - -#: mod/admin.php:706 -msgid "Hide help entry from navigation menu" -msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" - -#: mod/admin.php:706 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." - -#: mod/admin.php:707 -msgid "Single user instance" -msgstr "Ein-Nutzer Instanz" - -#: mod/admin.php:707 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt." - -#: mod/admin.php:708 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" - -#: mod/admin.php:708 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit." - -#: mod/admin.php:709 -msgid "Maximum image length" -msgstr "Maximale Bildlänge" - -#: mod/admin.php:709 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet." - -#: mod/admin.php:710 -msgid "JPEG image quality" -msgstr "Qualität des JPEG Bildes" - -#: mod/admin.php:710 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." - -#: mod/admin.php:712 -msgid "Register policy" -msgstr "Registrierungsmethode" - -#: mod/admin.php:713 -msgid "Maximum Daily Registrations" -msgstr "Maximum täglicher Registrierungen" - -#: mod/admin.php:713 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt." - -#: mod/admin.php:714 -msgid "Register text" -msgstr "Registrierungstext" - -#: mod/admin.php:714 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." - -#: mod/admin.php:715 -msgid "Accounts abandoned after x days" -msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" - -#: mod/admin.php:715 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit." - -#: mod/admin.php:716 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" - -#: mod/admin.php:716 -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:717 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" - -#: mod/admin.php:717 -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:718 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" - -#: mod/admin.php:718 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." - -#: mod/admin.php:719 -msgid "Force publish" -msgstr "Erzwinge Veröffentlichung" - -#: mod/admin.php:719 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." - -#: mod/admin.php:720 -msgid "Global directory update URL" -msgstr "URL für Updates beim weltweiten Verzeichnis" - -#: mod/admin.php:720 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar." - -#: mod/admin.php:721 -msgid "Allow threaded items" -msgstr "Erlaube Threads in Diskussionen" - -#: mod/admin.php:721 -msgid "Allow infinite level threading for items on this site." -msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." - -#: mod/admin.php:722 -msgid "Private posts by default for new users" -msgstr "Private Beiträge als Standard für neue Nutzer" - -#: mod/admin.php:722 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen." - -#: mod/admin.php:723 -msgid "Don't include post content in email notifications" -msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" - -#: mod/admin.php:723 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." - -#: mod/admin.php:724 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." - -#: mod/admin.php:724 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt." - -#: mod/admin.php:725 -msgid "Don't embed private images in posts" -msgstr "Private Bilder nicht in Beiträgen einbetten." - -#: mod/admin.php:725 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." - -#: mod/admin.php:726 -msgid "Allow Users to set remote_self" -msgstr "Nutzern erlauben das remote_self Flag zu setzen" - -#: mod/admin.php:726 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet." - -#: mod/admin.php:727 -msgid "Block multiple registrations" -msgstr "Unterbinde Mehrfachregistrierung" - -#: mod/admin.php:727 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen." - -#: mod/admin.php:728 -msgid "OpenID support" -msgstr "OpenID Unterstützung" - -#: mod/admin.php:728 -msgid "OpenID support for registration and logins." -msgstr "OpenID-Unterstützung für Registrierung und Login." - -#: mod/admin.php:729 -msgid "Fullname check" -msgstr "Namen auf Vollständigkeit überprüfen" - -#: mod/admin.php:729 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden." - -#: mod/admin.php:730 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 Reguläre Ausdrücke" - -#: mod/admin.php:730 -msgid "Use PHP UTF8 regular expressions" -msgstr "PHP UTF8 Ausdrücke verwenden" - -#: mod/admin.php:731 -msgid "Community Page Style" -msgstr "Art der Gemeinschaftsseite" - -#: mod/admin.php:731 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen." - -#: mod/admin.php:732 -msgid "Posts per user on community page" -msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" - -#: mod/admin.php:732 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt." - -#: mod/admin.php:733 -msgid "Enable OStatus support" -msgstr "OStatus Unterstützung aktivieren" - -#: mod/admin.php:733 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt." - -#: mod/admin.php:734 -msgid "OStatus conversation completion interval" -msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" - -#: mod/admin.php:734 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein." - -#: mod/admin.php:735 -msgid "Enable Diaspora support" -msgstr "Diaspora Unterstützung aktivieren" - -#: mod/admin.php:735 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Verwende die eingebaute Diaspora-Verknüpfung." - -#: mod/admin.php:736 -msgid "Only allow Friendica contacts" -msgstr "Nur Friendica-Kontakte erlauben" - -#: mod/admin.php:736 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert." - -#: mod/admin.php:737 -msgid "Verify SSL" -msgstr "SSL Überprüfen" - -#: mod/admin.php:737 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann." - -#: mod/admin.php:738 -msgid "Proxy user" -msgstr "Proxy Nutzer" - -#: mod/admin.php:739 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: mod/admin.php:740 -msgid "Network timeout" -msgstr "Netzwerk Wartezeit" - -#: mod/admin.php:740 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." - -#: mod/admin.php:741 -msgid "Delivery interval" -msgstr "Zustellungsintervall" - -#: mod/admin.php:741 -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 an 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:742 -msgid "Poll interval" -msgstr "Abfrageintervall" - -#: mod/admin.php:742 -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 an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet." - -#: mod/admin.php:743 -msgid "Maximum Load Average" -msgstr "Maximum Load Average" - -#: mod/admin.php:743 -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:744 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximum Load Average (Frontend)" - -#: mod/admin.php:744 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50." - -#: mod/admin.php:746 -msgid "Periodical check of global contacts" -msgstr "Regelmäßig globale Kontakte überprüfen" - -#: mod/admin.php:746 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft." - -#: mod/admin.php:747 -msgid "Discover contacts from other servers" -msgstr "Neue Kontakte auf anderen Servern entdecken" - -#: mod/admin.php:747 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'." - -#: mod/admin.php:748 -msgid "Timeframe for fetching global contacts" -msgstr "Zeitfenster für globale Kontakte" - -#: mod/admin.php:748 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden." - -#: mod/admin.php:749 -msgid "Search the local directory" -msgstr "Lokales Verzeichnis durchsuchen" - -#: mod/admin.php:749 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird." - -#: mod/admin.php:751 -msgid "Publish server information" -msgstr "Server Informationen veröffentlichen" - -#: mod/admin.php:751 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte the-federation.info aufrufen." - -#: mod/admin.php:753 -msgid "Use MySQL full text engine" -msgstr "Nutze MySQL full text engine" - -#: mod/admin.php:753 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden." - -#: mod/admin.php:754 -msgid "Suppress Language" -msgstr "Sprachinformation unterdrücken" - -#: mod/admin.php:754 -msgid "Suppress language information in meta information about a posting." -msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." - -#: mod/admin.php:755 -msgid "Suppress Tags" -msgstr "Tags Unterdrücken" - -#: mod/admin.php:755 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." - -#: mod/admin.php:756 -msgid "Path to item cache" -msgstr "Pfad zum Eintrag Cache" - -#: mod/admin.php:756 -msgid "The item caches buffers generated bbcode and external images." -msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert." - -#: mod/admin.php:757 -msgid "Cache duration in seconds" -msgstr "Cache-Dauer in Sekunden" - -#: mod/admin.php:757 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1." - -#: mod/admin.php:758 -msgid "Maximum numbers of comments per post" -msgstr "Maximale Anzahl von Kommentaren pro Beitrag" - -#: mod/admin.php:758 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." - -#: mod/admin.php:759 -msgid "Path for lock file" -msgstr "Pfad für die Sperrdatei" - -#: mod/admin.php:759 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis." - -#: mod/admin.php:760 -msgid "Temp path" -msgstr "Temp Pfad" - -#: mod/admin.php:760 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad." - -#: mod/admin.php:761 -msgid "Base path to installation" -msgstr "Basis-Pfad zur Installation" - -#: mod/admin.php:761 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist." - -#: mod/admin.php:762 -msgid "Disable picture proxy" -msgstr "Bilder Proxy deaktivieren" - -#: mod/admin.php:762 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." - -#: mod/admin.php:763 -msgid "Enable old style pager" -msgstr "Den Old-Style Pager aktiviren" - -#: mod/admin.php:763 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite." - -#: mod/admin.php:764 -msgid "Only search in tags" -msgstr "Nur in Tags suchen" - -#: mod/admin.php:764 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." - -#: mod/admin.php:766 -msgid "New base url" -msgstr "Neue Basis-URL" - -#: mod/admin.php:766 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen." - -#: mod/admin.php:768 -msgid "RINO Encryption" -msgstr "RINO Verschlüsselung" - -#: mod/admin.php:768 -msgid "Encryption layer between nodes." -msgstr "Verschlüsselung zwischen Friendica Instanzen" - -#: mod/admin.php:769 -msgid "Embedly API key" -msgstr "Embedly API Schlüssel" - -#: mod/admin.php:769 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "Embedly wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter." - -#: mod/admin.php:787 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: mod/admin.php:795 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." - -#: mod/admin.php:798 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s" - -#: mod/admin.php:810 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" - -#: mod/admin.php:813 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s war erfolgreich." - -#: mod/admin.php:817 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." - -#: mod/admin.php:819 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." - -#: mod/admin.php:838 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Updates." - -#: mod/admin.php:839 -msgid "Check database structure" -msgstr "Datenbank Struktur überprüfen" - -#: mod/admin.php:844 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Updates" - -#: mod/admin.php:845 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." - -#: mod/admin.php:846 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" - -#: mod/admin.php:847 -msgid "Attempt to execute this update step automatically" -msgstr "Versuchen, diesen Schritt automatisch auszuführen" - -#: mod/admin.php:879 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt." - -#: mod/admin.php:882 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s." - -#: mod/admin.php:914 include/user.php:421 -#, php-format -msgid "Registration details for %s" -msgstr "Details der Registration von %s" - -#: mod/admin.php:926 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s Benutzer geblockt/freigegeben" -msgstr[1] "%s Benutzer geblockt/freigegeben" - -#: mod/admin.php:933 -#, 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:972 -#, php-format -msgid "User '%s' deleted" -msgstr "Nutzer '%s' gelöscht" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' unblocked" -msgstr "Nutzer '%s' entsperrt" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' blocked" -msgstr "Nutzer '%s' gesperrt" - -#: mod/admin.php:1073 -msgid "Add User" -msgstr "Nutzer hinzufügen" - -#: mod/admin.php:1074 -msgid "select all" -msgstr "Alle auswählen" - -#: mod/admin.php:1075 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" - -#: mod/admin.php:1076 -msgid "User waiting for permanent deletion" -msgstr "Nutzer wartet auf permanente Löschung" - -#: mod/admin.php:1077 -msgid "Request date" -msgstr "Anfragedatum" - -#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "E-Mail" - -#: mod/admin.php:1078 -msgid "No registrations." -msgstr "Keine Neuanmeldungen." - -#: mod/admin.php:1080 -msgid "Deny" -msgstr "Verwehren" - -#: mod/admin.php:1084 -msgid "Site admin" -msgstr "Seitenadministrator" - -#: mod/admin.php:1085 -msgid "Account expired" -msgstr "Account ist abgelaufen" - -#: mod/admin.php:1088 -msgid "New User" -msgstr "Neuer Nutzer" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Register date" -msgstr "Anmeldedatum" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last item" -msgstr "Letzter Beitrag" - -#: mod/admin.php:1089 -msgid "Deleted since" -msgstr "Gelöscht seit" - -#: mod/admin.php:1090 mod/settings.php:41 -msgid "Account" -msgstr "Nutzerkonto" - -#: mod/admin.php:1092 -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\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?" - -#: mod/admin.php:1093 -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 permanent gelöscht!\\n\\nBist Du sicher?" - -#: mod/admin.php:1103 -msgid "Name of the new user." -msgstr "Name des neuen Nutzers" - -#: mod/admin.php:1104 -msgid "Nickname" -msgstr "Spitzname" - -#: mod/admin.php:1104 -msgid "Nickname of the new user." -msgstr "Spitznamen für den neuen Nutzer" - -#: mod/admin.php:1105 -msgid "Email address of the new user." -msgstr "Email Adresse des neuen Nutzers" - -#: mod/admin.php:1138 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s deaktiviert." - -#: mod/admin.php:1142 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s aktiviert." - -#: mod/admin.php:1152 mod/admin.php:1375 -msgid "Disable" -msgstr "Ausschalten" - -#: mod/admin.php:1154 mod/admin.php:1377 -msgid "Enable" -msgstr "Einschalten" - -#: mod/admin.php:1177 mod/admin.php:1405 -msgid "Toggle" -msgstr "Umschalten" - -#: mod/admin.php:1185 mod/admin.php:1415 -msgid "Author: " -msgstr "Autor:" - -#: mod/admin.php:1186 mod/admin.php:1416 -msgid "Maintainer: " -msgstr "Betreuer:" - -#: mod/admin.php:1335 -msgid "No themes found." -msgstr "Keine Themen gefunden." - -#: mod/admin.php:1397 -msgid "Screenshot" -msgstr "Bildschirmfoto" - -#: mod/admin.php:1443 -msgid "[Experimental]" -msgstr "[Experimentell]" - -#: mod/admin.php:1444 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" - -#: mod/admin.php:1471 -msgid "Log settings updated." -msgstr "Protokolleinstellungen aktualisiert." - -#: mod/admin.php:1527 -msgid "Clear" -msgstr "löschen" - -#: mod/admin.php:1533 -msgid "Enable Debugging" -msgstr "Protokoll führen" - -#: mod/admin.php:1534 -msgid "Log file" -msgstr "Protokolldatei" - -#: mod/admin.php:1534 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." - -#: mod/admin.php:1535 -msgid "Log level" -msgstr "Protokoll-Level" - -#: mod/admin.php:1585 include/acl_selectors.php:347 -msgid "Close" -msgstr "Schließen" - -#: mod/admin.php:1591 -msgid "FTP Host" -msgstr "FTP Host" - -#: mod/admin.php:1592 -msgid "FTP Path" -msgstr "FTP Pfad" - -#: mod/admin.php:1593 -msgid "FTP User" -msgstr "FTP Nutzername" - -#: mod/admin.php:1594 -msgid "FTP Password" -msgstr "FTP Passwort" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Suchergebnisse für: %s" - -#: mod/network.php:187 mod/search.php:25 +#: mod/search.php:25 mod/network.php:187 msgid "Remove term" msgstr "Begriff entfernen" -#: mod/network.php:196 mod/search.php:34 include/features.php:42 +#: mod/search.php:34 mod/network.php:196 include/features.php:42 msgid "Saved Searches" msgstr "Gespeicherte Suchen" -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "hinzufügen" +#: mod/search.php:107 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "Suche" -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Neueste Kommentare" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortieren" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "Neueste Beiträge" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortieren" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "Beiträge, in denen es um Dich geht" - -#: mod/network.php:385 -msgid "New" -msgstr "Neue" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "Aktivitäten-Stream - nach Datum" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "Geteilte Links" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "Interessante Links" - -#: mod/network.php:405 -msgid "Starred" -msgstr "Markierte" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "Favorisierte Beiträge" - -#: mod/network.php:466 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." -msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." - -#: mod/network.php:469 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." - -#: mod/network.php:532 mod/content.php:119 -msgid "No such group" -msgstr "Es gibt keine solche Gruppe" - -#: mod/network.php:549 mod/content.php:130 -msgid "Group is empty" -msgstr "Gruppe ist leer" - -#: mod/network.php:560 mod/content.php:135 -#, php-format -msgid "Group: %s" -msgstr "Gruppe: %s" - -#: mod/network.php:578 -#, php-format -msgid "Contact: %s" -msgstr "Kontakt: %s" - -#: mod/network.php:582 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." - -#: mod/network.php:587 -msgid "Invalid contact." -msgstr "Ungültiger Kontakt." - -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Freunde von %s" - -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Keine Freunde zum Anzeigen." - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." - -#: mod/events.php:317 -msgid "l, F j" -msgstr "l, F j" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" - -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 -msgid "link to source" -msgstr "Link zum Originalbeitrag" - -#: mod/events.php:396 include/identity.php:667 include/nav.php:80 -#: view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Veranstaltungen" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Vorherige" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Nächste" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Veranstaltungsdetails" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "Anfangszeitpunkt und Titel werden benötigt" - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Benötigt" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "An Zeitzone des Betrachters anpassen" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Beschreibung" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Veranstaltung teilen" - -#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: object/Item.php:689 include/conversation.php:1089 -msgid "Preview" -msgstr "Vorschau" - -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 -#: object/Item.php:130 include/conversation.php:612 -msgid "Select" -msgstr "Auswählen" - -#: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Das Profil von %s auf %s betrachten." - -#: mod/content.php:483 mod/content.php:866 object/Item.php:342 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s von %s" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" - -#: mod/content.php:605 object/Item.php:389 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" - -#: mod/content.php:607 object/Item.php:391 object/Item.php:404 -#: include/text.php:2038 -msgid "comment" -msgid_plural "comments" -msgstr[0] "Kommentar" -msgstr[1] "Kommentare" - -#: mod/content.php:608 boot.php:765 object/Item.php:392 -#: include/contact_widgets.php:205 include/items.php:5134 -msgid "show more" -msgstr "mehr anzeigen" - -#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" -msgstr "Private Nachricht" - -#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 -msgid "I like this (toggle)" -msgstr "Ich mag das (toggle)" - -#: mod/content.php:686 object/Item.php:232 -msgid "like" -msgstr "mag ich" - -#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 -msgid "I don't like this (toggle)" -msgstr "Ich mag das nicht (toggle)" - -#: mod/content.php:687 object/Item.php:233 -msgid "dislike" -msgstr "mag ich nicht" - -#: mod/content.php:689 object/Item.php:235 -msgid "Share this" -msgstr "Weitersagen" - -#: mod/content.php:689 object/Item.php:235 -msgid "share" -msgstr "Teilen" - -#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 object/Item.php:677 -msgid "This is you" -msgstr "Das bist Du" - -#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 -#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 -msgid "Comment" -msgstr "Kommentar" - -#: mod/content.php:713 object/Item.php:681 -msgid "Bold" -msgstr "Fett" - -#: mod/content.php:714 object/Item.php:682 -msgid "Italic" -msgstr "Kursiv" - -#: mod/content.php:715 object/Item.php:683 -msgid "Underline" -msgstr "Unterstrichen" - -#: mod/content.php:716 object/Item.php:684 -msgid "Quote" -msgstr "Zitat" - -#: mod/content.php:717 object/Item.php:685 -msgid "Code" -msgstr "Code" - -#: mod/content.php:718 object/Item.php:686 -msgid "Image" -msgstr "Bild" - -#: mod/content.php:719 object/Item.php:687 -msgid "Link" -msgstr "Link" - -#: mod/content.php:720 object/Item.php:688 -msgid "Video" -msgstr "Video" - -#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 -msgid "Edit" -msgstr "Bearbeiten" - -#: mod/content.php:755 object/Item.php:196 -msgid "add star" -msgstr "markieren" - -#: mod/content.php:756 object/Item.php:197 -msgid "remove star" -msgstr "Markierung entfernen" - -#: mod/content.php:757 object/Item.php:198 -msgid "toggle star status" -msgstr "Markierung umschalten" - -#: mod/content.php:760 object/Item.php:201 -msgid "starred" -msgstr "markiert" - -#: mod/content.php:761 object/Item.php:221 -msgid "add tag" -msgstr "Tag hinzufügen" - -#: mod/content.php:765 object/Item.php:134 -msgid "save to folder" -msgstr "In Ordner speichern" - -#: mod/content.php:856 object/Item.php:330 -msgid "to" -msgstr "zu" - -#: mod/content.php:857 object/Item.php:332 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: mod/content.php:858 object/Item.php:333 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Konto löschen" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Bitte gib Dein Passwort zur Verifikation ein:" - -#: mod/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica-Server für soziale Netzwerke – Setup" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr "Verbindung zur Datenbank gescheitert." - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "Tabelle konnte nicht angelegt werden." - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "Die Datenbank Deiner Friendicaseite wurde installiert." - -#: mod/install.php:140 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." - -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Lies bitte die \"INSTALL.txt\"." - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "Die Datenbank wird bereits verwendet." - -#: mod/install.php:205 -msgid "System check" -msgstr "Systemtest" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Noch einmal testen" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "Datenbankverbindung" - -#: mod/install.php:230 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können." - -#: mod/install.php:231 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest." - -#: mod/install.php:232 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst." - -#: mod/install.php:236 -msgid "Database Server Name" -msgstr "Datenbank-Server" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "Datenbank-Nutzer" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "Datenbank-Passwort" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "Datenbank-Name" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "E-Mail-Adresse des Administrators" - -#: mod/install.php:240 mod/install.php:279 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst." - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "Bitte wähle die Standardzeitzone Deiner Webseite" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "Server-Einstellungen" - -#: mod/install.php:323 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." - -#: mod/install.php:324 -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. See 'Activating scheduled tasks'" -msgstr "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "Pfad zu PHP" - -#: mod/install.php:328 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." - -#: mod/install.php:333 -msgid "Command line PHP" -msgstr "Kommandozeilen-PHP" - -#: mod/install.php:342 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" - -#: mod/install.php:343 -msgid "Found PHP version: " -msgstr "Gefundene PHP Version:" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "PHP CLI Binary" - -#: mod/install.php:356 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert." - -#: mod/install.php:357 -msgid "This is required for message delivery to work." -msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." - -#: mod/install.php:359 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:380 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" - -#: mod/install.php:381 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." - -#: mod/install.php:383 -msgid "Generate encryption keys" -msgstr "Schlüssel erzeugen" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "PHP: libCurl-Modul" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "PHP: GD-Grafikmodul" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "PHP: OpenSSL-Modul" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "PHP: mysqli-Modul" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "PHP: mb_string-Modul" - -#: mod/install.php:399 mod/install.php:401 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: mod/install.php:399 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." - -#: mod/install.php:407 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." - -#: mod/install.php:411 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." - -#: mod/install.php:415 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." - -#: mod/install.php:419 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert." - -#: mod/install.php:423 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert." - -#: mod/install.php:440 -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 Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun." - -#: mod/install.php:441 -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 "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast." - -#: mod/install.php:442 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst." - -#: mod/install.php:443 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt." - -#: mod/install.php:446 -msgid ".htconfig.php is writable" -msgstr "Schreibrechte auf .htconfig.php" - -#: mod/install.php:456 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen." - -#: mod/install.php:457 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." - -#: mod/install.php:458 -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) Schreibrechte zu diesem Verzeichnis hat." - -#: mod/install.php:459 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten." - -#: mod/install.php:462 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 ist schreibbar" - -#: mod/install.php:478 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers." - -#: mod/install.php:480 -msgid "Url rewrite is working" -msgstr "URL rewrite funktioniert" - -#: mod/install.php:489 -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 Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen." - -#: mod/install.php:528 -msgid "

What next

" -msgstr "

Wie geht es weiter?

" - -#: mod/install.php:529 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Konnte Deinen Heimatort nicht bestimmen." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Kein Empfänger." - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." - -#: mod/help.php:31 -msgid "Help:" -msgstr "Hilfe:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Hilfe" - -#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 -msgid "Not Found" -msgstr "Nicht gefunden" - -#: mod/help.php:45 index.php:272 -msgid "Page not found." -msgstr "Seite nicht gefunden." - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heißt %2$s herzlich willkommen" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen zu %s" - -#: mod/wall_attach.php:83 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." - -#: mod/wall_attach.php:83 -msgid "Or - did you try to upload an empty file?" -msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Die Datei ist größer als das erlaubte Limit von %s" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "Hochladen der Datei fehlgeschlagen." - -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Profilübereinstimmungen" - -#: mod/match.php:22 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu." - -#: mod/match.php:64 -msgid "is interested in:" -msgstr "ist interessiert an:" - -#: mod/share.php:38 -msgid "link" -msgstr "Link" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Nicht verfügbar." - -#: mod/community.php:32 include/nav.php:137 include/nav.php:139 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Gemeinschaft" - -#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +#: mod/search.php:199 mod/community.php:62 mod/community.php:71 msgid "No results." msgstr "Keine Ergebnisse." -#: mod/settings.php:34 mod/photos.php:102 -msgid "everybody" -msgstr "jeder" +#: mod/search.php:205 +#, php-format +msgid "Items tagged with: %s" +msgstr "Beiträge markiert mit: %s" + +#: mod/search.php:207 +#, php-format +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limit für Einladungen erreicht." + +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Keine gültige Email Adresse." + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Zustellung der Nachricht fehlgeschlagen." + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." + +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren Einladungen" + +#: mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website." + +#: mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst." + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" + +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Du benötigst den folgenden Einladungscode: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" #: mod/settings.php:47 msgid "Additional features" @@ -3840,7 +3870,7 @@ msgstr "Zusätzliche Features" msgid "Display" msgstr "Anzeige" -#: mod/settings.php:60 mod/settings.php:835 +#: mod/settings.php:60 mod/settings.php:837 msgid "Social Networks" msgstr "Soziale Netzwerke" @@ -4018,869 +4048,494 @@ msgid "" "unknown user." msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,." -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:779 +msgid "Your legacy GNU Social account" +msgstr "Dein alter GNU Social Account" + +#: mod/settings.php:781 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." + +#: mod/settings.php:784 +msgid "Repair OStatus subscriptions" +msgstr "OStatus Abonnements reparieren" + +#: mod/settings.php:793 mod/settings.php:794 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" -#: mod/settings.php:791 mod/dfrn_request.php:856 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:793 mod/settings.php:794 msgid "enabled" msgstr "eingeschaltet" -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:793 mod/settings.php:794 msgid "disabled" msgstr "ausgeschaltet" -#: mod/settings.php:792 +#: mod/settings.php:794 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:828 +#: mod/settings.php:830 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: mod/settings.php:840 +#: mod/settings.php:842 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: mod/settings.php:841 +#: mod/settings.php:843 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an." -#: mod/settings.php:842 +#: mod/settings.php:844 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail Check" -#: mod/settings.php:844 +#: mod/settings.php:846 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: mod/settings.php:845 +#: mod/settings.php:847 msgid "IMAP port:" msgstr "IMAP-Port:" -#: mod/settings.php:846 +#: mod/settings.php:848 msgid "Security:" msgstr "Sicherheit:" -#: mod/settings.php:846 mod/settings.php:851 +#: mod/settings.php:848 mod/settings.php:853 msgid "None" msgstr "Keine" -#: mod/settings.php:847 +#: mod/settings.php:849 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: mod/settings.php:848 +#: mod/settings.php:850 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: mod/settings.php:849 +#: mod/settings.php:851 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: mod/settings.php:850 +#: mod/settings.php:852 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Action after import:" msgstr "Aktion nach Import:" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: mod/settings.php:852 +#: mod/settings.php:854 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: mod/settings.php:933 +#: mod/settings.php:935 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: mod/settings.php:939 mod/settings.php:955 +#: mod/settings.php:941 mod/settings.php:957 msgid "Display Theme:" msgstr "Theme:" -#: mod/settings.php:940 +#: mod/settings.php:942 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: mod/settings.php:941 +#: mod/settings.php:943 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: mod/settings.php:941 +#: mod/settings.php:943 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimal 10 Sekunden, kein Maximum" -#: mod/settings.php:942 +#: mod/settings.php:944 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: mod/settings.php:942 mod/settings.php:943 +#: mod/settings.php:944 mod/settings.php:945 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: mod/settings.php:943 +#: mod/settings.php:945 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" -#: mod/settings.php:944 +#: mod/settings.php:946 msgid "Don't show emoticons" msgstr "Keine Smilies anzeigen" -#: mod/settings.php:945 +#: mod/settings.php:947 msgid "Don't show notices" msgstr "Info-Popups nicht anzeigen" -#: mod/settings.php:946 +#: mod/settings.php:948 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: mod/settings.php:947 +#: mod/settings.php:949 msgid "Automatic updates only at the top of the network page" msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist." -#: mod/settings.php:949 view/theme/cleanzero/config.php:82 -#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 -#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 -#: view/theme/duepuntozero/config.php:61 +#: mod/settings.php:951 view/theme/diabook/config.php:150 +#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 +#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 +#: view/theme/cleanzero/config.php:82 msgid "Theme settings" msgstr "Themeneinstellungen" -#: mod/settings.php:1025 +#: mod/settings.php:1027 msgid "User Types" msgstr "Nutzer Art" -#: mod/settings.php:1026 +#: mod/settings.php:1028 msgid "Community Types" msgstr "Gemeinschafts Art" -#: mod/settings.php:1027 +#: mod/settings.php:1029 msgid "Normal Account Page" msgstr "Normales Konto" -#: mod/settings.php:1028 +#: mod/settings.php:1030 msgid "This account is a normal personal profile" msgstr "Dieses Konto ist ein normales persönliches Profil" -#: mod/settings.php:1031 +#: mod/settings.php:1033 msgid "Soapbox Page" msgstr "Marktschreier-Konto" -#: mod/settings.php:1032 +#: mod/settings.php:1034 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" -#: mod/settings.php:1035 +#: mod/settings.php:1037 msgid "Community Forum/Celebrity Account" msgstr "Forum/Promi-Konto" -#: mod/settings.php:1036 +#: mod/settings.php:1038 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" -#: mod/settings.php:1039 +#: mod/settings.php:1041 msgid "Automatic Friend Page" msgstr "Automatische Freunde Seite" -#: mod/settings.php:1040 +#: mod/settings.php:1042 msgid "Automatically approve all connection/friend requests as friends" msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" -#: mod/settings.php:1043 +#: mod/settings.php:1045 msgid "Private Forum [Experimental]" msgstr "Privates Forum [Versuchsstadium]" -#: mod/settings.php:1044 +#: mod/settings.php:1046 msgid "Private forum - approved members only" msgstr "Privates Forum, nur für Mitglieder" -#: mod/settings.php:1056 +#: mod/settings.php:1058 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1056 +#: mod/settings.php:1058 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: mod/settings.php:1066 +#: mod/settings.php:1068 msgid "Publish your default profile in your local site directory?" msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" -#: mod/settings.php:1072 +#: mod/settings.php:1074 msgid "Publish your default profile in the global social directory?" msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" -#: mod/settings.php:1080 +#: mod/settings.php:1082 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" -#: mod/settings.php:1084 include/acl_selectors.php:330 +#: mod/settings.php:1086 include/acl_selectors.php:330 msgid "Hide your profile details from unknown viewers?" msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" -#: mod/settings.php:1084 +#: mod/settings.php:1086 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich" -#: mod/settings.php:1089 +#: mod/settings.php:1091 msgid "Allow friends to post to your profile page?" msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" -#: mod/settings.php:1095 +#: mod/settings.php:1097 msgid "Allow friends to tag your posts?" msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" -#: mod/settings.php:1101 +#: mod/settings.php:1103 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:1107 +#: mod/settings.php:1109 msgid "Permit unknown people to send you private mail?" msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" -#: mod/settings.php:1115 +#: mod/settings.php:1117 msgid "Profile is not published." msgstr "Profil ist nicht veröffentlicht." -#: mod/settings.php:1123 +#: mod/settings.php:1125 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." -#: mod/settings.php:1130 +#: mod/settings.php:1132 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: mod/settings.php:1130 +#: mod/settings.php:1132 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: mod/settings.php:1131 +#: mod/settings.php:1133 msgid "Advanced expiration settings" msgstr "Erweiterte Verfallseinstellungen" -#: mod/settings.php:1132 +#: mod/settings.php:1134 msgid "Advanced Expiration" msgstr "Erweitertes Verfallen" -#: mod/settings.php:1133 +#: mod/settings.php:1135 msgid "Expire posts:" msgstr "Beiträge verfallen lassen:" -#: mod/settings.php:1134 +#: mod/settings.php:1136 msgid "Expire personal notes:" msgstr "Persönliche Notizen verfallen lassen:" -#: mod/settings.php:1135 +#: mod/settings.php:1137 msgid "Expire starred posts:" msgstr "Markierte Beiträge verfallen lassen:" -#: mod/settings.php:1136 +#: mod/settings.php:1138 msgid "Expire photos:" msgstr "Fotos verfallen lassen:" -#: mod/settings.php:1137 +#: mod/settings.php:1139 msgid "Only expire posts by others:" msgstr "Nur Beiträge anderer verfallen:" -#: mod/settings.php:1163 +#: mod/settings.php:1165 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: mod/settings.php:1171 +#: mod/settings.php:1173 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: mod/settings.php:1172 mod/register.php:271 -msgid "New Password:" -msgstr "Neues Passwort:" - -#: mod/settings.php:1173 mod/register.php:272 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: mod/settings.php:1173 +#: mod/settings.php:1175 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" -#: mod/settings.php:1174 +#: mod/settings.php:1176 msgid "Current Password:" msgstr "Aktuelles Passwort:" -#: mod/settings.php:1174 mod/settings.php:1175 +#: mod/settings.php:1176 mod/settings.php:1177 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" -#: mod/settings.php:1175 +#: mod/settings.php:1177 msgid "Password:" msgstr "Passwort:" -#: mod/settings.php:1179 +#: mod/settings.php:1181 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: mod/settings.php:1180 include/identity.php:538 +#: mod/settings.php:1182 include/identity.php:539 msgid "Full Name:" msgstr "Kompletter Name:" -#: mod/settings.php:1181 +#: mod/settings.php:1183 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: mod/settings.php:1182 +#: mod/settings.php:1184 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: mod/settings.php:1183 +#: mod/settings.php:1185 msgid "Default Post Location:" msgstr "Standardstandort:" -#: mod/settings.php:1184 +#: mod/settings.php:1186 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: mod/settings.php:1187 +#: mod/settings.php:1189 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: mod/settings.php:1189 +#: mod/settings.php:1191 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" -#: mod/settings.php:1189 mod/settings.php:1219 +#: mod/settings.php:1191 mod/settings.php:1221 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: mod/settings.php:1190 +#: mod/settings.php:1192 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: mod/settings.php:1191 +#: mod/settings.php:1193 msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538 -msgid "Show to Groups" -msgstr "Zeige den Gruppen" - -#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539 -msgid "Show to Contacts" -msgstr "Zeige den Kontakten" - -#: mod/settings.php:1202 +#: mod/settings.php:1204 msgid "Default Private Post" msgstr "Privater Standardbeitrag" -#: mod/settings.php:1203 +#: mod/settings.php:1205 msgid "Default Public Post" msgstr "Öffentlicher Standardbeitrag" -#: mod/settings.php:1207 +#: mod/settings.php:1209 msgid "Default Permissions for New Posts" msgstr "Standardberechtigungen für neue Beiträge" -#: mod/settings.php:1219 +#: mod/settings.php:1221 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" -#: mod/settings.php:1222 +#: mod/settings.php:1224 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: mod/settings.php:1223 +#: mod/settings.php:1225 msgid "By default post a status message when:" msgstr "Standardmäßig eine Statusnachricht posten, wenn:" -#: mod/settings.php:1224 +#: mod/settings.php:1226 msgid "accepting a friend request" msgstr "– Du eine Kontaktanfrage akzeptierst" -#: mod/settings.php:1225 +#: mod/settings.php:1227 msgid "joining a forum/community" msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" -#: mod/settings.php:1226 +#: mod/settings.php:1228 msgid "making an interesting profile change" msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" -#: mod/settings.php:1227 +#: mod/settings.php:1229 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden wenn:" -#: mod/settings.php:1228 +#: mod/settings.php:1230 msgid "You receive an introduction" msgstr "– Du eine Kontaktanfrage erhältst" -#: mod/settings.php:1229 +#: mod/settings.php:1231 msgid "Your introductions are confirmed" msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" -#: mod/settings.php:1230 +#: mod/settings.php:1232 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf Deine Pinnwand schreibt" -#: mod/settings.php:1231 +#: mod/settings.php:1233 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: mod/settings.php:1232 +#: mod/settings.php:1234 msgid "You receive a private message" msgstr "– Du eine private Nachricht erhältst" -#: mod/settings.php:1233 +#: mod/settings.php:1235 msgid "You receive a friend suggestion" msgstr "– Du eine Empfehlung erhältst" -#: mod/settings.php:1234 +#: mod/settings.php:1236 msgid "You are tagged in a post" msgstr "– Du in einem Beitrag erwähnt wirst" -#: mod/settings.php:1235 +#: mod/settings.php:1237 msgid "You are poked/prodded/etc. in a post" msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" -#: mod/settings.php:1237 +#: mod/settings.php:1239 msgid "Activate desktop notifications" msgstr "Desktop Benachrichtigungen einschalten" -#: mod/settings.php:1237 +#: mod/settings.php:1239 msgid "Show desktop popup on new notifications" msgstr "Desktop Benachrichtigungen einschalten" -#: mod/settings.php:1239 +#: mod/settings.php:1241 msgid "Text-only notification emails" msgstr "Benachrichtigungs E-Mail als Rein-Text." -#: mod/settings.php:1241 +#: mod/settings.php:1243 msgid "Send text only notification emails, without the html part" msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" -#: mod/settings.php:1243 +#: mod/settings.php:1245 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: mod/settings.php:1244 +#: mod/settings.php:1246 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: mod/settings.php:1247 +#: mod/settings.php:1249 msgid "Relocate" msgstr "Umziehen" -#: mod/settings.php:1248 +#: mod/settings.php:1250 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button." -#: mod/settings.php:1249 +#: mod/settings.php:1251 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." +#: mod/display.php:505 +msgid "Item has been removed." +msgstr "Eintrag wurde entfernt." -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#: mod/dirfind.php:36 #, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" -msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" +msgid "People Search - %s" +msgstr "Personensuche - %s" -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Kontaktanfrage abgeschlossen." +#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 +#: include/identity.php:188 include/contact_widgets.php:10 +msgid "Connect" +msgstr "Verbinden" -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Nicht behebbarer Protokollfehler." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Maßnahmen zum Spamschutz wurden ergriffen." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Ungültiger Locator" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Ungültige E-Mail-Adresse." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Du hast Dich hier bereits vorgestellt." - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist." - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ungültige Profil-URL." - -#: mod/dfrn_request.php:507 include/follow.php:70 -msgid "Disallowed profile URL." -msgstr "Nicht erlaubte Profil-URL." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Bestätigen" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Verberge diesen Kontakt" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Willkommen zurück %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" - -#: mod/dfrn_request.php:840 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " -"join us today." -msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." - -#: mod/dfrn_request.php:845 -msgid "Friend/Connection Request" -msgstr "Freundschafts-/Kontaktanfrage" - -#: mod/dfrn_request.php:846 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:854 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:855 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:857 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste." - -#: mod/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." - -#: mod/register.php:97 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." - -#: mod/register.php:107 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." - -#: mod/register.php:188 mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." - -#: mod/register.php:216 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst." - -#: mod/register.php:217 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." - -#: mod/register.php:218 -msgid "Your OpenID (optional): " -msgstr "Deine OpenID (optional): " - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "ID Deiner Einladung: " - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vollständiger Name (z.B. Max Mustermann): " - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "Deine E-Mail-Adresse: " - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "Leer lassen um das Passwort automatisch zu generieren." - -#: mod/register.php:273 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "Spitznamen wählen: " - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "Registrieren" - -#: mod/register.php:283 mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: mod/register.php:284 -msgid "Import your profile to this friendica instance" -msgstr "Importiere Dein Profil auf diese Friendica Instanz" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "System zur Wartung abgeschaltet" - -#: mod/search.php:100 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "Suche" - -#: mod/search.php:198 -#, php-format -msgid "Items tagged with: %s" -msgstr "Beiträge markiert mit: %s" - -#: mod/search.php:200 -#, php-format -msgid "Search results for: %s" -msgstr "Suchergebnisse für: %s" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Weltweites Verzeichnis" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Auf diesem Server suchen" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Verzeichnis" - -#: mod/directory.php:129 mod/profiles.php:747 -msgid "Age: " -msgstr "Alter: " - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Geschlecht:" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 -msgid "Status:" -msgstr "Status:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 -msgid "Homepage:" -msgstr "Homepage:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." - -#: mod/delegate.php:130 include/nav.php:179 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für die Seite" - -#: mod/delegate.php:132 -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. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Hinzufügen" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Keine Einträge." - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Keine gemeinsamen Kontakte." - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Account exportieren" - -#: mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Alles exportieren" - -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." - -#: mod/mood.php:62 include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s ist momentan %2$s" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "Stimmung" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Möchtest Du wirklich diese Empfehlung löschen?" - -#: mod/suggest.php:69 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: mod/suggest.php:76 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verbergen" +#: mod/dirfind.php:141 mod/match.php:77 +msgid "No matches" +msgstr "Keine Übereinstimmungen" #: mod/profiles.php:37 msgid "Profile deleted." @@ -5089,7 +4744,7 @@ msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" msgid "Since [date]:" msgstr "Seit [Datum]:" -#: mod/profiles.php:711 include/identity.php:569 +#: mod/profiles.php:711 include/identity.php:570 msgid "Sexual Preference:" msgstr "Sexuelle Vorlieben:" @@ -5097,11 +4752,11 @@ msgstr "Sexuelle Vorlieben:" msgid "Homepage URL:" msgstr "Adresse der Homepage:" -#: mod/profiles.php:713 include/identity.php:573 +#: mod/profiles.php:713 include/identity.php:574 msgid "Hometown:" msgstr "Heimatort:" -#: mod/profiles.php:714 include/identity.php:577 +#: mod/profiles.php:714 include/identity.php:578 msgid "Political Views:" msgstr "Politische Ansichten:" @@ -5117,11 +4772,11 @@ msgstr "Öffentliche Schlüsselwörter:" msgid "Private Keywords:" msgstr "Private Schlüsselwörter:" -#: mod/profiles.php:718 include/identity.php:585 +#: mod/profiles.php:718 include/identity.php:586 msgid "Likes:" msgstr "Likes:" -#: mod/profiles.php:719 include/identity.php:587 +#: mod/profiles.php:719 include/identity.php:588 msgid "Dislikes:" msgstr "Dislikes:" @@ -5183,6 +4838,10 @@ msgid "" "be visible to anybody using the internet." msgstr "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." +#: mod/profiles.php:747 mod/directory.php:129 +msgid "Age: " +msgstr "Alter: " + #: mod/profiles.php:800 msgid "Edit/Manage Profiles" msgstr "Bearbeite/Verwalte Profile" @@ -5207,153 +4866,284 @@ msgstr "sichtbar für jeden" msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Beitrag nicht gefunden" +#: mod/share.php:38 +msgid "link" +msgstr "Link" -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Beitrag bearbeiten" +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Account exportieren" -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "Bild hochladen" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "Weblink" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "Video-Link" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "Audio-Link" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "Deinen Standort festlegen" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "Ort setzen" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "Ort löschen" - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "Cc: E-Mail-Addressen" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Titel setzen" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Z.B.: bob@example.com, mary@example.com" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Dies ist Friendica, Version" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "die unter folgender Webadresse zu finden ist" - -#: mod/friendica.php:62 +#: mod/uexport.php:77 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Alles exportieren" -#: mod/friendica.php:64 -msgid "the bugtracker at github" -msgstr "dem Bugtracker auf github" - -#: mod/friendica.php:65 +#: mod/uexport.php:78 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Erweiterungen/Apps" +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit Dir in Kontakt treten" -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Keine Plugins/Erweiterungen/Apps installiert" +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "{0} schickte Dir eine Nachricht" -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Verbindung der Applikation autorisieren" +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Keine Neuigkeiten" -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Bitte melde Dich an um fortzufahren." +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Bereinige Benachrichtigungen" -#: mod/api.php:104 +#: mod/community.php:23 +msgid "Not available." +msgstr "Nicht verfügbar." + +#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 +#: include/nav.php:139 +msgid "Community" +msgstr "Gemeinschaft" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "In diesem Ordner speichern:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- auswählen -" + +#: mod/wall_attach.php:83 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." + +#: mod/wall_attach.php:83 +msgid "Or - did you try to upload an empty file?" +msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" + +#: mod/wall_attach.php:94 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Die Datei ist größer als das erlaubte Limit von %s" + +#: mod/wall_attach.php:145 mod/wall_attach.php:161 +msgid "File upload failed." +msgstr "Hochladen der Datei fehlgeschlagen." + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Bezeichner." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Editor für die Profil-Sichtbarkeit" + +#: mod/profperm.php:106 mod/group.php:222 +msgid "Click on a contact to add or remove." +msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Sichtbar für" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Möchtest Du wirklich diese Empfehlung löschen?" + +#: mod/suggest.php:69 view/theme/diabook/theme.php:527 +#: include/contact_widgets.php:35 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" + +#: mod/suggest.php:76 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 den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verbergen" -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Sichtbar für:" +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Zugriff verweigert." -#: mod/notes.php:44 include/identity.php:675 +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "Erneuern der OStatus Abonements" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Fehler" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "Erledigt" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s heißt %2$s herzlich willkommen" + +#: mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Verwalte Identitäten und/oder Seiten" + +#: mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast." + +#: mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten aus: " + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." + +#: mod/delegate.php:130 include/nav.php:179 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für die Seite" + +#: mod/delegate.php:132 +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. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Vorhandene Seitenmanager" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Hinzufügen" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Keine Einträge." + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Keine Kontakte." + +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View Contacts" +msgstr "Kontakte anzeigen" + +#: mod/notes.php:44 include/identity.php:676 msgid "Personal Notes" msgstr "Persönliche Notizen" -#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Anstupsen" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Empfänger" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Was willst Du mit dem Empfänger machen:" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Weltweites Verzeichnis" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Auf diesem Server suchen" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Verzeichnis" + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Geschlecht:" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 +msgid "Status:" +msgstr "Status:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 +msgid "Homepage:" +msgstr "Homepage:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." + +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "OStatus Kontakten folgen" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "Keine Kontakte gefunden." + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "Konnte die Kontaktinformationen nicht einholen." + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen." + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "Erfolg" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "Fehlgeschlagen" + +#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 msgid "l F d, Y \\@ g:i A" msgstr "l, d. F Y\\, H:i" @@ -5386,303 +5176,440 @@ msgstr "Umgerechnete lokale Zeit: %s" msgid "Please select your timezone:" msgstr "Bitte wähle Deine Zeitzone:" -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Anstupsen" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Beitrag erfolgreich veröffentlicht." -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Empfänger" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Was willst Du mit dem Empfänger machen:" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limit für Einladungen erreicht." - -#: mod/invite.php:49 +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Keine gültige Email Adresse." +msgid "Image size reduction [%s] failed." +msgstr "Verkleinern der Bildgröße von [%s] scheiterte." -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Zustellung der Nachricht fehlgeschlagen." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren Einladungen" - -#: mod/invite.php:120 -#, php-format +#: mod/profile_photo.php:118 msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." -#: mod/invite.php:122 -#, php-format +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Bild konnte nicht verarbeitet werden" + +#: mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Datei hochladen:" + +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Profil auswählen:" + +#: mod/profile_photo.php:245 +#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 +msgid "Upload" +msgstr "Hochladen" + +#: mod/profile_photo.php:248 +msgid "or" +msgstr "oder" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "diesen Schritt überspringen" + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "wähle ein Foto aus deinen Fotoalben" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Bild zurechtschneiden" + +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Bearbeitung abgeschlossen" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Bild erfolgreich hochgeladen." + +#: mod/install.php:119 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica-Server für soziale Netzwerke – Setup" + +#: mod/install.php:125 +msgid "Could not connect to database." +msgstr "Verbindung zur Datenbank gescheitert." + +#: mod/install.php:129 +msgid "Could not create table." +msgstr "Tabelle konnte nicht angelegt werden." + +#: mod/install.php:135 +msgid "Your Friendica site database has been installed." +msgstr "Die Datenbank Deiner Friendicaseite wurde installiert." + +#: mod/install.php:140 msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website." +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." -#: mod/invite.php:123 -#, php-format +#: mod/install.php:141 mod/install.php:208 mod/install.php:537 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Lies bitte die \"INSTALL.txt\"." + +#: mod/install.php:153 +msgid "Database already in use." +msgstr "Die Datenbank wird bereits verwendet." + +#: mod/install.php:205 +msgid "System check" +msgstr "Systemtest" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Noch einmal testen" + +#: mod/install.php:229 +msgid "Database connection" +msgstr "Datenbankverbindung" + +#: mod/install.php:230 msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst." +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können." -#: mod/invite.php:126 +#: mod/install.php:231 msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest." -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" - -#: mod/invite.php:135 +#: mod/install.php:232 msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst." -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Du benötigst den folgenden Einladungscode: $invite_code" +#: mod/install.php:236 +msgid "Database Server Name" +msgstr "Datenbank-Server" -#: mod/invite.php:137 +#: mod/install.php:237 +msgid "Database Login Name" +msgstr "Datenbank-Nutzer" + +#: mod/install.php:238 +msgid "Database Login Password" +msgstr "Datenbank-Passwort" + +#: mod/install.php:239 +msgid "Database Name" +msgstr "Datenbank-Name" + +#: mod/install.php:240 mod/install.php:279 +msgid "Site administrator email address" +msgstr "E-Mail-Adresse des Administrators" + +#: mod/install.php:240 mod/install.php:279 msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst." -#: mod/invite.php:139 +#: mod/install.php:244 mod/install.php:282 +msgid "Please select a default timezone for your website" +msgstr "Bitte wähle die Standardzeitzone Deiner Webseite" + +#: mod/install.php:269 +msgid "Site settings" +msgstr "Server-Einstellungen" + +#: mod/install.php:323 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." + +#: mod/install.php:324 msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" +"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. See 'Activating scheduled tasks'" +msgstr "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'" -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Kontaktbilder" +#: mod/install.php:328 +msgid "PHP executable path" +msgstr "Pfad zu PHP" -#: mod/photos.php:84 include/identity.php:651 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Album löschen" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest Du wirklich dieses Foto löschen?" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s wurde von %3$s in %2$s getaggt" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "einem Foto" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "oder existierender Albumname: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Berechtigungen" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Privates Foto" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Foto betrachten" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Fotos ansehen" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Tags: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Tag entfernen]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Bildunterschrift" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: mod/photos.php:1522 +#: mod/install.php:328 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "Nicht rotieren" +#: mod/install.php:333 +msgid "Command line PHP" +msgstr "Kommandozeilen-PHP" -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" +#: mod/install.php:342 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" +#: mod/install.php:343 +msgid "Found PHP version: " +msgstr "Gefundene PHP Version:" -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Privates Foto" +#: mod/install.php:345 +msgid "PHP cli binary" +msgstr "PHP CLI Binary" -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Öffentliches Foto" +#: mod/install.php:356 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert." -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Teilen" +#: mod/install.php:357 +msgid "This is required for message delivery to work." +msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." + +#: mod/install.php:359 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:380 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" + +#: mod/install.php:381 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." + +#: mod/install.php:383 +msgid "Generate encryption keys" +msgstr "Schlüssel erzeugen" + +#: mod/install.php:390 +msgid "libCurl PHP module" +msgstr "PHP: libCurl-Modul" + +#: mod/install.php:391 +msgid "GD graphics PHP module" +msgstr "PHP: GD-Grafikmodul" + +#: mod/install.php:392 +msgid "OpenSSL PHP module" +msgstr "PHP: OpenSSL-Modul" + +#: mod/install.php:393 +msgid "mysqli PHP module" +msgstr "PHP: mysqli-Modul" + +#: mod/install.php:394 +msgid "mb_string PHP module" +msgstr "PHP: mb_string-Modul" + +#: mod/install.php:395 +msgid "mcrypt PHP module" +msgstr "PHP mcrypt Modul" + +#: mod/install.php:400 mod/install.php:402 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:400 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." + +#: mod/install.php:408 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." + +#: mod/install.php:412 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." + +#: mod/install.php:416 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." + +#: mod/install.php:420 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert." + +#: mod/install.php:424 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert." + +#: mod/install.php:428 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Fehler: Das mcrypt Modul von PHP ist nicht installiert" + +#: mod/install.php:447 +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 Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun." + +#: mod/install.php:448 +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 "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast." + +#: mod/install.php:449 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst." + +#: mod/install.php:450 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt." + +#: mod/install.php:453 +msgid ".htconfig.php is writable" +msgstr "Schreibrechte auf .htconfig.php" + +#: mod/install.php:463 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen." + +#: mod/install.php:464 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." + +#: mod/install.php:465 +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) Schreibrechte zu diesem Verzeichnis hat." + +#: mod/install.php:466 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten." + +#: mod/install.php:469 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 ist schreibbar" + +#: mod/install.php:485 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers." + +#: mod/install.php:487 +msgid "Url rewrite is working" +msgstr "URL rewrite funktioniert" + +#: mod/install.php:496 +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 Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen." + +#: mod/install.php:535 +msgid "

What next

" +msgstr "

Wie geht es weiter?

" + +#: mod/install.php:536 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." #: mod/p.php:9 msgid "Not Extended" msgstr "Nicht erweitert." +#: mod/group.php:29 +msgid "Group created." +msgstr "Gruppe erstellt." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Konnte die Gruppe nicht erstellen." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Gruppe nicht gefunden." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Gruppenname geändert." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Gruppe speichern" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Eine Gruppe von Kontakten/Freunden anlegen." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Gruppenname:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Gruppe entfernt." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Konnte die Gruppe nicht entfernen." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Gruppeneditor" + +#: mod/group.php:190 +msgid "Members" +msgstr "Mitglieder" + +#: mod/content.php:119 mod/network.php:532 +msgid "No such group" +msgstr "Es gibt keine solche Gruppe" + +#: mod/content.php:130 mod/network.php:549 +msgid "Group is empty" +msgstr "Gruppe ist leer" + +#: mod/content.php:135 mod/network.php:560 +#, php-format +msgid "Group: %s" +msgstr "Gruppe: %s" + +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" + #: mod/regmod.php:55 msgid "Account approved." msgstr "Konto freigegeben." @@ -5696,44 +5623,523 @@ msgstr "Registrierung für %s wurde zurückgezogen" msgid "Please login." msgstr "Bitte melde Dich an." -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Account umziehen" +#: mod/match.php:18 +msgid "Profile Match" +msgstr "Profilübereinstimmungen" -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." +#: mod/match.php:27 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu." -#: mod/uimport.php:68 +#: mod/match.php:69 +msgid "is interested in:" +msgstr "ist interessiert an:" + +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Konnte den Originalbeitrag nicht finden." + +#: mod/item.php:347 +msgid "Empty post discarded." +msgstr "Leerer Beitrag wurde verworfen." + +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." + +#: mod/item.php:989 +#, php-format msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." -#: mod/uimport.php:69 +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Du kannst sie online unter %s besuchen" + +#: mod/item.php:992 msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest." -#: mod/uimport.php:70 -msgid "Account file" -msgstr "Account Datei" +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s hat ein Update veröffentlicht." -#: mod/uimport.php:70 +#: mod/mood.php:62 include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s ist momentan %2$s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Stimmung" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden" + +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "Suchergebnisse für: %s" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "hinzufügen" + +#: mod/network.php:358 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortieren" + +#: mod/network.php:365 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: mod/network.php:368 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortieren" + +#: mod/network.php:378 +msgid "Posts that mention or involve you" +msgstr "Beiträge, in denen es um Dich geht" + +#: mod/network.php:385 +msgid "New" +msgstr "Neue" + +#: mod/network.php:388 +msgid "Activity Stream - by date" +msgstr "Aktivitäten-Stream - nach Datum" + +#: mod/network.php:395 +msgid "Shared Links" +msgstr "Geteilte Links" + +#: mod/network.php:398 +msgid "Interesting Links" +msgstr "Interessante Links" + +#: mod/network.php:405 +msgid "Starred" +msgstr "Markierte" + +#: mod/network.php:408 +msgid "Favourite Posts" +msgstr "Favorisierte Beiträge" + +#: mod/network.php:466 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." +msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." + +#: mod/network.php:469 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." + +#: mod/network.php:578 +#, php-format +msgid "Contact: %s" +msgstr "Kontakt: %s" + +#: mod/network.php:582 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." + +#: mod/network.php:587 +msgid "Invalid contact." +msgstr "Ungültiger Kontakt." + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Einstellungen zum Kontakt angewandt." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Konnte den Kontakt nicht aktualisieren." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Kontakteinstellungen reparieren" + +#: mod/crepair.php:142 msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Beitrag nicht verfügbar." +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Beitrag konnte nicht gefunden werden." +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Zurück zum Kontakteditor" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "Kein Spiegeln" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "Spiegeln als weitergeleitete Beiträge" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "Spiegeln als meine eigenen Beiträge" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Kontaktdaten neu laden" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Konto-Spitzname" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - überschreibt Name/Spitzname" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "Konto-URL" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "URL für Freundschaftsanfragen" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL für Bestätigungen von Freundschaftsanfragen" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "URL-Endpunkt für Benachrichtigungen" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "Pull/Feed-URL" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Neues Foto von dieser URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "Entfernte Konten" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "Spiegle Beiträge dieses Kontakts" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." + +#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: view/theme/diabook/theme.php:124 include/nav.php:77 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Deine Kontakte" + +#: view/theme/diabook/theme.php:126 include/nav.php:78 +msgid "Your photos" +msgstr "Deine Fotos" + +#: view/theme/diabook/theme.php:127 include/nav.php:80 +msgid "Your events" +msgstr "Deine Ereignisse" + +#: view/theme/diabook/theme.php:128 include/nav.php:81 +msgid "Personal notes" +msgstr "Persönliche Notizen" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Deine privaten Fotos" + +#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Foren" + +#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 +#: view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Community-Profile" + +#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 +#: view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Letzte Nutzer" + +#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 +#: view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Zuletzt gemocht" + +#: view/theme/diabook/theme.php:463 include/text.php:2032 +#: include/conversation.php:118 include/conversation.php:245 +msgid "event" +msgstr "Veranstaltung" + +#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 +#: view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Letzte Fotos" + +#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 +#: view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Freunde finden" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Ähnliche Interessen" + +#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Freunde einladen" + +#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 +#: view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Zoomfaktor der Earth Layer" + +#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitude (X) der Earth Layer" + +#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitude (Y) der Earth Layer" + +#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 +#: view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Hilfe oder @NewHere" + +#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 +#: view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Verbinde Dienste" + +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +#: include/acl_selectors.php:337 +msgid "don't show" +msgstr "nicht zeigen" + +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +#: include/acl_selectors.php:336 +msgid "show" +msgstr "zeigen" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" + +#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 +#: view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Schriftgröße für Beiträge und Kommentare festlegen" + +#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Liniengröße für Beiträge und Kommantare festlegen" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Auflösung für die Mittelspalte setzen" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Wähle Farbschema" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Zoomfaktor der Earth Layer" + +#: view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Stil auswählen" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Farbschema wählen" + +#: view/theme/duepuntozero/config.php:44 include/text.php:1768 +#: include/user.php:255 +msgid "default" +msgstr "Standard" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Variationen" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Ausrichtung" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Mitte" + +#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Farbschema" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Schriftgröße in Beiträgen" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Schriftgröße in Eingabefeldern" + +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Theme Breite festlegen" + +#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 +msgid "Click here to download" +msgstr "Zum Download hier klicken" + +#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 +#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 +msgid "Create new pull request" +msgstr "Neuer Pull Request" + +#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 +msgid "Reload active plugins" +msgstr "Aktive Plugins neu laden" + +#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 +msgid "Drop contact" +msgstr "Kontakt löschen" + +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 +msgid "Public projects on this node" +msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" + +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 +#, php-format +msgid "" +"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " +"undone." +msgstr "Möchtest du das Projekt '%s' löschen?\\n\\nDies kann nicht rückgängig gemacht werden." + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 +msgid "Visibility" +msgstr "Sichtbarkeit" + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 +msgid "Create" +msgstr "Erstellen" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 +msgid "No pull requests to show" +msgstr "Keine Pull Requests zum Anzeigen vorhanden" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 +msgid "opened by" +msgstr "geöffnet von" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 +msgid "closed" +msgstr "Geschlossen" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 +msgid "merged" +msgstr "merged" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 +msgid "Projects" +msgstr "Projekte" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 +msgid "add new" +msgstr "neue hinzufügen" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 +msgid "delete" +msgstr "löschen" + +#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 +#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 +#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 +msgid "Clone this project:" +msgstr "Dieses Projekt clonen" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 +msgid "New pull request" +msgstr "Neuer Pull Request" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 +msgid "Can't show you the diff at the moment. Sorry" +msgstr "Entschuldigung, aber ich kann dir die Unterschiede gerade nicht anzeigen." #: boot.php:763 msgid "Delete this item?" @@ -5792,144 +6198,6 @@ msgstr "Website Datenschutzerklärung" msgid "privacy policy" msgstr "Datenschutzerklärung" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Dieser Beitrag wurde bearbeitet." - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "Thread ignorieren" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "Thread nicht mehr ignorieren" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: object/Item.php:214 -msgid "ignored" -msgstr "Ignoriert" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "Kategorien:" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "Abgelegt unter:" - -#: object/Item.php:331 -msgid "via" -msgstr "via" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" - -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." - -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." - -#: include/auth.php:38 -msgid "Logged out." -msgstr "Abgemeldet." - -#: include/auth.php:128 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast." - -#: include/auth.php:128 include/user.php:75 -msgid "The error message was:" -msgstr "Die Fehlermeldung lautete:" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Neuen Kontakt hinzufügen" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Adresse oder Web-Link eingeben" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@example.com, http://example.com/barbara" - -#: include/contact_widgets.php:24 -#, 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:30 -msgid "Find People" -msgstr "Leute finden" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiel: Robert Morgenstein, Angeln" - -#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Ähnliche Interessen" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Zufälliges Profil" - -#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Freunde einladen" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "Netzwerke" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Alle Netzwerke" - -#: include/contact_widgets.php:104 include/features.php:60 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "Alles" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "Kategorien" - #: include/features.php:23 msgid "General Features" msgstr "Allgemeine Features" @@ -6067,6 +6335,10 @@ msgstr "Beitragskategorien" msgid "Add categories to your posts" msgstr "Eigene Beiträge mit Kategorien versehen" +#: include/features.php:60 include/contact_widgets.php:104 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + #: include/features.php:60 msgid "Ability to file posts under folders" msgstr "Beiträge in Ordnern speichern aktivieren" @@ -6095,517 +6367,35 @@ msgstr "Benachrichtigungen für Beiträge Stumm schalten" msgid "Ability to mute notifications for a thread" msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" -#: include/follow.php:75 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" +#: include/auth.php:38 +msgid "Logged out." +msgstr "Abgemeldet." -#: include/follow.php:102 +#: include/auth.php:128 include/user.php:75 msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast." -#: include/follow.php:103 include/follow.php:123 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "Die Fehlermeldung lautete:" -#: include/follow.php:121 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." +#: include/event.php:22 include/bb2diaspora.php:154 +msgid "Starts:" +msgstr "Beginnt:" -#: include/follow.php:125 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." - -#: include/follow.php:127 -msgid "No browser URL could be matched to this address." -msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." - -#: include/follow.php:129 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." - -#: include/follow.php:130 -msgid "Use mailto: in front of address to force email check." -msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." - -#: include/follow.php:136 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." - -#: include/follow.php:146 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können." - -#: include/follow.php:249 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." - -#: include/follow.php:302 -msgid "following" -msgstr "folgen" - -#: 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 "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen." - -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Voreingestellte Gruppe für neue Kontakte" - -#: include/group.php:226 -msgid "Everybody" -msgstr "Alle Kontakte" - -#: include/group.php:249 -msgid "edit" -msgstr "bearbeiten" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Gruppe bearbeiten" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "Kontakte in keiner Gruppe" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD oder MM-DD" - -#: include/datetime.php:256 -msgid "never" -msgstr "nie" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "vor weniger als einer Sekunde" - -#: include/datetime.php:272 -msgid "year" -msgstr "Jahr" - -#: include/datetime.php:272 -msgid "years" -msgstr "Jahre" - -#: include/datetime.php:273 -msgid "month" -msgstr "Monat" - -#: include/datetime.php:273 -msgid "months" -msgstr "Monate" - -#: include/datetime.php:274 -msgid "week" -msgstr "Woche" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "Wochen" - -#: include/datetime.php:275 -msgid "day" -msgstr "Tag" - -#: include/datetime.php:275 -msgid "days" -msgstr "Tage" - -#: include/datetime.php:276 -msgid "hour" -msgstr "Stunde" - -#: include/datetime.php:276 -msgid "hours" -msgstr "Stunden" - -#: include/datetime.php:277 -msgid "minute" -msgstr "Minute" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "Minuten" - -#: include/datetime.php:278 -msgid "second" -msgstr "Sekunde" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "Sekunden" - -#: include/datetime.php:287 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s her" - -#: include/datetime.php:459 include/items.php:2432 -#, php-format -msgid "%s's birthday" -msgstr "%ss Geburtstag" - -#: include/datetime.php:460 include/items.php:2433 -#, php-format -msgid "Happy Birthday %s" -msgstr "Herzlichen Glückwunsch %s" - -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 -msgid "Edit profile" -msgstr "Profil bearbeiten" - -#: include/identity.php:220 -msgid "Message" -msgstr "Nachricht" - -#: include/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "Profile" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/editieren" - -#: include/identity.php:341 -msgid "Network:" -msgstr "Netzwerk" - -#: include/identity.php:373 include/identity.php:459 -msgid "g A l F d" -msgstr "l, d. F G \\U\\h\\r" - -#: include/identity.php:374 include/identity.php:460 -msgid "F d" -msgstr "d. F" - -#: include/identity.php:419 include/identity.php:506 -msgid "[today]" -msgstr "[heute]" - -#: include/identity.php:431 -msgid "Birthday Reminders" -msgstr "Geburtstagserinnerungen" - -#: include/identity.php:432 -msgid "Birthdays this week:" -msgstr "Geburtstage diese Woche:" - -#: include/identity.php:493 -msgid "[No description]" -msgstr "[keine Beschreibung]" - -#: include/identity.php:517 -msgid "Event Reminders" -msgstr "Veranstaltungserinnerungen" - -#: include/identity.php:518 -msgid "Events this week:" -msgstr "Veranstaltungen diese Woche" - -#: include/identity.php:545 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:546 -msgid "j F" -msgstr "j F" - -#: include/identity.php:553 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: include/identity.php:557 -msgid "Age:" -msgstr "Alter:" - -#: include/identity.php:566 -#, php-format -msgid "for %1$d %2$s" -msgstr "für %1$d %2$s" - -#: include/identity.php:579 -msgid "Religion:" -msgstr "Religion:" - -#: include/identity.php:583 -msgid "Hobbies/Interests:" -msgstr "Hobbies/Interessen:" - -#: include/identity.php:590 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformationen und Soziale Netzwerke:" - -#: include/identity.php:592 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: include/identity.php:594 -msgid "Books, literature:" -msgstr "Literatur/Bücher:" - -#: include/identity.php:596 -msgid "Television:" -msgstr "Fernsehen:" - -#: include/identity.php:598 -msgid "Film/dance/culture/entertainment:" -msgstr "Filme/Tänze/Kultur/Unterhaltung:" - -#: include/identity.php:600 -msgid "Love/Romance:" -msgstr "Liebesleben:" - -#: include/identity.php:602 -msgid "Work/employment:" -msgstr "Arbeit/Beschäftigung:" - -#: include/identity.php:604 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: include/identity.php:632 include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: include/identity.php:635 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: include/identity.php:643 -msgid "Profile Details" -msgstr "Profildetails" - -#: include/identity.php:656 include/identity.php:659 include/nav.php:79 -msgid "Videos" -msgstr "Videos" - -#: include/identity.php:670 -msgid "Events and Calendar" -msgstr "Ereignisse und Kalender" - -#: include/identity.php:678 -msgid "Only You Can See This" -msgstr "Nur Du kannst das sehen" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "An E-Mail senden" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" - -#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "show" -msgstr "zeigen" - -#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "nicht zeigen" +#: include/event.php:32 include/bb2diaspora.php:162 +msgid "Finishes:" +msgstr "Endet:" #: include/message.php:15 include/message.php:173 msgid "[no subject]" msgstr "[kein Betreff]" -#: include/Contact.php:119 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: include/Contact.php:232 include/conversation.php:881 -msgid "Poke" -msgstr "Anstupsen" - -#: include/Contact.php:233 include/conversation.php:875 -msgid "View Status" -msgstr "Pinnwand anschauen" - -#: include/Contact.php:234 include/conversation.php:876 -msgid "View Profile" -msgstr "Profil anschauen" - -#: include/Contact.php:235 include/conversation.php:877 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: include/Contact.php:236 include/Contact.php:259 -#: include/conversation.php:878 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: include/Contact.php:237 include/Contact.php:259 -#: include/conversation.php:879 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Kontakt löschen" - -#: include/Contact.php:239 include/Contact.php:259 -#: include/conversation.php:880 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Willkommen " - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Bitte lade ein Profilbild hoch." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Willkommen zurück " - -#: include/security.php:375 -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 Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." - -#: include/conversation.php:118 include/conversation.php:245 -#: include/text.php:2032 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "Veranstaltung" - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "Nachricht/Beitrag" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" - -#: include/conversation.php:771 -msgid "remove" -msgstr "löschen" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: include/conversation.php:965 -msgid "and" -msgstr "und" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr " und %d andere" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen das nicht." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Bitte Link/URL zum Video einfügen:" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Bitte Link/URL zum Audio einfügen:" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Wo hältst Du Dich jetzt gerade auf?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Einträge löschen?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "Zugriffsrechte" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Poste an Gruppe" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Poste an Kontakte" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Privater Beitrag" - -#: include/network.php:959 -msgid "view full size" -msgstr "Volle Größe anzeigen" +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr " bei Last.fm" #: include/text.php:299 msgid "newer" @@ -6882,11 +6672,6 @@ msgstr "Auf separater Seite ansehen" msgid "view on separate page" msgstr "auf separater Seite ansehen" -#: include/text.php:1768 include/user.php:255 -#: view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "Standard" - #: include/text.php:1780 msgid "Select an alternate language" msgstr "Alternative Sprache auswählen" @@ -6903,303 +6688,6 @@ msgstr "Beitrag" msgid "Item filed" msgstr "Beitrag abgelegt" -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: include/bbcode.php:556 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:590 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s schrieb den folgenden Beitrag" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: include/notifier.php:830 include/delivery.php:456 -msgid "(no subject)" -msgstr "(kein Betreff)" - -#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 -msgid "noreply" -msgstr "noreply" - -#: include/dba_pdo.php:72 include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Unbekannt | Nicht kategorisiert" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Sofort blockieren" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Zwielichtig, Spammer, Selbstdarsteller" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ist mir bekannt, hab aber keine Meinung" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, wahrscheinlich harmlos" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Seriös, hat mein Vertrauen" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zott" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "StatusNet" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "Redmatrix" - -#: include/Scrape.php:603 -msgid " on Last.fm" -msgstr " bei Last.fm" - -#: include/bb2diaspora.php:154 include/event.php:22 -msgid "Starts:" -msgstr "Beginnt:" - -#: include/bb2diaspora.php:162 include/event.php:32 -msgid "Finishes:" -msgstr "Endet:" - -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "Zum Upgraden hier klicken." - -#: include/plugin.php:466 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." - -#: include/plugin.php:471 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." - -#: include/nav.php:73 -msgid "End this session" -msgstr "Diese Sitzung beenden" - -#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: include/nav.php:77 view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: include/nav.php:78 view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Deine Fotos" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "Deine Videos" - -#: include/nav.php:80 view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Deine Ereignisse" - -#: include/nav.php:81 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Persönliche Notizen" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "Deine persönlichen Notizen" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Anmelden" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Homepage" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Apps" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Addon Anwendungen, Dienstprogramme, Spiele" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Inhalt der Seite durchsuchen" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "Unterhaltungen auf dieser Seite" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "Unterhaltungen im Netzwerk" - -#: include/nav.php:141 -msgid "Directory" -msgstr "Verzeichnis" - -#: include/nav.php:141 -msgid "People directory" -msgstr "Nutzerverzeichnis" - -#: include/nav.php:143 -msgid "Information" -msgstr "Information" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "Informationen zu dieser Friendica Instanz" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "Unterhaltungen Deiner Kontakte" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "Netzwerk zurücksetzen" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "Netzwerk-Seite ohne Filter laden" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "Kontaktanfragen" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen anzeigen" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "Markiere alle Systembenachrichtigungen als gelesen" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "Private E-Mail" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "Eingang" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "Ausgang" - -#: include/nav.php:176 -msgid "Manage" -msgstr "Verwalten" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "Andere Seiten verwalten" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "Kontoeinstellungen" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "Profile Verwalten/Editieren" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "Freunde und Kontakte verwalten/editieren" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "Einstellungen der Seite und Konfiguration" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "Navigation" - -#: include/nav.php:197 -msgid "Site map" -msgstr "Sitemap" - #: include/api.php:321 include/api.php:332 include/api.php:441 #: include/api.php:1141 include/api.php:1143 msgid "User not found." @@ -7240,131 +6728,259 @@ msgstr "Ungültige Aktion" msgid "DB error" msgstr "DB Error" -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Du benötigst eine Einladung." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht überprüft werden." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Ungültige OpenID URL" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Bitte trage die erforderlichen Informationen ein." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Bitte verwende einen kürzeren Namen." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Der Name ist zu kurz." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen." - -#: include/user.php:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: include/user.php:156 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: include/user.php:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: include/user.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 -msgid "Friends" -msgstr "Freunde" - -#: include/user.php:385 +#: include/dba.php:56 include/dba_pdo.php:72 #, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." -#: include/user.php:389 +#: include/items.php:2445 include/datetime.php:459 #, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." +msgid "%s's birthday" +msgstr "%ss Geburtstag" -#: include/diaspora.php:717 -msgid "Sharing notification from Diaspora network" -msgstr "Freigabe-Benachrichtigung von Diaspora" +#: include/items.php:2446 include/datetime.php:460 +#, php-format +msgid "Happy Birthday %s" +msgstr "Herzlichen Glückwunsch %s" -#: include/diaspora.php:2560 -msgid "Attachments:" -msgstr "Anhänge:" - -#: include/items.php:4853 +#: include/items.php:4866 msgid "Do you really want to delete this item?" msgstr "Möchtest Du wirklich dieses Item löschen?" -#: include/items.php:5128 +#: include/items.php:5141 msgid "Archives" msgstr "Archiv" +#: include/delivery.php:456 include/notifier.php:834 +msgid "(no subject)" +msgstr "(kein Betreff)" + +#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 +msgid "noreply" +msgstr "noreply" + +#: include/diaspora.php:716 +msgid "Sharing notification from Diaspora network" +msgstr "Freigabe-Benachrichtigung von Diaspora" + +#: include/diaspora.php:2567 +msgid "Attachments:" +msgstr "Anhänge:" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:608 +msgid "Edit profile" +msgstr "Profil bearbeiten" + +#: include/identity.php:220 +msgid "Message" +msgstr "Nachricht" + +#: include/identity.php:226 include/nav.php:184 +msgid "Profiles" +msgstr "Profile" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/editieren" + +#: include/identity.php:342 +msgid "Network:" +msgstr "Netzwerk" + +#: include/identity.php:374 include/identity.php:460 +msgid "g A l F d" +msgstr "l, d. F G \\U\\h\\r" + +#: include/identity.php:375 include/identity.php:461 +msgid "F d" +msgstr "d. F" + +#: include/identity.php:420 include/identity.php:507 +msgid "[today]" +msgstr "[heute]" + +#: include/identity.php:432 +msgid "Birthday Reminders" +msgstr "Geburtstagserinnerungen" + +#: include/identity.php:433 +msgid "Birthdays this week:" +msgstr "Geburtstage diese Woche:" + +#: include/identity.php:494 +msgid "[No description]" +msgstr "[keine Beschreibung]" + +#: include/identity.php:518 +msgid "Event Reminders" +msgstr "Veranstaltungserinnerungen" + +#: include/identity.php:519 +msgid "Events this week:" +msgstr "Veranstaltungen diese Woche" + +#: include/identity.php:546 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:547 +msgid "j F" +msgstr "j F" + +#: include/identity.php:554 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: include/identity.php:558 +msgid "Age:" +msgstr "Alter:" + +#: include/identity.php:567 +#, php-format +msgid "for %1$d %2$s" +msgstr "für %1$d %2$s" + +#: include/identity.php:580 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:584 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interessen:" + +#: include/identity.php:591 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformationen und Soziale Netzwerke:" + +#: include/identity.php:593 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: include/identity.php:595 +msgid "Books, literature:" +msgstr "Literatur/Bücher:" + +#: include/identity.php:597 +msgid "Television:" +msgstr "Fernsehen:" + +#: include/identity.php:599 +msgid "Film/dance/culture/entertainment:" +msgstr "Filme/Tänze/Kultur/Unterhaltung:" + +#: include/identity.php:601 +msgid "Love/Romance:" +msgstr "Liebesleben:" + +#: include/identity.php:603 +msgid "Work/employment:" +msgstr "Arbeit/Beschäftigung:" + +#: include/identity.php:605 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: include/identity.php:633 include/nav.php:76 +msgid "Status" +msgstr "Status" + +#: include/identity.php:636 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: include/identity.php:644 +msgid "Profile Details" +msgstr "Profildetails" + +#: include/identity.php:657 include/identity.php:660 include/nav.php:79 +msgid "Videos" +msgstr "Videos" + +#: include/identity.php:671 +msgid "Events and Calendar" +msgstr "Ereignisse und Kalender" + +#: include/identity.php:679 +msgid "Only You Can See This" +msgstr "Nur Du kannst das sehen" + +#: include/follow.php:75 +msgid "Connect URL missing." +msgstr "Connect-URL fehlt" + +#: include/follow.php:102 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." + +#: include/follow.php:103 include/follow.php:123 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." + +#: include/follow.php:121 +msgid "The profile address specified does not provide adequate information." +msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." + +#: include/follow.php:125 +msgid "An author or name was not found." +msgstr "Es wurde kein Autor oder Name gefunden." + +#: include/follow.php:127 +msgid "No browser URL could be matched to this address." +msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." + +#: include/follow.php:129 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." + +#: include/follow.php:130 +msgid "Use mailto: in front of address to force email check." +msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." + +#: include/follow.php:136 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." + +#: include/follow.php:146 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können." + +#: include/follow.php:253 +msgid "Unable to retrieve contact information." +msgstr "Konnte die Kontaktinformationen nicht empfangen." + +#: include/follow.php:306 +msgid "following" +msgstr "folgen" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Willkommen " + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Bitte lade ein Profilbild hoch." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Willkommen zurück " + +#: include/security.php:375 +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 Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." + #: include/profile_selectors.php:6 msgid "Male" msgstr "Männlich" @@ -7509,6 +7125,10 @@ msgstr "Untreu" msgid "Sex Addict" msgstr "Sexbesessen" +#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 +msgid "Friends" +msgstr "Freunde" + #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Freunde/Zuwendungen" @@ -7593,6 +7213,461 @@ msgstr "Ist mir nicht wichtig" msgid "Ask me" msgstr "Frag mich" +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Fehler beim Verarbeiten der Account Datei" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Fehler! Konnte den Nickname nicht überprüfen." + +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Nutzer '%s' existiert bereits auf diesem Server!" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" + +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Fehler beim Anlegen des Nutzerkontos" + +#: include/uimport.php:222 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d Kontakt nicht importiert" +msgstr[1] "%d Kontakte nicht importiert" + +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "Zum Upgraden hier klicken." + +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "Nachricht/Beitrag" + +#: include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" + +#: include/conversation.php:771 +msgid "remove" +msgstr "löschen" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Lösche die markierten Beiträge" + +#: include/conversation.php:874 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: include/conversation.php:875 include/Contact.php:233 +msgid "View Status" +msgstr "Pinnwand anschauen" + +#: include/conversation.php:876 include/Contact.php:234 +msgid "View Profile" +msgstr "Profil anschauen" + +#: include/conversation.php:877 include/Contact.php:235 +msgid "View Photos" +msgstr "Bilder anschauen" + +#: include/conversation.php:878 include/Contact.php:236 +#: include/Contact.php:259 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" + +#: include/conversation.php:879 include/Contact.php:237 +#: include/Contact.php:259 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: include/conversation.php:880 include/Contact.php:239 +#: include/Contact.php:259 +msgid "Send PM" +msgstr "Private Nachricht senden" + +#: include/conversation.php:881 include/Contact.php:232 +msgid "Poke" +msgstr "Anstupsen" + +#: include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "%s mag das." + +#: include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mag das nicht." + +#: include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: include/conversation.php:965 +msgid "and" +msgstr "und" + +#: include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr " und %d andere" + +#: include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "%s mögen das." + +#: include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "%s mögen das nicht." + +#: include/conversation.php:1000 include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Für jedermann sichtbar" + +#: include/conversation.php:1002 include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Bitte Link/URL zum Video einfügen:" + +#: include/conversation.php:1003 include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Bitte Link/URL zum Audio einfügen:" + +#: include/conversation.php:1004 include/conversation.php:1022 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1006 include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Wo hältst Du Dich jetzt gerade auf?" + +#: include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Einträge löschen?" + +#: include/conversation.php:1076 +msgid "permissions" +msgstr "Zugriffsrechte" + +#: include/conversation.php:1099 +msgid "Post to Groups" +msgstr "Poste an Gruppe" + +#: include/conversation.php:1100 +msgid "Post to Contacts" +msgstr "Poste an Kontakte" + +#: include/conversation.php:1101 +msgid "Private post" +msgstr "Privater Beitrag" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Neuen Kontakt hinzufügen" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Adresse oder Web-Link eingeben" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:24 +#, 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:30 +msgid "Find People" +msgstr "Leute finden" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiel: Robert Morgenstein, Angeln" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Zufälliges Profil" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Netzwerke" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Alle Netzwerke" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Alles" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Kategorien" + +#: include/nav.php:73 +msgid "End this session" +msgstr "Diese Sitzung beenden" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "Deine Videos" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "Deine persönlichen Notizen" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Anmelden" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Homepage" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Nutzerkonto erstellen" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Addon Anwendungen, Dienstprogramme, Spiele" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Inhalt der Seite durchsuchen" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "Unterhaltungen auf dieser Seite" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "Unterhaltungen im Netzwerk" + +#: include/nav.php:141 +msgid "Directory" +msgstr "Verzeichnis" + +#: include/nav.php:141 +msgid "People directory" +msgstr "Nutzerverzeichnis" + +#: include/nav.php:143 +msgid "Information" +msgstr "Information" + +#: include/nav.php:143 +msgid "Information about this friendica instance" +msgstr "Informationen zu dieser Friendica Instanz" + +#: include/nav.php:153 +msgid "Conversations from your friends" +msgstr "Unterhaltungen Deiner Kontakte" + +#: include/nav.php:154 +msgid "Network Reset" +msgstr "Netzwerk zurücksetzen" + +#: include/nav.php:154 +msgid "Load Network page with no filters" +msgstr "Netzwerk-Seite ohne Filter laden" + +#: include/nav.php:161 +msgid "Friend Requests" +msgstr "Kontaktanfragen" + +#: include/nav.php:165 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen anzeigen" + +#: include/nav.php:166 +msgid "Mark all system notifications seen" +msgstr "Markiere alle Systembenachrichtigungen als gelesen" + +#: include/nav.php:170 +msgid "Private mail" +msgstr "Private E-Mail" + +#: include/nav.php:171 +msgid "Inbox" +msgstr "Eingang" + +#: include/nav.php:172 +msgid "Outbox" +msgstr "Ausgang" + +#: include/nav.php:176 +msgid "Manage" +msgstr "Verwalten" + +#: include/nav.php:176 +msgid "Manage other pages" +msgstr "Andere Seiten verwalten" + +#: include/nav.php:181 +msgid "Account settings" +msgstr "Kontoeinstellungen" + +#: include/nav.php:184 +msgid "Manage/Edit Profiles" +msgstr "Profile Verwalten/Editieren" + +#: include/nav.php:186 +msgid "Manage/edit friends and contacts" +msgstr "Freunde und Kontakte verwalten/editieren" + +#: include/nav.php:193 +msgid "Site setup and configuration" +msgstr "Einstellungen der Seite und Konfiguration" + +#: include/nav.php:197 +msgid "Navigation" +msgstr "Navigation" + +#: include/nav.php:197 +msgid "Site map" +msgstr "Sitemap" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unbekannt | Nicht kategorisiert" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Sofort blockieren" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Zwielichtig, Spammer, Selbstdarsteller" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ist mir bekannt, hab aber keine Meinung" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, wahrscheinlich harmlos" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Seriös, hat mein Vertrauen" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zott" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Chat" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "StatusNet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "Redmatrix" + #: include/enotify.php:18 msgid "Friendica Notification" msgstr "Friendica-Benachrichtigung" @@ -7876,6 +7951,148 @@ msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s) msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Du benötigst eine Einladung." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht überprüft werden." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Ungültige OpenID URL" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Bitte trage die erforderlichen Informationen ein." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Bitte verwende einen kürzeren Namen." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Der Name ist zu kurz." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen." + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: include/user.php:385 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." + +#: include/user.php:389 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "An E-Mail senden" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" + +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: include/bbcode.php:556 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:590 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s schrieb den folgenden Beitrag" + +#: include/bbcode.php:1076 include/bbcode.php:1096 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" + +#: include/bbcode.php:1121 include/bbcode.php:1122 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + #: include/oembed.php:220 msgid "Embedded content" msgstr "Eingebetteter Inhalt" @@ -7884,204 +8101,147 @@ msgstr "Eingebetteter Inhalt" msgid "Embedding disabled" msgstr "Einbettungen deaktiviert" -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Fehler beim Verarbeiten der Account Datei" +#: 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 "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen." -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Voreingestellte Gruppe für neue Kontakte" -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Fehler! Konnte den Nickname nicht überprüfen." +#: include/group.php:226 +msgid "Everybody" +msgstr "Alle Kontakte" -#: include/uimport.php:120 include/uimport.php:131 +#: include/group.php:249 +msgid "edit" +msgstr "bearbeiten" + +#: include/group.php:271 +msgid "Edit group" +msgstr "Gruppe bearbeiten" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Neue Gruppe erstellen" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "Kontakte in keiner Gruppe" + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Kontakt löschen" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD oder MM-DD" + +#: include/datetime.php:256 +msgid "never" +msgstr "nie" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" + +#: include/datetime.php:272 +msgid "year" +msgstr "Jahr" + +#: include/datetime.php:272 +msgid "years" +msgstr "Jahre" + +#: include/datetime.php:273 +msgid "month" +msgstr "Monat" + +#: include/datetime.php:273 +msgid "months" +msgstr "Monate" + +#: include/datetime.php:274 +msgid "week" +msgstr "Woche" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "Wochen" + +#: include/datetime.php:275 +msgid "day" +msgstr "Tag" + +#: include/datetime.php:275 +msgid "days" +msgstr "Tage" + +#: include/datetime.php:276 +msgid "hour" +msgstr "Stunde" + +#: include/datetime.php:276 +msgid "hours" +msgstr "Stunden" + +#: include/datetime.php:277 +msgid "minute" +msgstr "Minute" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "Minuten" + +#: include/datetime.php:278 +msgid "second" +msgstr "Sekunde" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "Sekunden" + +#: include/datetime.php:287 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "Nutzer '%s' existiert bereits auf diesem Server!" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s her" -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" +#: include/network.php:959 +msgid "view full size" +msgstr "Volle Größe anzeigen" -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "Fehler beim Anlegen des Nutzerkontos" - -#: include/uimport.php:222 +#: include/dbstructure.php:26 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d Kontakt nicht importiert" -msgstr[1] "%d Kontakte nicht importiert" +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" -#: index.php:441 -msgid "toggle mobile" -msgstr "auf/von Mobile Ansicht wechseln" +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" - -#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 -#: view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare festlegen" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Theme Breite festlegen" - -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Farbschema" - -#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Liniengröße für Beiträge und Kommantare festlegen" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Farbschema wählen" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Ausrichtung" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Mitte" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Schriftgröße in Beiträgen" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Schriftgröße in Eingabefeldern" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Auflösung für die Mittelspalte setzen" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Wähle Farbschema" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Zoomfaktor der Earth Layer" - -#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitude (X) der Earth Layer" - -#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitude (Y) der Earth Layer" - -#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Foren" - -#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 -#: view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 -#: view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Community-Profile" - -#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Hilfe oder @NewHere" - -#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 -#: view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Verbinde Dienste" - -#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Freunde finden" - -#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Letzte Nutzer" - -#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 -#: view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Letzte Fotos" - -#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 -#: view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Zuletzt gemocht" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Deine Kontakte" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Deine privaten Fotos" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Zoomfaktor der Earth Layer" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Stil auswählen" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Variationen" +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." diff --git a/view/de/strings.php b/view/de/strings.php index a800561db6..5557162450 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -5,281 +5,123 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; -$a->strings["%d contact edited."] = array( - 0 => "%d Kontakt bearbeitet.", - 1 => "%d Kontakte bearbeitet", -); -$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; -$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; -$a->strings["Contact updated."] = "Kontakt aktualisiert."; -$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; -$a->strings["Permission denied."] = "Zugriff verweigert."; -$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; -$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; -$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; -$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; -$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; -$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; -$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["Cancel"] = "Abbrechen"; -$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; -$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; -$a->strings["You are sharing with %s"] = "Du teilst mit %s"; -$a->strings["%s is sharing with you"] = "%s teilt mit Dir"; -$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; -$a->strings["Never"] = "Niemals"; -$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; -$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; -$a->strings["Suggest friends"] = "Kontakte vorschlagen"; -$a->strings["Network type: %s"] = "Netzwerktyp: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d gemeinsamer Kontakt", - 1 => "%d gemeinsame Kontakte", -); -$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["Unblock"] = "Entsperren"; -$a->strings["Block"] = "Sperren"; -$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; -$a->strings["Unignore"] = "Ignorieren aufheben"; -$a->strings["Ignore"] = "Ignorieren"; -$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["Unarchive"] = "Aus Archiv zurückholen"; -$a->strings["Archive"] = "Archivieren"; -$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; -$a->strings["Repair"] = "Reparieren"; -$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; -$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; -$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; -$a->strings["Disabled"] = "Deaktiviert"; -$a->strings["Fetch information"] = "Beziehe Information"; -$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; -$a->strings["Contact Editor"] = "Kontakt Editor"; -$a->strings["Submit"] = "Senden"; -$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; -$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen"; -$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten"; -$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; -$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten"; -$a->strings["Ignore contact"] = "Ignoriere den Kontakt"; -$a->strings["Repair URL settings"] = "URL Einstellungen reparieren"; -$a->strings["View conversations"] = "Unterhaltungen anzeigen"; -$a->strings["Delete contact"] = "Lösche den Kontakt"; -$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 geblockt"; -$a->strings["Currently ignored"] = "Derzeit ignoriert"; -$a->strings["Currently archived"] = "Momentan archiviert"; -$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor andere"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"; -$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen"; -$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."; -$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; -$a->strings["Profile URL"] = "Profil URL"; -$a->strings["Suggestions"] = "Kontaktvorschläge"; -$a->strings["Suggest potential friends"] = "Freunde vorschlagen"; -$a->strings["All Contacts"] = "Alle Kontakte"; -$a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["Unblocked"] = "Ungeblockt"; -$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen"; -$a->strings["Blocked"] = "Geblockt"; -$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen"; -$a->strings["Ignored"] = "Ignoriert"; -$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen"; -$a->strings["Archived"] = "Archiviert"; -$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; -$a->strings["Contacts"] = "Kontakte"; -$a->strings["Search your contacts"] = "Suche in deinen Kontakten"; -$a->strings["Finding: "] = "Funde: "; -$a->strings["Find"] = "Finde"; -$a->strings["Update"] = "Aktualisierungen"; +$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; +$a->strings["Private Message"] = "Private Nachricht"; +$a->strings["Edit"] = "Bearbeiten"; +$a->strings["Select"] = "Auswählen"; $a->strings["Delete"] = "Löschen"; -$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; -$a->strings["is a fan of yours"] = "ist ein Fan von dir"; -$a->strings["you are a fan of"] = "Du bist Fan von"; -$a->strings["Edit contact"] = "Kontakt bearbeiten"; -$a->strings["No profile"] = "Kein Profil"; -$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."; -$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; -$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; -$a->strings["Permission denied"] = "Zugriff verweigert"; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; -$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; -$a->strings["Profile"] = "Profil"; -$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; -$a->strings["Visible To"] = "Sichtbar für"; -$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; -$a->strings["Item not found."] = "Beitrag nicht gefunden."; -$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; -$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; -$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; -$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; -$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; -$a->strings["Getting Started"] = "Einstieg"; -$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."; -$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."; -$a->strings["Edit Your Profile"] = "Editiere dein Profil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."; -$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."; -$a->strings["Connecting"] = "Verbindungen knüpfen"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."; -$a->strings["Importing Emails"] = "Emails Importieren"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."; -$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; -$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."; -$a->strings["Finding New People"] = "Neue Leute kennenlernen"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; -$a->strings["Groups"] = "Gruppen"; -$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; -$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; -$a->strings["Getting Help"] = "Hilfe bekommen"; -$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; -$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; -$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; -$a->strings["Profile Photos"] = "Profilbilder"; -$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; -$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; -$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; -$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; -$a->strings["Upload File:"] = "Datei hochladen:"; -$a->strings["Select a profile:"] = "Profil auswählen:"; -$a->strings["Upload"] = "Hochladen"; -$a->strings["or"] = "oder"; -$a->strings["skip this step"] = "diesen Schritt überspringen"; -$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; -$a->strings["Crop Image"] = "Bild zurechtschneiden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; -$a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; -$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; -$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; -$a->strings["photo"] = "Foto"; -$a->strings["status"] = "Status"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; -$a->strings["Tag removed"] = "Tag entfernt"; -$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; -$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; -$a->strings["Remove"] = "Entfernen"; -$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; -$a->strings["- select -"] = "- auswählen -"; -$a->strings["Save"] = "Speichern"; -$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; -$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; -$a->strings["Does %s know you?"] = "Kennt %s Dich?"; -$a->strings["No"] = "Nein"; -$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; -$a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; -$a->strings["Submit Request"] = "Anfrage abschicken"; -$a->strings["Contact added"] = "Kontakt hinzugefügt"; -$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; -$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; -$a->strings["Wall Photos"] = "Pinnwand-Bilder"; -$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; -$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."; -$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; -$a->strings["Group created."] = "Gruppe erstellt."; -$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; -$a->strings["Group not found."] = "Gruppe nicht gefunden."; -$a->strings["Group name changed."] = "Gruppenname geändert."; -$a->strings["Save Group"] = "Gruppe speichern"; -$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; -$a->strings["Group Name: "] = "Gruppenname:"; -$a->strings["Group removed."] = "Gruppe entfernt."; -$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; -$a->strings["Group Editor"] = "Gruppeneditor"; -$a->strings["Members"] = "Mitglieder"; +$a->strings["save to folder"] = "In Ordner speichern"; +$a->strings["add star"] = "markieren"; +$a->strings["remove star"] = "Markierung entfernen"; +$a->strings["toggle star status"] = "Markierung umschalten"; +$a->strings["starred"] = "markiert"; +$a->strings["ignore thread"] = "Thread ignorieren"; +$a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; +$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["ignored"] = "Ignoriert"; +$a->strings["add tag"] = "Tag hinzufügen"; +$a->strings["I like this (toggle)"] = "Ich mag das (toggle)"; +$a->strings["like"] = "mag ich"; +$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; +$a->strings["dislike"] = "mag ich nicht"; +$a->strings["Share this"] = "Weitersagen"; +$a->strings["share"] = "Teilen"; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Abgelegt unter:"; +$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; +$a->strings["to"] = "zu"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["%s from %s"] = "%s von %s"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["Please wait"] = "Bitte warten"; +$a->strings["%d comment"] = array( + 0 => "%d Kommentar", + 1 => "%d Kommentare", +); +$a->strings["comment"] = array( + 0 => "Kommentar", + 1 => "Kommentare", +); +$a->strings["show more"] = "mehr anzeigen"; +$a->strings["This is you"] = "Das bist Du"; +$a->strings["Submit"] = "Senden"; +$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["Preview"] = "Vorschau"; $a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können."; -$a->strings["Applications"] = "Anwendungen"; -$a->strings["No installed applications."] = "Keine Applikationen installiert."; -$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["Page not found."] = "Seite nicht gefunden."; +$a->strings["Permission denied"] = "Zugriff verweigert"; +$a->strings["Permission denied."] = "Zugriff verweigert."; +$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; +$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; $a->strings["Contact not found."] = "Kontakt nicht gefunden."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; -$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; -$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; -$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; -$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; -$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; -$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; -$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; -$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; -$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; -$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; -$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; -$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; -$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden"; -$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; -$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; -$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; -$a->strings["Delete Video"] = "Video Löschen"; -$a->strings["No videos selected"] = "Keine Videos ausgewählt"; -$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; -$a->strings["View Video"] = "Video ansehen"; -$a->strings["View Album"] = "Album betrachten"; -$a->strings["Recent Videos"] = "Neueste Videos"; -$a->strings["Upload New Videos"] = "Neues Video hochladen"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; $a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; $a->strings["Suggest Friends"] = "Kontakte vorschlagen"; $a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; -$a->strings["Invalid request."] = "Ungültige Anfrage"; -$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. Bitte überprüfe Deine E-Mail."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; -$a->strings["Password Reset"] = "Passwort zurücksetzen"; -$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; -$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"] = "hier klicken, um Dich anzumelden"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."; -$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort 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 an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."; -$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; -$a->strings["Reset"] = "Zurücksetzen"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; -$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten"; -$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; -$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; -$a->strings["No contacts."] = "Keine Kontakte."; -$a->strings["View Contacts"] = "Kontakte anzeigen"; +$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; +$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", + 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", +); +$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; +$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; +$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; +$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; +$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; +$a->strings["Invalid locator"] = "Ungültiger Locator"; +$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; +$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; +$a->strings["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden."; +$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; +$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist."; +$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; +$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; +$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; +$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; +$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; +$a->strings["Confirm"] = "Bestätigen"; +$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; +$a->strings["Welcome home %s."] = "Willkommen zurück %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s."; +$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; +$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; +$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; +$a->strings["Does %s know you?"] = "Kennt %s Dich?"; +$a->strings["No"] = "Nein"; +$a->strings["Yes"] = "Ja"; +$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."; +$a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; +$a->strings["Submit Request"] = "Anfrage abschicken"; +$a->strings["Cancel"] = "Abbrechen"; +$a->strings["View Video"] = "Video ansehen"; +$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; +$a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; $a->strings["Invalid request identifier."] = "Invalid request identifier."; $a->strings["Discard"] = "Verwerfen"; +$a->strings["Ignore"] = "Ignorieren"; $a->strings["System"] = "System"; $a->strings["Network"] = "Netzwerk"; $a->strings["Personal"] = "Persönlich"; @@ -290,6 +132,7 @@ $a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; $a->strings["Notification type: "] = "Benachrichtigungstyp: "; $a->strings["Friend Suggestion"] = "Kontaktvorschlag"; $a->strings["suggested by %s"] = "vorgeschlagen von %s"; +$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor andere"; $a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden"; $a->strings["if applicable"] = "falls anwendbar"; $a->strings["Approve"] = "Genehmigen"; @@ -322,6 +165,13 @@ $a->strings["No more personal notifications."] = "Keine weiteren persönlichen B $a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; $a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen"; $a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; +$a->strings["photo"] = "Foto"; +$a->strings["status"] = "Status"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; +$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; $a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:"; $a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"; $a->strings["Source input: "] = "Originaltext:"; @@ -334,72 +184,6 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): "; $a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Keine Neuigkeiten"; -$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; -$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; -$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; -$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; -$a->strings["Message sent."] = "Nachricht gesendet."; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?"; -$a->strings["Message deleted."] = "Nachricht gelöscht."; -$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; -$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; -$a->strings["Send Private Message"] = "Private Nachricht senden"; -$a->strings["To:"] = "An:"; -$a->strings["Subject:"] = "Betreff:"; -$a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["Insert web link"] = "Einen Link einfügen"; -$a->strings["Please wait"] = "Bitte warten"; -$a->strings["No messages."] = "Keine Nachrichten."; -$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; -$a->strings["You and %s"] = "Du und %s"; -$a->strings["%s and You"] = "%s und Du"; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d Nachricht", - 1 => "%d Nachrichten", -); -$a->strings["Message not available."] = "Nachricht nicht verfügbar."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -$a->strings["Send Reply"] = "Antwort senden"; -$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; -$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; -$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; -$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; -$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; -$a->strings["No mirroring"] = "Kein Spiegeln"; -$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; -$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; -$a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; -$a->strings["Name"] = "Name"; -$a->strings["Account Nickname"] = "Konto-Spitzname"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; -$a->strings["Account URL"] = "Konto-URL"; -$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; -$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; -$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; -$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; -$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; -$a->strings["Remote Self"] = "Entfernte Konten"; -$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."; -$a->strings["Login"] = "Anmeldung"; -$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; -$a->strings["Access denied."] = "Zugriff verweigert."; -$a->strings["People Search - %s"] = "Personensuche - %s"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; -$a->strings["Photos"] = "Bilder"; -$a->strings["Files"] = "Dateien"; -$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert."; $a->strings["Site"] = "Seite"; $a->strings["Users"] = "Nutzer"; @@ -414,6 +198,7 @@ $a->strings["Admin"] = "Administration"; $a->strings["Plugin Features"] = "Plugin Features"; $a->strings["diagnostics"] = "Diagnose"; $a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten"; +$a->strings["Item not found."] = "Beitrag nicht gefunden."; $a->strings["Administration"] = "Administration"; $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = "Empfänger Name"; @@ -434,16 +219,19 @@ $a->strings["Pending registrations"] = "Anstehende Anmeldungen"; $a->strings["Version"] = "Version"; $a->strings["Active plugins"] = "Aktive Plugins"; $a->strings["Can not parse base url. Must have at least ://"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen"; +$a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 benötigt die PHP Extension mcrypt."; $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert."; $a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden."; $a->strings["No community page"] = "Keine Gemeinschaftsseite"; $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite"; $a->strings["Global community page"] = "Globale Gemeinschaftsseite"; +$a->strings["Never"] = "Niemals"; $a->strings["At post arrival"] = "Beim Empfang von Nachrichten"; $a->strings["Frequently"] = "immer wieder"; $a->strings["Hourly"] = "Stündlich"; $a->strings["Twice daily"] = "Zweimal täglich"; $a->strings["Daily"] = "Täglich"; +$a->strings["Disabled"] = "Deaktiviert"; $a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte"; $a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback"; $a->strings["One month"] = "ein Monat"; @@ -512,8 +300,8 @@ $a->strings["Block public"] = "Öffentlichen Zugriff blockieren"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."; $a->strings["Force publish"] = "Erzwinge Veröffentlichung"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."; -$a->strings["Global directory update URL"] = "URL für Updates beim weltweiten Verzeichnis"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."; +$a->strings["Global directory URL"] = "URL des weltweiten Verzeichnisses"; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."; $a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen"; $a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite."; $a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer"; @@ -562,6 +350,8 @@ $a->strings["Maximum Load Average (Frontend)"] = "Maximum Load Average (Frontend $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."; $a->strings["Periodical check of global contacts"] = "Regelmäßig globale Kontakte überprüfen"; $a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."; +$a->strings["Days between requery"] = "Tage zwischen erneuten Abfragen"; +$a->strings["Number of days after which a server is requeried for his contacts."] = "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."; $a->strings["Discover contacts from other servers"] = "Neue Kontakte auf anderen Servern entdecken"; $a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."; $a->strings["Timeframe for fetching global contacts"] = "Zeitfenster für globale Kontakte"; @@ -632,9 +422,12 @@ $a->strings["select all"] = "Alle auswählen"; $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung"; $a->strings["Request date"] = "Anfragedatum"; +$a->strings["Name"] = "Name"; $a->strings["Email"] = "E-Mail"; $a->strings["No registrations."] = "Keine Neuanmeldungen."; $a->strings["Deny"] = "Verwehren"; +$a->strings["Block"] = "Sperren"; +$a->strings["Unblock"] = "Entsperren"; $a->strings["Site admin"] = "Seitenadministrator"; $a->strings["Account expired"] = "Account ist abgelaufen"; $a->strings["New User"] = "Neuer Nutzer"; @@ -654,6 +447,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s aktiviert."; $a->strings["Disable"] = "Ausschalten"; $a->strings["Enable"] = "Einschalten"; $a->strings["Toggle"] = "Umschalten"; +$a->strings["Settings"] = "Einstellungen"; $a->strings["Author: "] = "Autor:"; $a->strings["Maintainer: "] = "Betreuer:"; $a->strings["No themes found."] = "Keine Themen gefunden."; @@ -666,39 +460,83 @@ $a->strings["Enable Debugging"] = "Protokoll führen"; $a->strings["Log file"] = "Protokolldatei"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."; $a->strings["Log level"] = "Protokoll-Level"; +$a->strings["Update now"] = "Jetzt aktualisieren"; $a->strings["Close"] = "Schließen"; $a->strings["FTP Host"] = "FTP Host"; $a->strings["FTP Path"] = "FTP Pfad"; $a->strings["FTP User"] = "FTP Nutzername"; $a->strings["FTP Password"] = "FTP Passwort"; -$a->strings["Search Results For: %s"] = "Suchergebnisse für: %s"; -$a->strings["Remove term"] = "Begriff entfernen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchen"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Commented Order"] = "Neueste Kommentare"; -$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; -$a->strings["Posted Order"] = "Neueste Beiträge"; -$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; -$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht"; -$a->strings["New"] = "Neue"; -$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; -$a->strings["Shared Links"] = "Geteilte Links"; -$a->strings["Interesting Links"] = "Interessante Links"; -$a->strings["Starred"] = "Markierte"; -$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", - 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; +$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; +$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; +$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; +$a->strings["Message sent."] = "Nachricht gesendet."; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?"; +$a->strings["Message deleted."] = "Nachricht gelöscht."; +$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; +$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; +$a->strings["Send Private Message"] = "Private Nachricht senden"; +$a->strings["To:"] = "An:"; +$a->strings["Subject:"] = "Betreff:"; +$a->strings["Your message:"] = "Deine Nachricht:"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["Insert web link"] = "Einen Link einfügen"; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; +$a->strings["You and %s"] = "Du und %s"; +$a->strings["%s and You"] = "%s und Du"; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d Nachricht", + 1 => "%d Nachrichten", ); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; -$a->strings["No such group"] = "Es gibt keine solche Gruppe"; -$a->strings["Group is empty"] = "Gruppe ist leer"; -$a->strings["Group: %s"] = "Gruppe: %s"; -$a->strings["Contact: %s"] = "Kontakt: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; -$a->strings["Invalid contact."] = "Ungültiger Kontakt."; -$a->strings["Friends of %s"] = "Freunde von %s"; -$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; +$a->strings["Message not available."] = "Nachricht nicht verfügbar."; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +$a->strings["Send Reply"] = "Antwort senden"; +$a->strings["Item not found"] = "Beitrag nicht gefunden"; +$a->strings["Edit post"] = "Beitrag bearbeiten"; +$a->strings["Save"] = "Speichern"; +$a->strings["upload photo"] = "Bild hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anhängen"; +$a->strings["web link"] = "Weblink"; +$a->strings["Insert video link"] = "Video-Adresse einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Deinen Standort festlegen"; +$a->strings["set location"] = "Ort setzen"; +$a->strings["Clear browser location"] = "Browser-Standort leeren"; +$a->strings["clear location"] = "Ort löschen"; +$a->strings["Permission settings"] = "Berechtigungseinstellungen"; +$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Set title"] = "Titel setzen"; +$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; +$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; +$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; +$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; +$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; +$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; +$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; +$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; +$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; +$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; +$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; +$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; +$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; +$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; +$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; $a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; $a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; $a->strings["l, F j"] = "l, F j"; @@ -718,134 +556,306 @@ $a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpasse $a->strings["Description:"] = "Beschreibung"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Veranstaltung teilen"; -$a->strings["Preview"] = "Vorschau"; -$a->strings["Select"] = "Auswählen"; -$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; -$a->strings["%s from %s"] = "%s von %s"; -$a->strings["View in context"] = "Im Zusammenhang betrachten"; -$a->strings["%d comment"] = array( - 0 => "%d Kommentar", - 1 => "%d Kommentare", -); -$a->strings["comment"] = array( - 0 => "Kommentar", - 1 => "Kommentare", -); -$a->strings["show more"] = "mehr anzeigen"; -$a->strings["Private Message"] = "Private Nachricht"; -$a->strings["I like this (toggle)"] = "Ich mag das (toggle)"; -$a->strings["like"] = "mag ich"; -$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; -$a->strings["dislike"] = "mag ich nicht"; -$a->strings["Share this"] = "Weitersagen"; -$a->strings["share"] = "Teilen"; -$a->strings["This is you"] = "Das bist Du"; -$a->strings["Comment"] = "Kommentar"; -$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["Edit"] = "Bearbeiten"; -$a->strings["add star"] = "markieren"; -$a->strings["remove star"] = "Markierung entfernen"; -$a->strings["toggle star status"] = "Markierung umschalten"; -$a->strings["starred"] = "markiert"; -$a->strings["add tag"] = "Tag hinzufügen"; -$a->strings["save to folder"] = "In Ordner speichern"; -$a->strings["to"] = "zu"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings["Remove My Account"] = "Konto löschen"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; -$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:"; -$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; -$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; -$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; -$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; -$a->strings["System check"] = "Systemtest"; -$a->strings["Check again"] = "Noch einmal testen"; -$a->strings["Database connection"] = "Datenbankverbindung"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."; -$a->strings["Database Server Name"] = "Datenbank-Server"; -$a->strings["Database Login Name"] = "Datenbank-Nutzer"; -$a->strings["Database Login Password"] = "Datenbank-Passwort"; -$a->strings["Database Name"] = "Datenbank-Name"; -$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; -$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; -$a->strings["Site settings"] = "Server-Einstellungen"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des 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. See 'Activating scheduled tasks'"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Pfad zu PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; -$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; -$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; -$a->strings["PHP cli binary"] = "PHP CLI Binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; -$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; -$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 Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; -$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; -$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; -$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; -$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; -$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; -$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module 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 Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; -$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."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."; -$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; -$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) Schreibrechte zu diesem Verzeichnis hat."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; -$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 Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; -$a->strings["

What next

"] = "

Wie geht es weiter?

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; +$a->strings["Photos"] = "Bilder"; +$a->strings["Files"] = "Dateien"; +$a->strings["Welcome to %s"] = "Willkommen zu %s"; +$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; $a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen."; $a->strings["No recipient."] = "Kein Empfänger."; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."; +$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; +$a->strings["Edit contact"] = "Kontakt bearbeiten"; +$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; +$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; +$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["the bugtracker at github"] = "dem Bugtracker auf github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; +$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; +$a->strings["Remove My Account"] = "Konto löschen"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; +$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:"; +$a->strings["Invalid request."] = "Ungültige Anfrage"; +$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; +$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; +$a->strings["Wall Photos"] = "Pinnwand-Bilder"; +$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; +$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; +$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; +$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren."; +$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 den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; +$a->strings["Contact Photos"] = "Kontaktbilder"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; +$a->strings["everybody"] = "jeder"; +$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Delete Album"] = "Album löschen"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; +$a->strings["a photo"] = "einem Foto"; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; +$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; +$a->strings["Upload Photos"] = "Bilder hochladen"; +$a->strings["New album name: "] = "Name des neuen Albums: "; +$a->strings["or existing album name: "] = "oder existierender Albumname: "; +$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["Show to Groups"] = "Zeige den Gruppen"; +$a->strings["Show to Contacts"] = "Zeige den Kontakten"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["Public Photo"] = "Öffentliches Foto"; +$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 betrachten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; +$a->strings["Photo not available"] = "Foto nicht verfügbar"; +$a->strings["View photo"] = "Fotos ansehen"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; +$a->strings["View Full Size"] = "Betrachte Originalgröße"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Remove any tag]"] = "[Tag entfernen]"; +$a->strings["New album name"] = "Name des neuen Albums"; +$a->strings["Caption"] = "Bildunterschrift"; +$a->strings["Add a Tag"] = "Tag hinzufügen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Nicht rotieren"; +$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; +$a->strings["Private photo"] = "Privates Foto"; +$a->strings["Public photo"] = "Öffentliches Foto"; +$a->strings["Share"] = "Teilen"; +$a->strings["View Album"] = "Album betrachten"; +$a->strings["No profile"] = "Kein Profil"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; +$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; +$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; +$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; +$a->strings["New Password:"] = "Neues Passwort:"; +$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren."; +$a->strings["Confirm:"] = "Bestätigen:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; +$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; +$a->strings["Register"] = "Registrieren"; +$a->strings["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; +$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. Bitte überprüfe Deine E-Mail."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; +$a->strings["Password Reset"] = "Passwort zurücksetzen"; +$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; +$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"] = "hier klicken, um Dich anzumelden"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."; +$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort 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 an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."; +$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; +$a->strings["Reset"] = "Zurücksetzen"; +$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; +$a->strings["Item not available."] = "Beitrag nicht verfügbar."; +$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; +$a->strings["Applications"] = "Anwendungen"; +$a->strings["No installed applications."] = "Keine Applikationen installiert."; $a->strings["Help:"] = "Hilfe:"; $a->strings["Help"] = "Hilfe"; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["Page not found."] = "Seite nicht gefunden."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; -$a->strings["Welcome to %s"] = "Willkommen zu %s"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; -$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; -$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; -$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; -$a->strings["Profile Match"] = "Profilübereinstimmungen"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."; -$a->strings["is interested in:"] = "ist interessiert an:"; -$a->strings["link"] = "Link"; -$a->strings["Not available."] = "Nicht verfügbar."; -$a->strings["Community"] = "Gemeinschaft"; +$a->strings["%d contact edited."] = array( + 0 => "%d Kontakt bearbeitet.", + 1 => "%d Kontakte bearbeitet", +); +$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; +$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; +$a->strings["Contact updated."] = "Kontakt aktualisiert."; +$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; +$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; +$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; +$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; +$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; +$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; +$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?"; +$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; +$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; +$a->strings["You are sharing with %s"] = "Du teilst mit %s"; +$a->strings["%s is sharing with you"] = "%s teilt mit Dir"; +$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; +$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; +$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; +$a->strings["Suggest friends"] = "Kontakte vorschlagen"; +$a->strings["Network type: %s"] = "Netzwerktyp: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d gemeinsamer Kontakt", + 1 => "%d gemeinsame Kontakte", +); +$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; +$a->strings["Unignore"] = "Ignorieren aufheben"; +$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; +$a->strings["Repair"] = "Reparieren"; +$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; +$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; +$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; +$a->strings["Fetch information"] = "Beziehe Information"; +$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; +$a->strings["Contact Editor"] = "Kontakt Editor"; +$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; +$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen"; +$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten"; +$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten"; +$a->strings["Ignore contact"] = "Ignoriere den Kontakt"; +$a->strings["Repair URL settings"] = "URL Einstellungen reparieren"; +$a->strings["View conversations"] = "Unterhaltungen anzeigen"; +$a->strings["Delete contact"] = "Lösche den Kontakt"; +$a->strings["Last update:"] = "Letzte Aktualisierung: "; +$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; +$a->strings["Currently blocked"] = "Derzeit geblockt"; +$a->strings["Currently ignored"] = "Derzeit ignoriert"; +$a->strings["Currently archived"] = "Momentan archiviert"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"; +$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen"; +$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."; +$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; +$a->strings["Profile URL"] = "Profil URL"; +$a->strings["Suggestions"] = "Kontaktvorschläge"; +$a->strings["Suggest potential friends"] = "Freunde vorschlagen"; +$a->strings["All Contacts"] = "Alle Kontakte"; +$a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Unblocked"] = "Ungeblockt"; +$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen"; +$a->strings["Blocked"] = "Geblockt"; +$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen"; +$a->strings["Ignored"] = "Ignoriert"; +$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen"; +$a->strings["Archived"] = "Archiviert"; +$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; +$a->strings["Contacts"] = "Kontakte"; +$a->strings["Search your contacts"] = "Suche in deinen Kontakten"; +$a->strings["Finding: "] = "Funde: "; +$a->strings["Find"] = "Finde"; +$a->strings["Update"] = "Aktualisierungen"; +$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; +$a->strings["is a fan of yours"] = "ist ein Fan von dir"; +$a->strings["you are a fan of"] = "Du bist Fan von"; +$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; +$a->strings["Delete Video"] = "Video Löschen"; +$a->strings["No videos selected"] = "Keine Videos ausgewählt"; +$a->strings["Recent Videos"] = "Neueste Videos"; +$a->strings["Upload New Videos"] = "Neues Video hochladen"; +$a->strings["Common Friends"] = "Gemeinsame Freunde"; +$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; +$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; +$a->strings["Contact added"] = "Kontakt hinzugefügt"; +$a->strings["Login"] = "Anmeldung"; +$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; +$a->strings["Move account"] = "Account umziehen"; +$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; +$a->strings["Account file"] = "Account Datei"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; +$a->strings["Friends of %s"] = "Freunde von %s"; +$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; +$a->strings["Tag removed"] = "Tag entfernt"; +$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; +$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; +$a->strings["Remove"] = "Entfernen"; +$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; +$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; +$a->strings["Getting Started"] = "Einstieg"; +$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."; +$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."; +$a->strings["Profile"] = "Profil"; +$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."; +$a->strings["Edit Your Profile"] = "Editiere dein Profil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."; +$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."; +$a->strings["Connecting"] = "Verbindungen knüpfen"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."; +$a->strings["Importing Emails"] = "Emails Importieren"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."; +$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; +$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."; +$a->strings["Finding New People"] = "Neue Leute kennenlernen"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; +$a->strings["Groups"] = "Gruppen"; +$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; +$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; +$a->strings["Getting Help"] = "Hilfe bekommen"; +$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; +$a->strings["Remove term"] = "Begriff entfernen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchen"; +$a->strings["Search"] = "Suche"; $a->strings["No results."] = "Keine Ergebnisse."; -$a->strings["everybody"] = "jeder"; +$a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; +$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; +$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; +$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; +$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; +$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; +$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 Einladungen"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; +$a->strings["Send invitations"] = "Einladungen senden"; +$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; $a->strings["Additional features"] = "Zusätzliche Features"; $a->strings["Display"] = "Anzeige"; $a->strings["Social Networks"] = "Soziale Netzwerke"; @@ -891,8 +901,10 @@ $a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen auss $a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."; $a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"; $a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."; +$a->strings["Your legacy GNU Social account"] = "Dein alter GNU Social Account"; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."; +$a->strings["Repair OStatus subscriptions"] = "OStatus Abonnements reparieren"; $a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s"; -$a->strings["Diaspora"] = "Diaspora"; $a->strings["enabled"] = "eingeschaltet"; $a->strings["disabled"] = "ausgeschaltet"; $a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; @@ -961,8 +973,6 @@ $a->strings["Expire photos:"] = "Fotos verfallen lassen:"; $a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:"; $a->strings["Account Settings"] = "Kontoeinstellungen"; $a->strings["Password Settings"] = "Passwort-Einstellungen"; -$a->strings["New Password:"] = "Neues Passwort:"; -$a->strings["Confirm:"] = "Bestätigen:"; $a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"; $a->strings["Current Password:"] = "Aktuelles Passwort:"; $a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; @@ -978,8 +988,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschafts $a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)"; $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge"; $a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)"; -$a->strings["Show to Groups"] = "Zeige den Gruppen"; -$a->strings["Show to Contacts"] = "Zeige den Kontakten"; $a->strings["Default Private Post"] = "Privater Standardbeitrag"; $a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag"; $a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge"; @@ -1007,94 +1015,10 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve $a->strings["Relocate"] = "Umziehen"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."; $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden"; -$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; -$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", - 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", -); -$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; -$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; -$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; -$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; -$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; -$a->strings["Invalid locator"] = "Ungültiger Locator"; -$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; -$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; -$a->strings["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden."; -$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; -$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist."; -$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; -$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; -$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; -$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; -$a->strings["Confirm"] = "Bestätigen"; -$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; -$a->strings["Welcome home %s."] = "Willkommen zurück %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; -$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; -$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; -$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; -$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; -$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren."; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; -$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; -$a->strings["Register"] = "Registrieren"; -$a->strings["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; -$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; -$a->strings["Search"] = "Suche"; -$a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; -$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; -$a->strings["Global Directory"] = "Weltweites Verzeichnis"; -$a->strings["Find on this site"] = "Auf diesem Server suchen"; -$a->strings["Site Directory"] = "Verzeichnis"; -$a->strings["Age: "] = "Alter: "; -$a->strings["Gender: "] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt 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 die 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. Bitte 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["Common Friends"] = "Gemeinsame Freunde"; -$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; -$a->strings["Export account"] = "Account exportieren"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; -$a->strings["Export all"] = "Alles exportieren"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; -$a->strings["Mood"] = "Stimmung"; -$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"; -$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; -$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; -$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; +$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; +$a->strings["People Search - %s"] = "Personensuche - %s"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; $a->strings["Profile deleted."] = "Profil gelöscht."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Neues Profil angelegt."; @@ -1169,47 +1093,78 @@ $a->strings["Love/romance"] = "Liebe/Romantik"; $a->strings["Work/employment"] = "Arbeit/Anstellung"; $a->strings["School/education"] = "Schule/Ausbildung"; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein."; +$a->strings["Age: "] = "Alter: "; $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; $a->strings["Change profile photo"] = "Profilbild ändern"; $a->strings["Create New Profile"] = "Neues Profil anlegen"; $a->strings["Profile Image"] = "Profilbild"; $a->strings["visible to everybody"] = "sichtbar für jeden"; $a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["Item not found"] = "Beitrag nicht gefunden"; -$a->strings["Edit post"] = "Beitrag bearbeiten"; -$a->strings["upload photo"] = "Bild hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anhängen"; -$a->strings["web link"] = "Weblink"; -$a->strings["Insert video link"] = "Video-Adresse einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Deinen Standort festlegen"; -$a->strings["set location"] = "Ort setzen"; -$a->strings["Clear browser location"] = "Browser-Standort leeren"; -$a->strings["clear location"] = "Ort löschen"; -$a->strings["Permission settings"] = "Berechtigungseinstellungen"; -$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Set title"] = "Titel setzen"; -$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; -$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["the bugtracker at github"] = "dem Bugtracker auf github"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; -$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; -$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; -$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; -$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren."; -$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 den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"; -$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["link"] = "Link"; +$a->strings["Export account"] = "Account exportieren"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; +$a->strings["Export all"] = "Alles exportieren"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."; +$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten"; +$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; +$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; +$a->strings["Nothing new here"] = "Keine Neuigkeiten"; +$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; +$a->strings["Not available."] = "Nicht verfügbar."; +$a->strings["Community"] = "Gemeinschaft"; +$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; +$a->strings["- select -"] = "- auswählen -"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; +$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; +$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; +$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; +$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; +$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; +$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; +$a->strings["Visible To"] = "Sichtbar für"; +$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; +$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; +$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; +$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; +$a->strings["Access denied."] = "Zugriff verweigert."; +$a->strings["Resubsribing to OStatus contacts"] = "Erneuern der OStatus Abonements"; +$a->strings["Error"] = "Fehler"; +$a->strings["Done"] = "Erledigt"; +$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; +$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."; +$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; +$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 die 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. Bitte 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["No contacts."] = "Keine Kontakte."; +$a->strings["View Contacts"] = "Kontakte anzeigen"; $a->strings["Personal Notes"] = "Persönliche Notizen"; +$a->strings["Poke/Prod"] = "Anstupsen"; +$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"] = "Was willst Du mit dem Empfänger machen:"; +$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; +$a->strings["Global Directory"] = "Weltweites Verzeichnis"; +$a->strings["Find on this site"] = "Auf diesem Server suchen"; +$a->strings["Site Directory"] = "Verzeichnis"; +$a->strings["Gender: "] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; +$a->strings["Subsribing to OStatus contacts"] = "OStatus Kontakten folgen"; +$a->strings["No contact provided."] = "Keine Kontakte gefunden."; +$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen."; +$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen."; +$a->strings["success"] = "Erfolg"; +$a->strings["failed"] = "Fehlgeschlagen"; $a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; $a->strings["Time Conversion"] = "Zeitumrechnung"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; @@ -1217,87 +1172,226 @@ $a->strings["UTC time: %s"] = "UTC Zeit: %s"; $a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; $a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; $a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:"; -$a->strings["Poke/Prod"] = "Anstupsen"; -$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"] = "Was willst Du mit dem Empfänger machen:"; -$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; -$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; -$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; -$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; -$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; -$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 Einladungen"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; -$a->strings["Send invitations"] = "Einladungen senden"; -$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; -$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Delete Album"] = "Album löschen"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; -$a->strings["a photo"] = "einem Foto"; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; -$a->strings["Upload Photos"] = "Bilder hochladen"; -$a->strings["New album name: "] = "Name des neuen Albums: "; -$a->strings["or existing album name: "] = "oder existierender Albumname: "; -$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Private Photo"] = "Privates Foto"; -$a->strings["Public Photo"] = "Öffentliches Foto"; -$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 betrachten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; -$a->strings["Photo not available"] = "Foto nicht verfügbar"; -$a->strings["View photo"] = "Fotos ansehen"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; -$a->strings["View Full Size"] = "Betrachte Originalgröße"; -$a->strings["Tags: "] = "Tags: "; -$a->strings["[Remove any tag]"] = "[Tag entfernen]"; -$a->strings["New album name"] = "Name des neuen Albums"; -$a->strings["Caption"] = "Bildunterschrift"; -$a->strings["Add a Tag"] = "Tag hinzufügen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Nicht rotieren"; -$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; -$a->strings["Private photo"] = "Privates Foto"; -$a->strings["Public photo"] = "Öffentliches Foto"; -$a->strings["Share"] = "Teilen"; +$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; +$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; +$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; +$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; +$a->strings["Upload File:"] = "Datei hochladen:"; +$a->strings["Select a profile:"] = "Profil auswählen:"; +$a->strings["Upload"] = "Hochladen"; +$a->strings["or"] = "oder"; +$a->strings["skip this step"] = "diesen Schritt überspringen"; +$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; +$a->strings["Crop Image"] = "Bild zurechtschneiden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; +$a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; +$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; +$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; +$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; +$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; +$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; +$a->strings["System check"] = "Systemtest"; +$a->strings["Check again"] = "Noch einmal testen"; +$a->strings["Database connection"] = "Datenbankverbindung"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."; +$a->strings["Database Server Name"] = "Datenbank-Server"; +$a->strings["Database Login Name"] = "Datenbank-Nutzer"; +$a->strings["Database Login Password"] = "Datenbank-Passwort"; +$a->strings["Database Name"] = "Datenbank-Name"; +$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; +$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; +$a->strings["Site settings"] = "Server-Einstellungen"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des 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. See 'Activating scheduled tasks'"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Pfad zu PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; +$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; +$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; +$a->strings["PHP cli binary"] = "PHP CLI Binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; +$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; +$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 Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; +$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; +$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; +$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; +$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; +$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; +$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; +$a->strings["mcrypt PHP module"] = "PHP mcrypt Modul"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist 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 Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; +$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."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."; +$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; +$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) Schreibrechte zu diesem Verzeichnis hat."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; +$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 Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; +$a->strings["

What next

"] = "

Wie geht es weiter?

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; $a->strings["Not Extended"] = "Nicht erweitert."; +$a->strings["Group created."] = "Gruppe erstellt."; +$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; +$a->strings["Group not found."] = "Gruppe nicht gefunden."; +$a->strings["Group name changed."] = "Gruppenname geändert."; +$a->strings["Save Group"] = "Gruppe speichern"; +$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; +$a->strings["Group Name: "] = "Gruppenname:"; +$a->strings["Group removed."] = "Gruppe entfernt."; +$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; +$a->strings["Group Editor"] = "Gruppeneditor"; +$a->strings["Members"] = "Mitglieder"; +$a->strings["No such group"] = "Es gibt keine solche Gruppe"; +$a->strings["Group is empty"] = "Gruppe ist leer"; +$a->strings["Group: %s"] = "Gruppe: %s"; +$a->strings["View in context"] = "Im Zusammenhang betrachten"; $a->strings["Account approved."] = "Konto freigegeben."; $a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen"; $a->strings["Please login."] = "Bitte melde Dich an."; -$a->strings["Move account"] = "Account umziehen"; -$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; -$a->strings["Account file"] = "Account Datei"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; -$a->strings["Item not available."] = "Beitrag nicht verfügbar."; -$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; +$a->strings["Profile Match"] = "Profilübereinstimmungen"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."; +$a->strings["is interested in:"] = "ist interessiert an:"; +$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; +$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; +$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; +$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."; +$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; +$a->strings["Mood"] = "Stimmung"; +$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"; +$a->strings["Search Results For: %s"] = "Suchergebnisse für: %s"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Commented Order"] = "Neueste Kommentare"; +$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; +$a->strings["Posted Order"] = "Neueste Beiträge"; +$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; +$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht"; +$a->strings["New"] = "Neue"; +$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; +$a->strings["Shared Links"] = "Geteilte Links"; +$a->strings["Interesting Links"] = "Interessante Links"; +$a->strings["Starred"] = "Markierte"; +$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", + 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; +$a->strings["Contact: %s"] = "Kontakt: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; +$a->strings["Invalid contact."] = "Ungültiger Kontakt."; +$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; +$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; +$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; +$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; +$a->strings["No mirroring"] = "Kein Spiegeln"; +$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; +$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; +$a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; +$a->strings["Account Nickname"] = "Konto-Spitzname"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; +$a->strings["Account URL"] = "Konto-URL"; +$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; +$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; +$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; +$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; +$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; +$a->strings["Remote Self"] = "Entfernte Konten"; +$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."; +$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +$a->strings["Your profile page"] = "Deine Profilseite"; +$a->strings["Your contacts"] = "Deine Kontakte"; +$a->strings["Your photos"] = "Deine Fotos"; +$a->strings["Your events"] = "Deine Ereignisse"; +$a->strings["Personal notes"] = "Persönliche Notizen"; +$a->strings["Your personal photos"] = "Deine privaten Fotos"; +$a->strings["Community Pages"] = "Foren"; +$a->strings["Community Profiles"] = "Community-Profile"; +$a->strings["Last users"] = "Letzte Nutzer"; +$a->strings["Last likes"] = "Zuletzt gemocht"; +$a->strings["event"] = "Veranstaltung"; +$a->strings["Last photos"] = "Letzte Fotos"; +$a->strings["Find Friends"] = "Freunde finden"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; +$a->strings["Similar Interests"] = "Ähnliche Interessen"; +$a->strings["Invite Friends"] = "Freunde einladen"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; +$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; +$a->strings["Connect Services"] = "Verbinde Dienste"; +$a->strings["don't show"] = "nicht zeigen"; +$a->strings["show"] = "zeigen"; +$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; +$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; +$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; +$a->strings["Set color scheme"] = "Wähle Farbschema"; +$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; +$a->strings["Set style"] = "Stil auswählen"; +$a->strings["Set colour scheme"] = "Farbschema wählen"; +$a->strings["default"] = "Standard"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Variationen"; +$a->strings["Alignment"] = "Ausrichtung"; +$a->strings["Left"] = "Links"; +$a->strings["Center"] = "Mitte"; +$a->strings["Color scheme"] = "Farbschema"; +$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; +$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; +$a->strings["Set theme width"] = "Theme Breite festlegen"; +$a->strings["Click here to download"] = "Zum Download hier klicken"; +$a->strings["Create new pull request"] = "Neuer Pull Request"; +$a->strings["Reload active plugins"] = "Aktive Plugins neu laden"; +$a->strings["Drop contact"] = "Kontakt löschen"; +$a->strings["Public projects on this node"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite"; +$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = "Möchtest du das Projekt '%s' löschen?\\n\\nDies kann nicht rückgängig gemacht werden."; +$a->strings["Visibility"] = "Sichtbarkeit"; +$a->strings["Create"] = "Erstellen"; +$a->strings["No pull requests to show"] = "Keine Pull Requests zum Anzeigen vorhanden"; +$a->strings["opened by"] = "geöffnet von"; +$a->strings["closed"] = "Geschlossen"; +$a->strings["merged"] = "merged"; +$a->strings["Projects"] = "Projekte"; +$a->strings["add new"] = "neue hinzufügen"; +$a->strings["delete"] = "löschen"; +$a->strings["Clone this project:"] = "Dieses Projekt clonen"; +$a->strings["New pull request"] = "Neuer Pull Request"; +$a->strings["Can't show you the diff at the moment. Sorry"] = "Entschuldigung, aber ich kann dir die Unterschiede gerade nicht anzeigen."; $a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; $a->strings["show fewer"] = "weniger anzeigen"; $a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; @@ -1312,40 +1406,6 @@ $a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen"; $a->strings["terms of service"] = "Nutzungsbedingungen"; $a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; $a->strings["privacy policy"] = "Datenschutzerklärung"; -$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; -$a->strings["ignore thread"] = "Thread ignorieren"; -$a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; -$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["ignored"] = "Ignoriert"; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Abgelegt unter:"; -$a->strings["via"] = "via"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; -$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; -$a->strings["Logged out."] = "Abgemeldet."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."; -$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; -$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; -$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -$a->strings["Find People"] = "Leute finden"; -$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; -$a->strings["Similar Interests"] = "Ähnliche Interessen"; -$a->strings["Random Profile"] = "Zufälliges Profil"; -$a->strings["Invite Friends"] = "Freunde einladen"; -$a->strings["Networks"] = "Netzwerke"; -$a->strings["All Networks"] = "Alle Netzwerke"; -$a->strings["Saved Folders"] = "Gespeicherte Ordner"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Kategorien"; $a->strings["General Features"] = "Allgemeine Features"; $a->strings["Multiple Profiles"] = "Mehrere Profile"; $a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; @@ -1380,6 +1440,7 @@ $a->strings["Tagging"] = "Tagging"; $a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."; $a->strings["Post Categories"] = "Beitragskategorien"; $a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; $a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren"; $a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'"; $a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"; @@ -1387,126 +1448,13 @@ $a->strings["Star Posts"] = "Beiträge Markieren"; $a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; $a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten"; $a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"; -$a->strings["Connect URL missing."] = "Connect-URL fehlt"; -$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; -$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; -$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; -$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; -$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."; -$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; -$a->strings["following"] = "folgen"; -$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."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; -$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; -$a->strings["Everybody"] = "Alle Kontakte"; -$a->strings["edit"] = "bearbeiten"; -$a->strings["Edit group"] = "Gruppe bearbeiten"; -$a->strings["Create a new group"] = "Neue Gruppe erstellen"; -$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD"; -$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"] = "%1\$d %2\$s her"; -$a->strings["%s's birthday"] = "%ss Geburtstag"; -$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; -$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Edit profile"] = "Profil bearbeiten"; -$a->strings["Message"] = "Nachricht"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; -$a->strings["Network:"] = "Netzwerk"; -$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"] = "Geburtstagserinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; -$a->strings["[No description]"] = "[keine Beschreibung]"; -$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; -$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; -$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"] = "für %1\$d %2\$s"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Literatur/Bücher:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebesleben:"; -$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["Profile Details"] = "Profildetails"; -$a->strings["Videos"] = "Videos"; -$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; -$a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; -$a->strings["Post to Email"] = "An E-Mail senden"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; -$a->strings["Visible to everybody"] = "Für jeden sichtbar"; -$a->strings["show"] = "zeigen"; -$a->strings["don't show"] = "nicht zeigen"; +$a->strings["Logged out."] = "Abgemeldet."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."; +$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; $a->strings["[no subject]"] = "[kein Betreff]"; -$a->strings["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["View Status"] = "Pinnwand anschauen"; -$a->strings["View Profile"] = "Profil anschauen"; -$a->strings["View Photos"] = "Bilder anschauen"; -$a->strings["Network Posts"] = "Netzwerkbeiträge"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Drop Contact"] = "Kontakt löschen"; -$a->strings["Send PM"] = "Private Nachricht senden"; -$a->strings["Welcome "] = "Willkommen "; -$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; -$a->strings["Welcome back "] = "Willkommen zurück "; -$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 Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; -$a->strings["event"] = "Veranstaltung"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; -$a->strings["post/item"] = "Nachricht/Beitrag"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; -$a->strings["remove"] = "löschen"; -$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; -$a->strings["Follow Thread"] = "Folge der Unterhaltung"; -$a->strings["%s likes this."] = "%s mag das."; -$a->strings["%s doesn't like this."] = "%s mag das nicht."; -$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = " und %d andere"; -$a->strings["%s like this."] = "%s mögen das."; -$a->strings["%s don't like this."] = "%s mögen das nicht."; -$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; -$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; -$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; -$a->strings["Delete item(s)?"] = "Einträge löschen?"; -$a->strings["permissions"] = "Zugriffsrechte"; -$a->strings["Post to Groups"] = "Poste an Gruppe"; -$a->strings["Post to Contacts"] = "Poste an Kontakte"; -$a->strings["Private post"] = "Privater Beitrag"; -$a->strings["view full size"] = "Volle Größe anzeigen"; +$a->strings[" on Last.fm"] = " bei Last.fm"; $a->strings["newer"] = "neuer"; $a->strings["older"] = "älter"; $a->strings["prev"] = "vorige"; @@ -1578,84 +1526,10 @@ $a->strings["bytes"] = "Byte"; $a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; $a->strings["View on separate page"] = "Auf separater Seite ansehen"; $a->strings["view on separate page"] = "auf separater Seite ansehen"; -$a->strings["default"] = "Standard"; $a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; $a->strings["activity"] = "Aktivität"; $a->strings["post"] = "Beitrag"; $a->strings["Item filed"] = "Beitrag abgelegt"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; -$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["(no subject)"] = "(kein Betreff)"; -$a->strings["noreply"] = "noreply"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; -$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; -$a->strings["Block immediately"] = "Sofort blockieren"; -$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; -$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; -$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; -$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; -$a->strings["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zott"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/Chat"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora"; -$a->strings["Statusnet"] = "StatusNet"; -$a->strings["App.net"] = "App.net"; -$a->strings["Redmatrix"] = "Redmatrix"; -$a->strings[" on Last.fm"] = " bei Last.fm"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements."; -$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar."; -$a->strings["End this session"] = "Diese Sitzung beenden"; -$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Your photos"] = "Deine Fotos"; -$a->strings["Your videos"] = "Deine Videos"; -$a->strings["Your events"] = "Deine Ereignisse"; -$a->strings["Personal notes"] = "Persönliche Notizen"; -$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; -$a->strings["Sign in"] = "Anmelden"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Create an account"] = "Nutzerkonto erstellen"; -$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; -$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; -$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; -$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; -$a->strings["Directory"] = "Verzeichnis"; -$a->strings["People directory"] = "Nutzerverzeichnis"; -$a->strings["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; -$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte"; -$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; -$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; -$a->strings["Friend Requests"] = "Kontaktanfragen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; -$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; -$a->strings["Private mail"] = "Private E-Mail"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["Manage"] = "Verwalten"; -$a->strings["Manage other pages"] = "Andere Seiten verwalten"; -$a->strings["Account settings"] = "Kontoeinstellungen"; -$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; -$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; -$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Sitemap"; $a->strings["User not found."] = "Nutzer nicht gefunden."; $a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; $a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; @@ -1665,29 +1539,66 @@ $a->strings["There is no conversation with this id."] = "Es existiert keine Unte $a->strings["Invalid item."] = "Ungültiges Objekt"; $a->strings["Invalid action. "] = "Ungültige Aktion"; $a->strings["DB error"] = "DB Error"; -$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; -$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; -$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; -$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; -$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; -$a->strings["Name too short."] = "Der Name ist zu kurz."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."; -$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; -$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; -$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; -$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; -$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["Friends"] = "Freunde"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s."; -$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; -$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; +$a->strings["%s's birthday"] = "%ss Geburtstag"; +$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; $a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?"; $a->strings["Archives"] = "Archiv"; +$a->strings["(no subject)"] = "(kein Betreff)"; +$a->strings["noreply"] = "noreply"; +$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; +$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Edit profile"] = "Profil bearbeiten"; +$a->strings["Message"] = "Nachricht"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; +$a->strings["Network:"] = "Netzwerk"; +$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"] = "Geburtstagserinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; +$a->strings["[No description]"] = "[keine Beschreibung]"; +$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; +$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; +$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"] = "für %1\$d %2\$s"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Literatur/Bücher:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebesleben:"; +$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["Profile Details"] = "Profildetails"; +$a->strings["Videos"] = "Videos"; +$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; +$a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; +$a->strings["Connect URL missing."] = "Connect-URL fehlt"; +$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; +$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; +$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; +$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; +$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."; +$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; +$a->strings["following"] = "folgen"; +$a->strings["Welcome "] = "Willkommen "; +$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; +$a->strings["Welcome back "] = "Willkommen zurück "; +$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 Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; $a->strings["Male"] = "Männlich"; $a->strings["Female"] = "Weiblich"; $a->strings["Currently Male"] = "Momentan männlich"; @@ -1724,6 +1635,7 @@ $a->strings["Infatuated"] = "verliebt"; $a->strings["Dating"] = "Dating"; $a->strings["Unfaithful"] = "Untreu"; $a->strings["Sex Addict"] = "Sexbesessen"; +$a->strings["Friends"] = "Freunde"; $a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Verlobt"; @@ -1745,6 +1657,121 @@ $a->strings["Uncertain"] = "Unsicher"; $a->strings["It's complicated"] = "Ist kompliziert"; $a->strings["Don't care"] = "Ist mir nicht wichtig"; $a->strings["Ask me"] = "Frag mich"; +$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; +$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; +$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; +$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; +$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; +$a->strings["%d contact not imported"] = array( + 0 => "%d Kontakt nicht importiert", + 1 => "%d Kontakte nicht importiert", +); +$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"; +$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements."; +$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar."; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; +$a->strings["post/item"] = "Nachricht/Beitrag"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; +$a->strings["remove"] = "löschen"; +$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; +$a->strings["Follow Thread"] = "Folge der Unterhaltung"; +$a->strings["View Status"] = "Pinnwand anschauen"; +$a->strings["View Profile"] = "Profil anschauen"; +$a->strings["View Photos"] = "Bilder anschauen"; +$a->strings["Network Posts"] = "Netzwerkbeiträge"; +$a->strings["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Send PM"] = "Private Nachricht senden"; +$a->strings["Poke"] = "Anstupsen"; +$a->strings["%s likes this."] = "%s mag das."; +$a->strings["%s doesn't like this."] = "%s mag das nicht."; +$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = " und %d andere"; +$a->strings["%s like this."] = "%s mögen das."; +$a->strings["%s don't like this."] = "%s mögen das nicht."; +$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; +$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; +$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; +$a->strings["Delete item(s)?"] = "Einträge löschen?"; +$a->strings["permissions"] = "Zugriffsrechte"; +$a->strings["Post to Groups"] = "Poste an Gruppe"; +$a->strings["Post to Contacts"] = "Poste an Kontakte"; +$a->strings["Private post"] = "Privater Beitrag"; +$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; +$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +$a->strings["Find People"] = "Leute finden"; +$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; +$a->strings["Random Profile"] = "Zufälliges Profil"; +$a->strings["Networks"] = "Netzwerke"; +$a->strings["All Networks"] = "Alle Netzwerke"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Kategorien"; +$a->strings["End this session"] = "Diese Sitzung beenden"; +$a->strings["Your videos"] = "Deine Videos"; +$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; +$a->strings["Sign in"] = "Anmelden"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Create an account"] = "Nutzerkonto erstellen"; +$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; +$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; +$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; +$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["People directory"] = "Nutzerverzeichnis"; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; +$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte"; +$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; +$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; +$a->strings["Friend Requests"] = "Kontaktanfragen"; +$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; +$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; +$a->strings["Private mail"] = "Private E-Mail"; +$a->strings["Inbox"] = "Eingang"; +$a->strings["Outbox"] = "Ausgang"; +$a->strings["Manage"] = "Verwalten"; +$a->strings["Manage other pages"] = "Andere Seiten verwalten"; +$a->strings["Account settings"] = "Kontoeinstellungen"; +$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; +$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; +$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; +$a->strings["Block immediately"] = "Sofort blockieren"; +$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; +$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; +$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; +$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; +$a->strings["Weekly"] = "Wöchentlich"; +$a->strings["Monthly"] = "Monatlich"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zott"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/Chat"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora"; +$a->strings["Statusnet"] = "StatusNet"; +$a->strings["App.net"] = "App.net"; +$a->strings["Redmatrix"] = "Redmatrix"; $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; $a->strings["Thank You,"] = "Danke,"; $a->strings["%s Administrator"] = "der Administrator von %s"; @@ -1802,55 +1829,64 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "D $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten."; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"; $a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten."; +$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; +$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; +$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; +$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; +$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; +$a->strings["Name too short."] = "Der Name ist zu kurz."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."; +$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; +$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; +$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; +$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; +$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s."; +$a->strings["Post to Email"] = "An E-Mail senden"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; +$a->strings["Visible to everybody"] = "Für jeden sichtbar"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; +$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; $a->strings["Embedded content"] = "Eingebetteter Inhalt"; $a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; -$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; -$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; -$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; -$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; -$a->strings["%d contact not imported"] = array( - 0 => "%d Kontakt nicht importiert", - 1 => "%d Kontakte nicht importiert", -); -$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"; -$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; -$a->strings["Set theme width"] = "Theme Breite festlegen"; -$a->strings["Color scheme"] = "Farbschema"; -$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; -$a->strings["Set colour scheme"] = "Farbschema wählen"; -$a->strings["Alignment"] = "Ausrichtung"; -$a->strings["Left"] = "Links"; -$a->strings["Center"] = "Mitte"; -$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; -$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; -$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; -$a->strings["Set color scheme"] = "Wähle Farbschema"; -$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; -$a->strings["Community Pages"] = "Foren"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Community-Profile"; -$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; -$a->strings["Connect Services"] = "Verbinde Dienste"; -$a->strings["Find Friends"] = "Freunde finden"; -$a->strings["Last users"] = "Letzte Nutzer"; -$a->strings["Last photos"] = "Letzte Fotos"; -$a->strings["Last likes"] = "Zuletzt gemocht"; -$a->strings["Your contacts"] = "Deine Kontakte"; -$a->strings["Your personal photos"] = "Deine privaten Fotos"; -$a->strings["Local Directory"] = "Lokales Verzeichnis"; -$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; -$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; -$a->strings["Set style"] = "Stil auswählen"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Variationen"; +$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."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; +$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; +$a->strings["Everybody"] = "Alle Kontakte"; +$a->strings["edit"] = "bearbeiten"; +$a->strings["Edit group"] = "Gruppe bearbeiten"; +$a->strings["Create a new group"] = "Neue Gruppe erstellen"; +$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; +$a->strings["stopped following"] = "wird nicht mehr gefolgt"; +$a->strings["Drop Contact"] = "Kontakt löschen"; +$a->strings["Miscellaneous"] = "Verschiedenes"; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD"; +$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"] = "%1\$d %2\$s her"; +$a->strings["view full size"] = "Volle Größe anzeigen"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; +$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; From fd80e75693e71efb11bcea4cc93f04dda22dd4d9 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 12:02:44 +0200 Subject: [PATCH 16/47] Documentation of .htconfig.php values --- doc/Home.md | 1 + doc/de/Home.md | 1 + doc/htconfig.md | 72 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 doc/htconfig.md diff --git a/doc/Home.md b/doc/Home.md index ff991e3d2a..11b1f9e159 100644 --- a/doc/Home.md +++ b/doc/Home.md @@ -33,6 +33,7 @@ Friendica Documentation and Resources * [Message Flow](help/Message-Flow) * [Using SSL with Friendica](help/SSL) * [Twitter/GNU Social API Functions](help/api) +* [Config values that can only be set in .htconfig.php](help/htconfig) **Developer Manual** diff --git a/doc/de/Home.md b/doc/de/Home.md index 561809d6ce..a101b5f734 100644 --- a/doc/de/Home.md +++ b/doc/de/Home.md @@ -37,6 +37,7 @@ Friendica - Dokumentation und Ressourcen * [Entwickler](help/Developers) * [Twitter/GNU Social API Functions](help/api) (EN) * [Translation of Friendica](help/translations) (EN) +* [Konfigurationswerte, die nur in der .htconfig.php gesetzt werden können](help/htconfig) (EN) **Entwickler Dokumentation** diff --git a/doc/htconfig.md b/doc/htconfig.md new file mode 100644 index 0000000000..4c2318129e --- /dev/null +++ b/doc/htconfig.md @@ -0,0 +1,72 @@ +Config values that can only be set in .htconfig.php +=================================================== + +There are some config values that haven't found their way into the administration page. This has several reasons. Maybe they are part of a +current development that isn't considered stable and will be added later in the administration page when it is considered safe. Or it triggers +something that isn't expected to be of public interest. Or it is for testing purposes only. + +Please be warned that you shouldn't use one of these values without the knowledge what it could trigger. Especially don't do that with +undocumented values. + +## Jabber ## +* debug (Boolean) - Enable debug level for the jabber account synchronisation. +* logfile - Logfile for the jabber account synchronisation. + +## System ## + +* birthday_input_format - Default value is "ymd". +* block_local_dir (Boolean) - Blocks the access to the directory of the local users. +* default_service_class - +* delivery_batch_count - Number of deliveries per process. Default value is 1. (Disabled when using the worker) +* diaspora_test (Boolean) - For development only. Disables the message transfer. +* directory - The path to global directory. If not set then "http://dir.friendi.ca" is used. +* disable_email_validation (Boolean) - Disables the check if a mail address is in a valid format and can be resolved via DNS. +* disable_url_validation (Boolean) - Disables the DNS lookup of an URL. +* event_input_format - Default value is "ymd". +* ignore_cache (Boolean) - For development only. Disables the item cache. +* like_no_comment (Boolean) - Don't update the "commented" value of an item when it is liked. +* local_block (Boolean) - Used in conjunction with "block_public". +* local_search (Boolean) - Blocks the search for not logged in users to prevent crawlers from blocking your system. +* max_contact_queue - Default value is 500. +* max_batch_queue - Default value is 1000. +* no_oembed (Boolean) - Don't use OEmbed to fetch more information about a link. +* no_oembed_rich_content (Boolean) - Don't show the rich content (e.g. embedded PDF). +* no_smilies (Boolean) - Don't show smilies. +* no_view_full_size (Boolean) - Don't add the link "View full size" under a resized image. +* optimize_items (Boolean) - Triggers an SQL command to optimize the item table before expiring items. +* ostatus_poll_timeframe - Defines how old an item can be to try to complete the conversation with it. +* paranoia (Boolean) - Log out users if their IP address changed. +* permit_crawling (Boolean) - Restricts the search for not logged in users to one search per minute. +* png_quality - Default value is 8. +* proc_windows (Boolean) - Should be enabled if Friendica is running under Windows. +* proxy_cache_time - Time after which the cache is cleared. Default value is one day. +* pushpoll_frequency - +* qsearch_limit - Default value is 100. +* relay_server - Experimental Diaspora feature. Address of the relay server where public posts should be send to. For example https://podrelay.net +* relay_subscribe (Boolean) - Enables the receiving of public posts from the relay. They will be included in the search and on the community page when it is set up to show all public items. +* relay_scope - Can be "all" or "tags". "all" means that every public post should be received. "tags" means that only posts witt selected tags should be received. +* relay_server_tags - Comma separated list of tags for the "tags" subscription (see "relay_scrope") +* relay_user_tags (Boolean) - If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags". +* remove_multiplicated_lines (Boolean) - If enabled, multiple linefeeds in items are stripped to a single one. +* show_unsupported_addons (Boolean) - Show all addons including the unsupported ones. +* show_unsupported_themes (Boolean) - Show all themes including the unsupported ones. +* throttle_limit_day - Maximum number of posts that a user can send per day with the API. +* throttle_limit_week - Maximum number of posts that a user can send per week with the API. +* throttle_limit_month - Maximum number of posts that a user can send per month with the API. +* wall-to-wall_share (Boolean) - Displays forwarded posts like "wall-to-wall" posts. +* worker (Boolean) - (Experimental) Use the worker system instead of calling several background processes. Reduces the overall load and speeds up item delivery. +* worker_dont_fork (Boolean) - if enabled, the workers are only called from the poller process. Useful on systems that permit the use of "proc_open". +* worker_queues - Number of parallel workers. Default value is 10 queues. +* xrd_timeout - Timeout for fetching the XRD links. Default value is 20 seconds. + +## service_class ## + +* upgrade_link - + +## experimentals ## + +* exp_themes (Boolean) - Show experimental themes as well. + +## theme ## + +* hide_eventlist (Boolean) - Don't show the birthdays and events on the profile and network page From 3b18c6cb0c7e8761017a494ae3dbc5413f4cb674 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 12:24:00 +0200 Subject: [PATCH 17/47] Small optical changes in "vier" --- view/theme/vier/style.css | 2 +- view/theme/vier/wide.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index aadd09c61d..d6d13b9d3c 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -874,7 +874,7 @@ ul.menu-popup .empty { right_aside { width: 0px; top: 32px; - display: block; + display: none; } /* aside */ diff --git a/view/theme/vier/wide.css b/view/theme/vier/wide.css index ecffd485e0..6f8d5427cc 100644 --- a/view/theme/vier/wide.css +++ b/view/theme/vier/wide.css @@ -39,7 +39,7 @@ right_aside img.directory-photo-img { } right_aside #right_services img { - width: 32px; + width: 34px; } right_aside #lastusers-wrapper, From 1d71dde7ef40736cd98cf96b9afb4fb5e7e713f3 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 14:40:02 +0200 Subject: [PATCH 18/47] Beautyfied code. Link to "follow" on community profiles --- view/theme/vier/config.php | 58 +++++++++++++++++++------------------- view/theme/vier/theme.php | 3 +- 2 files changed, 31 insertions(+), 30 deletions(-) diff --git a/view/theme/vier/config.php b/view/theme/vier/config.php index 5084a26053..9f4fb0f93a 100644 --- a/view/theme/vier/config.php +++ b/view/theme/vier/config.php @@ -17,12 +17,12 @@ function theme_content(&$a){ if ($style == "") $style = "plus"; - $show_pages = get_vier_config('show_pages', true); - $show_profiles = get_vier_config('show_profiles', true); - $show_helpers = get_vier_config('show_helpers', true); - $show_services = get_vier_config('show_services', true); - $show_friends = get_vier_config('show_friends', true); - $show_lastusers = get_vier_config('show_lastusers', true); + $show_pages = get_vier_config('show_pages', true); + $show_profiles = get_vier_config('show_profiles', true); + $show_helpers = get_vier_config('show_helpers', true); + $show_services = get_vier_config('show_services', true); + $show_friends = get_vier_config('show_friends', true); + $show_lastusers = get_vier_config('show_lastusers', true); return vier_form($a,$style, $show_pages, $show_profiles, $show_helpers, $show_services, $show_friends, $show_lastusers); @@ -34,12 +34,12 @@ function theme_post(&$a){ if (isset($_POST['vier-settings-submit'])){ set_pconfig(local_user(), 'vier', 'style', $_POST['vier_style']); - set_pconfig(local_user(), 'vier', 'show_pages', $_POST['vier_show_pages']); - set_pconfig(local_user(), 'vier', 'show_profiles', $_POST['vier_show_profiles']); - set_pconfig(local_user(), 'vier', 'show_helpers', $_POST['vier_show_helpers']); - set_pconfig(local_user(), 'vier', 'show_services', $_POST['vier_show_services']); - set_pconfig(local_user(), 'vier', 'show_friends', $_POST['vier_show_friends']); - set_pconfig(local_user(), 'vier', 'show_lastusers', $_POST['vier_show_lastusers']); + set_pconfig(local_user(), 'vier', 'show_pages', $_POST['vier_show_pages']); + set_pconfig(local_user(), 'vier', 'show_profiles', $_POST['vier_show_profiles']); + set_pconfig(local_user(), 'vier', 'show_helpers', $_POST['vier_show_helpers']); + set_pconfig(local_user(), 'vier', 'show_services', $_POST['vier_show_services']); + set_pconfig(local_user(), 'vier', 'show_friends', $_POST['vier_show_friends']); + set_pconfig(local_user(), 'vier', 'show_lastusers', $_POST['vier_show_lastusers']); } } @@ -57,12 +57,12 @@ function theme_admin(&$a){ '$helperlist' => array('vier_helperlist', t('Comma separated list of helper forums'), $helperlist, '', ''), )); - $show_pages = get_vier_config('show_pages', true, true); - $show_profiles = get_vier_config('show_profiles', true, true); - $show_helpers = get_vier_config('show_helpers', true, true); - $show_services = get_vier_config('show_services', true, true); - $show_friends = get_vier_config('show_friends', true, true); - $show_lastusers = get_vier_config('show_lastusers', true, true); + $show_pages = get_vier_config('show_pages', true, true); + $show_profiles = get_vier_config('show_profiles', true, true); + $show_helpers = get_vier_config('show_helpers', true, true); + $show_services = get_vier_config('show_services', true, true); + $show_friends = get_vier_config('show_friends', true, true); + $show_lastusers = get_vier_config('show_lastusers', true, true); $o .= vier_form($a,$style, $show_pages, $show_profiles, $show_helpers, $show_services, $show_friends, $show_lastusers); @@ -73,11 +73,11 @@ function theme_admin_post(&$a){ if (isset($_POST['vier-settings-submit'])){ set_config('vier', 'style', $_POST['vier_style']); set_config('vier', 'show_pages', $_POST['vier_show_pages']); - set_config('vier', 'show_profiles', $_POST['vier_show_profiles']); - set_config('vier', 'show_helpers', $_POST['vier_show_helpers']); - set_config('vier', 'show_services', $_POST['vier_show_services']); - set_config('vier', 'show_friends', $_POST['vier_show_friends']); - set_config('vier', 'show_lastusers', $_POST['vier_show_lastusers']); + set_config('vier', 'show_profiles', $_POST['vier_show_profiles']); + set_config('vier', 'show_helpers', $_POST['vier_show_helpers']); + set_config('vier', 'show_services', $_POST['vier_show_services']); + set_config('vier', 'show_friends', $_POST['vier_show_friends']); + set_config('vier', 'show_lastusers', $_POST['vier_show_lastusers']); set_config('vier', 'helperlist', $_POST['vier_helperlist']); } } @@ -93,7 +93,7 @@ function vier_form(&$a, $style, $show_pages, $show_profiles, $show_helpers, $sho "flat"=>"Flat" ); - $show_or_not = array('0'=>t("don't show"), '1'=>t("show"),); + $show_or_not = array('0'=>t("don't show"), '1'=>t("show"),); $t = get_markup_template("theme_settings.tpl"); $o .= replace_macros($t, array( @@ -102,11 +102,11 @@ function vier_form(&$a, $style, $show_pages, $show_profiles, $show_helpers, $sho '$title' => t("Theme settings"), '$style' => array('vier_style',t ('Set style'),$style,'',$styles), '$show_pages' => array('vier_show_pages', t('Community Pages'), $show_pages, '', $show_or_not), - '$show_profiles' => array('vier_show_profiles', t('Community Profiles'), $show_profiles, '', $show_or_not), - '$show_helpers' => array('vier_show_helpers', t('Help or @NewHere ?'), $show_helpers, '', $show_or_not), - '$show_services' => array('vier_show_services', t('Connect Services'), $show_services, '', $show_or_not), - '$show_friends' => array('vier_show_friends', t('Find Friends'), $show_friends, '', $show_or_not), - '$show_lastusers' => array('vier_show_lastusers', t('Last users'), $show_lastusers, '', $show_or_not) + '$show_profiles' => array('vier_show_profiles', t('Community Profiles'), $show_profiles, '', $show_or_not), + '$show_helpers' => array('vier_show_helpers', t('Help or @NewHere ?'), $show_helpers, '', $show_or_not), + '$show_services' => array('vier_show_services', t('Connect Services'), $show_services, '', $show_or_not), + '$show_friends' => array('vier_show_friends', t('Find Friends'), $show_friends, '', $show_or_not), + '$show_lastusers' => array('vier_show_lastusers', t('Last users'), $show_lastusers, '', $show_or_not) )); return $o; } diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index df28c0689e..6d3ac1caf6 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -130,7 +130,8 @@ function vier_community_info() { foreach($r as $rr) { $entry = replace_macros($tpl,array( '$id' => $rr['id'], - '$profile_link' => zrl($rr['url']), + //'$profile_link' => zrl($rr['url']), + '$profile_link' => $a->get_baseurl().'/follow/?url='.urlencode($rr['url']), '$photo' => proxy_url($rr['photo']), '$alt_text' => $rr['name'], )); From d0ae5ce3263ec96250ecc1da0031f420891a370f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 14:41:39 +0200 Subject: [PATCH 19/47] Show more information when following a new contact --- mod/follow.php | 48 ++++++++++++++++++++------------- mod/notifications.php | 1 - object/Item.php | 2 +- view/templates/auto_request.tpl | 7 +++-- view/templates/dfrn_request.tpl | 5 ++++ 5 files changed, 40 insertions(+), 23 deletions(-) mode change 100755 => 100644 mod/follow.php diff --git a/mod/follow.php b/mod/follow.php old mode 100755 new mode 100644 index dd717aacd9..603707809b --- a/mod/follow.php +++ b/mod/follow.php @@ -61,6 +61,9 @@ function follow_content(&$a) { // Makes the connection request for friendica contacts easier $_SESSION["fastlane"] = $ret["url"]; + $r = q("SELECT `location`, `about`, `keywords` FROM `gcontact` WHERE `nurl` = '%s'", + normalise_link($ret["url"])); + $header = $ret["name"]; if ($ret["addr"] != "") @@ -71,25 +74,32 @@ function follow_content(&$a) { $o = replace_macros($tpl,array( '$header' => htmlentities($header), '$photo' => $ret["photo"], - '$desc' => "", - '$pls_answer' => t('Please answer the following:'), - '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))), - '$add_note' => t('Add a personal note:'), - '$page_desc' => "", - '$friendica' => "", - '$statusnet' => "", - '$diaspora' => "", - '$diasnote' => "", - '$your_address' => t('Your Identity Address:'), - '$invite_desc' => "", - '$emailnet' => "", - '$submit' => t('Submit Request'), - '$cancel' => t('Cancel'), - '$nickname' => "", - '$name' => $ret["name"], - '$url' => $ret["url"], - '$myaddr' => $myaddr, - '$request' => $request + '$desc' => "", + '$pls_answer' => t('Please answer the following:'), + '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))), + '$add_note' => t('Add a personal note:'), + '$page_desc' => "", + '$friendica' => "", + '$statusnet' => "", + '$diaspora' => "", + '$diasnote' => "", + '$your_address' => t('Your Identity Address:'), + '$invite_desc' => "", + '$emailnet' => "", + '$submit' => t('Submit Request'), + '$cancel' => t('Cancel'), + '$nickname' => "", + '$name' => $ret["name"], + '$url' => $ret["url"], + '$url_label' => t("Profile URL"), + '$myaddr' => $myaddr, + '$request' => $request, + '$location' => bbcode($r[0]["location"]), + '$location_label' => t("Location:"), + '$about' => bbcode($r[0]["about"]), + '$about_label' => t("About:"), + '$keywords' => bbcode($r[0]["keywords"]), + '$keywords_label' => t("Tags:") )); return $o; } diff --git a/mod/notifications.php b/mod/notifications.php index 44f6dd5675..1fc31c3eb9 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -216,7 +216,6 @@ function notifications_content(&$a) { '$contact_id' => $rr['contact-id'], '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo']) : "images/person-175.jpg"), '$fullname' => $rr['name'], - '$location_label' => t('Location:'), '$location' => $rr['glocation'], '$location_label' => t('Location:'), '$about' => proxy_parse_html(bbcode($rr['gabout'], false, false)), diff --git a/object/Item.php b/object/Item.php index 8d364e6023..c7a025861f 100644 --- a/object/Item.php +++ b/object/Item.php @@ -644,7 +644,7 @@ class Item extends BaseObject { if(!$this->is_toplevel() && !(get_config('system','thread_allow') && $a->theme_thread_allow)) { return ''; } - + $comment_box = ''; $conv = $this->get_conversation(); $template = get_markup_template($this->get_comment_box_template()); diff --git a/view/templates/auto_request.tpl b/view/templates/auto_request.tpl index 56653c6550..09e6163325 100644 --- a/view/templates/auto_request.tpl +++ b/view/templates/auto_request.tpl @@ -1,5 +1,3 @@ - -

{{$header}}

{{if $myaddr == ""}} @@ -30,6 +28,11 @@ {{/if}} +{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} +{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} +{{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} +{{if $about}}
{{$about_label}}
{{$about}}
{{/if}} +
{{if $myaddr}} diff --git a/view/templates/dfrn_request.tpl b/view/templates/dfrn_request.tpl index 6c63c53315..d376b3a5d5 100644 --- a/view/templates/dfrn_request.tpl +++ b/view/templates/dfrn_request.tpl @@ -27,6 +27,11 @@ {{/if}} +{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} +{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} +{{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} +{{if $about}}
{{$about_label}}
{{$about}}
{{/if}} +
{{if $myaddr}} From ba41336099141a25b84291c1bbd8366dc9797d1b Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 14:49:12 +0200 Subject: [PATCH 20/47] Preparation for a not found contact. --- mod/follow.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mod/follow.php b/mod/follow.php index 603707809b..b635b3493b 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -64,6 +64,9 @@ function follow_content(&$a) { $r = q("SELECT `location`, `about`, `keywords` FROM `gcontact` WHERE `nurl` = '%s'", normalise_link($ret["url"])); + if (!$r) + $r = array(array("location" => "", "about" => "", "keywords" => "")); + $header = $ret["name"]; if ($ret["addr"] != "") From 83ea4f72538bb4cd2e79979307744933010a2082 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 15:55:24 +0200 Subject: [PATCH 21/47] transfer some stuff from "follow" to the "notifications" to reduce the differences in the two dialogues. --- mod/follow.php | 4 ++-- mod/notifications.php | 3 ++- view/templates/intros.tpl | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/mod/follow.php b/mod/follow.php index b635b3493b..7b1957c93b 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -99,9 +99,9 @@ function follow_content(&$a) { '$request' => $request, '$location' => bbcode($r[0]["location"]), '$location_label' => t("Location:"), - '$about' => bbcode($r[0]["about"]), + '$about' => proxy_parse_html(bbcode($r[0]["about"], false, false)), '$about_label' => t("About:"), - '$keywords' => bbcode($r[0]["keywords"]), + '$keywords' => $r[0]["keywords"], '$keywords_label' => t("Tags:") )); return $o; diff --git a/mod/notifications.php b/mod/notifications.php index 1fc31c3eb9..831beee765 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -216,7 +216,7 @@ function notifications_content(&$a) { '$contact_id' => $rr['contact-id'], '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo']) : "images/person-175.jpg"), '$fullname' => $rr['name'], - '$location' => $rr['glocation'], + '$location' => bbcode($rr['glocation'], false, false), '$location_label' => t('Location:'), '$about' => proxy_parse_html(bbcode($rr['gabout'], false, false)), '$about_label' => t('About:'), @@ -227,6 +227,7 @@ function notifications_content(&$a) { '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$activity' => array('activity', t('Post a new friend activity'), (intval(get_pconfig(local_user(),'system','post_newfriend')) ? '1' : 0), t('if applicable')), '$url' => zrl($rr['url']), + '$url_label' => t('Profile URL'), '$knowyou' => $knowyou, '$approve' => t('Approve'), '$note' => $rr['note'], diff --git a/view/templates/intros.tpl b/view/templates/intros.tpl index aa10cde48f..d50b14cd41 100644 --- a/view/templates/intros.tpl +++ b/view/templates/intros.tpl @@ -5,6 +5,7 @@

{{$str_notifytype}} {{$notify_type}}

{{$fullname}}
{{$fullname|escape:'html'}} +
{{$url_label}}
{{$url}}
{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} {{if $gender}}
{{$gender_label}}
{{$gender}}
{{/if}} {{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} From 4003b9cc5de25bd68007d64e179649b36ce244a7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 17:18:58 +0200 Subject: [PATCH 22/47] Let the notification look more like the follow dialog --- mod/notifications.php | 18 +++++++++++++++++- view/templates/intros.tpl | 3 +-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/mod/notifications.php b/mod/notifications.php index 831beee765..513f685b47 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -1,5 +1,6 @@ user['nickname'] . '@' . $a->get_hostname() . (($a->path) ? '/' . $a->path : '')); @@ -206,7 +209,20 @@ function notifications_content(&$a) { )); } + $header = $rr["name"]; + + $ret = probe_url($rr["url"]); + + if ($rr['gnetwork'] == "") + $rr['gnetwork'] = $ret["network"]; + + if ($ret["addr"] != "") + $header .= " <".$ret["addr"].">"; + + $header .= " (".network_to_name($rr['gnetwork']).")"; + $notif_content .= replace_macros($tpl, array( + '$header' => htmlentities($header), '$str_notifytype' => t('Notification type: '), '$notify_type' => (($rr['network'] !== NETWORK_OSTATUS) ? t('Friend/Connect Request') : t('New Follower')), '$dfrn_text' => $dfrn_text, diff --git a/view/templates/intros.tpl b/view/templates/intros.tpl index d50b14cd41..8e5a24a6b8 100644 --- a/view/templates/intros.tpl +++ b/view/templates/intros.tpl @@ -1,9 +1,8 @@ - +

{{$header}}

{{$str_notifytype}} {{$notify_type}}

-
{{$fullname}}
{{$fullname|escape:'html'}}
{{$url_label}}
{{$url}}
{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} From 8c514307cf11c0b000ce437fcb2bef2a8952ef0c Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 17:20:47 +0200 Subject: [PATCH 23/47] For safety reasons include the include --- mod/notifications.php | 1 + 1 file changed, 1 insertion(+) diff --git a/mod/notifications.php b/mod/notifications.php index 513f685b47..bcda5ba343 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -1,6 +1,7 @@ Date: Sun, 4 Oct 2015 17:37:08 +0200 Subject: [PATCH 24/47] Added explanation how to add a parameter to the .htconfig.pgp --- doc/htconfig.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/htconfig.md b/doc/htconfig.md index 4c2318129e..5d98f55a76 100644 --- a/doc/htconfig.md +++ b/doc/htconfig.md @@ -5,9 +5,16 @@ There are some config values that haven't found their way into the administratio current development that isn't considered stable and will be added later in the administration page when it is considered safe. Or it triggers something that isn't expected to be of public interest. Or it is for testing purposes only. -Please be warned that you shouldn't use one of these values without the knowledge what it could trigger. Especially don't do that with +**Attention:** Please be warned that you shouldn't use one of these values without the knowledge what it could trigger. Especially don't do that with undocumented values. +The header of the section describes the category, the value is the parameter. Example: To set the directory value please add this +line to your .htconfig.php: + + $a->config['system']['directory'] = 'http://dir.friendi.ca'; + + + ## Jabber ## * debug (Boolean) - Enable debug level for the jabber account synchronisation. * logfile - Logfile for the jabber account synchronisation. From 72ecb9e67b6cad94a98c65e02d56c5a71f879660 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 19:39:55 +0200 Subject: [PATCH 25/47] Bugfix: Repairing a contact was more like killing the contact ... --- mod/contacts.php | 2 +- mod/follow.php | 1 + view/templates/auto_request.tpl | 2 +- view/templates/dfrn_request.tpl | 2 +- view/templates/intros.tpl | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index 89154eded9..f3b8a1deff 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -243,7 +243,7 @@ function _contact_update_profile($contact_id) { return; $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm", - "poco", "network", "alias", "pubkey"); + "poco", "network", "alias"); $update = array(); if ($data["network"] == NETWORK_OSTATUS) { diff --git a/mod/follow.php b/mod/follow.php index 7b1957c93b..8affa11b56 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -94,6 +94,7 @@ function follow_content(&$a) { '$nickname' => "", '$name' => $ret["name"], '$url' => $ret["url"], + '$zrl' => zrl($ret["url"]), '$url_label' => t("Profile URL"), '$myaddr' => $myaddr, '$request' => $request, diff --git a/view/templates/auto_request.tpl b/view/templates/auto_request.tpl index 09e6163325..f938d63719 100644 --- a/view/templates/auto_request.tpl +++ b/view/templates/auto_request.tpl @@ -28,7 +28,7 @@ {{/if}} -{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} +{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} {{if $location}}
{{$location_label}}
{{$location}}
{{/if}} {{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} {{if $about}}
{{$about_label}}
{{$about}}
{{/if}} diff --git a/view/templates/dfrn_request.tpl b/view/templates/dfrn_request.tpl index d376b3a5d5..178586a7b7 100644 --- a/view/templates/dfrn_request.tpl +++ b/view/templates/dfrn_request.tpl @@ -27,7 +27,7 @@ {{/if}} -{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} +{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} {{if $location}}
{{$location_label}}
{{$location}}
{{/if}} {{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} {{if $about}}
{{$about_label}}
{{$about}}
{{/if}} diff --git a/view/templates/intros.tpl b/view/templates/intros.tpl index 8e5a24a6b8..b9f7f15418 100644 --- a/view/templates/intros.tpl +++ b/view/templates/intros.tpl @@ -4,7 +4,7 @@

{{$str_notifytype}} {{$notify_type}}

{{$fullname|escape:'html'}} -
{{$url_label}}
{{$url}}
+
{{$url_label}}
{{$url}}
{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} {{if $gender}}
{{$gender_label}}
{{$gender}}
{{/if}} {{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} From 05ae3d528e67e6bd49336aaa53f5ba1f30f1c46d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 19:48:29 +0200 Subject: [PATCH 26/47] A contact that couldn't be resolved is know known as "UNKNOWN" --- mod/contacts.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index f3b8a1deff..92463cd8de 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -238,8 +238,8 @@ function _contact_update_profile($contact_id) { $data = probe_url($r[0]["url"]); - // "Feed" is mostly a sign of communication problems - if (($data["network"] == NETWORK_FEED) AND ($data["network"] != $r[0]["network"])) + // "Feed" or "Unknown" is mostly a sign of communication problems + if ((in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) AND ($data["network"] != $r[0]["network"])) return; $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm", From b037f977fa7ae81ed9911577e2da1f227f7aa333 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 21:17:28 +0200 Subject: [PATCH 27/47] The contact menu is now improved (for example a "Follow" link) --- include/conversation.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index 5a84ca42a6..143dd4e424 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -204,7 +204,7 @@ function localize_item(&$item){ // we can't have a translation string with three positions but no distinguishable text // So here is the translate string. $txt = t('%1$s poked %2$s'); - + // now translate the verb $poked_t = trim(sprintf($txt, "","")); $txt = str_replace( $poked_t, t($verb), $txt); @@ -850,7 +850,12 @@ function item_photo_menu($item){ $cid = $item['contact-id']; } else { - $cid = 0; + $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' ORDER BY `uid` DESC LIMIT 1", + intval($item['uid']), normalise_link($item['author-link'])); + if ($r) + $cid = $r[0]["id"]; + else + $cid = 0; } } if(($cid) && (! $item['self'])) { @@ -877,10 +882,14 @@ function item_photo_menu($item){ t("View Photos") => $photos_link, t("Network Posts") => $posts_link, t("Edit Contact") => $contact_url, - t("Send PM") => $pm_url, - t("Poke") => $poke_link + t("Send PM") => $pm_url ); + if ($a->contacts[$clean_url]['network'] === NETWORK_DFRN) + $menu[t("Poke")] = $poke_link; + + if (($cid == 0) AND in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) + $menu[t("Connect/Follow")] = $a->get_baseurl($ssl_state)."/follow?url=".urlencode($item['author-link']); $args = array('item' => $item, 'menu' => $menu); From 8a2d1fe301d22e0ccb2dce80e72c38d7ce4e976c Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 22:24:58 +0200 Subject: [PATCH 28/47] Show RedMatrix and use the proxy for the profile pictures --- mod/follow.php | 4 ++-- mod/notifications.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mod/follow.php b/mod/follow.php index 8affa11b56..2c8452b1bf 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -72,11 +72,11 @@ function follow_content(&$a) { if ($ret["addr"] != "") $header .= " <".$ret["addr"].">"; - $header .= " (".network_to_name($ret['network']).")"; + $header .= " (".network_to_name($ret['network'], $ret['url']).")"; $o = replace_macros($tpl,array( '$header' => htmlentities($header), - '$photo' => $ret["photo"], + '$photo' => proxy_url($ret["photo"]), '$desc' => "", '$pls_answer' => t('Please answer the following:'), '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))), diff --git a/mod/notifications.php b/mod/notifications.php index bcda5ba343..69ab592afe 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -166,7 +166,7 @@ function notifications_content(&$a) { '$intro_id' => $rr['intro_id'], '$madeby' => sprintf( t('suggested by %s'),$rr['name']), '$contact_id' => $rr['contact-id'], - '$photo' => ((x($rr,'fphoto')) ? $rr['fphoto'] : "images/person-175.jpg"), + '$photo' => ((x($rr,'fphoto')) ? proxy_url($rr['fphoto']) : "images/person-175.jpg"), '$fullname' => $rr['fname'], '$url' => zrl($rr['furl']), '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), @@ -220,7 +220,7 @@ function notifications_content(&$a) { if ($ret["addr"] != "") $header .= " <".$ret["addr"].">"; - $header .= " (".network_to_name($rr['gnetwork']).")"; + $header .= " (".network_to_name($rr['gnetwork'], $rr['url']).")"; $notif_content .= replace_macros($tpl, array( '$header' => htmlentities($header), @@ -368,7 +368,7 @@ function notifications_content(&$a) { foreach ($r as $it) { $notif_content .= replace_macros($not_tpl,array( '$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'], - '$item_image' => $it['photo'], + '$item_image' => proxy_url($it['photo']), '$item_text' => strip_tags(bbcode($it['msg'])), '$item_when' => relative_date($it['date']) )); From a663e4693f5849fbca7ab2a0c456820f53bb67bc Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 23:41:13 +0200 Subject: [PATCH 29/47] Further improvement of the contact menu --- include/conversation.php | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index 143dd4e424..0a33740555 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -792,10 +792,16 @@ function best_link_url($item,&$sparkle,$ssl_state = false) { if($a->contacts[$clean_url]['network'] === NETWORK_DFRN) { $best_url = $a->get_baseurl($ssl_state) . '/redir/' . $a->contacts[$clean_url]['id']; $sparkle = true; - } - else + } else $best_url = $a->contacts[$clean_url]['url']; } + } elseif (local_user()) { + $r = q("SELECT `id`, `network` FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` = '%s'", + dbesc(NETWORK_DFRN), intval(local_user()), dbesc(normalise_link($clean_url))); + if ($r) { + $best_url = $a->get_baseurl($ssl_state).'/redir/'.$r[0]['id']; + $sparkle = true; + } } if(! $best_url) { if(strlen($item['author-link'])) @@ -848,13 +854,16 @@ function item_photo_menu($item){ $profile_link = zrl($profile_link); if(local_user() && local_user() == $item['uid'] && link_compare($item['url'],$item['author-link'])) { $cid = $item['contact-id']; - } - else { - $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' ORDER BY `uid` DESC LIMIT 1", - intval($item['uid']), normalise_link($item['author-link'])); - if ($r) + } else { + $r = q("SELECT `id`, `network` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' ORDER BY `uid` DESC LIMIT 1", + intval(local_user()), dbesc(normalise_link($item['author-link']))); + if ($r) { $cid = $r[0]["id"]; - else + + if ($r[0]["network"] == NETWORK_DIASPORA) + $pm_url = $a->get_baseurl($ssl_state) . '/message/new/' . $cid; + + } else $cid = 0; } } From caa9073a8f94416c7eb3bc1d03809e66f4e2e05e Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 00:14:39 +0200 Subject: [PATCH 30/47] Remove all menu entries on the contact list that are empty --- include/Contact.php | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/include/Contact.php b/include/Contact.php index 920ec3c2b4..b0fdcbfb8a 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -219,10 +219,14 @@ function contact_photo_menu($contact) { $status_link = $profile_link . "?url=status"; $photos_link = $profile_link . "?url=photos"; $profile_link = $profile_link . "?url=profile"; - $pm_url = $a->get_baseurl() . '/message/new/' . $contact['id']; } - $poke_link = $a->get_baseurl() . '/poke/?f=&c=' . $contact['id']; + if (in_array($contact["network"], array(NETWORK_DFRN, NETWORK_DIASPORA))) + $pm_url = $a->get_baseurl() . '/message/new/' . $contact['id']; + + if ($contact["network"] == NETWORK_DFRN) + $poke_link = $a->get_baseurl() . '/poke/?f=&c=' . $contact['id']; + $contact_url = $a->get_baseurl() . '/contacts/' . $contact['id']; $posts_link = $a->get_baseurl() . '/network/0?nets=all&cid=' . $contact['id']; $contact_drop_link = $a->get_baseurl() . "/contacts/" . $contact['id'] . '/drop?confirm=1'; @@ -254,6 +258,7 @@ function contact_photo_menu($contact) { } } return $o;*/ + foreach($menu as $k=>$v){ if ($v[1]!="") { if(($v[0] !== t("Network Posts")) && ($v[0] !== t("Send PM")) && ($v[0] !== t('Edit Contact'))) @@ -262,7 +267,14 @@ function contact_photo_menu($contact) { $menu[$k][2] = 0; } } - return $menu; + + $menucondensed = array(); + + foreach ($menu AS $menuitem) + if ($menuitem[1] != "") + $menucondensed[] = $menuitem; + + return $menucondensed; }} From 133d38be2026a40bf9dd94e69762fdc34c34a389 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 00:19:58 +0200 Subject: [PATCH 31/47] Rearranged the contact menu so that it fits the menu at the conversations. --- include/Contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Contact.php b/include/Contact.php index b0fdcbfb8a..e6ec8daade 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -233,7 +233,6 @@ function contact_photo_menu($contact) { $menu = Array( - 'poke' => array(t("Poke"), $poke_link), 'status' => array(t("View Status"), $status_link), 'profile' => array(t("View Profile"), $profile_link), 'photos' => array(t("View Photos"), $photos_link), @@ -241,6 +240,7 @@ function contact_photo_menu($contact) { 'edit' => array(t("Edit Contact"), $contact_url), 'drop' => array(t("Drop Contact"), $contact_drop_link), 'pm' => array(t("Send PM"), $pm_url), + 'poke' => array(t("Poke"), $poke_link), ); From d3ac3f8490ea4c5ab85848b1eaf0b820c56a7e8e Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 08:08:59 +0200 Subject: [PATCH 32/47] Added the contact menu to the search as well. --- mod/dirfind.php | 12 ++++++++++++ view/templates/match.tpl | 18 +++++++++++++++++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/mod/dirfind.php b/mod/dirfind.php index b0d578a3c6..488e10fa16 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -1,6 +1,7 @@ results)) { + $id = 0; + $tpl = get_markup_template('match.tpl'); foreach($j->results as $jj) { @@ -120,9 +123,16 @@ function dirfind_content(&$a, $prefix = "") { if ($jj->cid > 0) { $connlnk = ""; $conntxt = ""; + $contact = q("SELECT * FROM `contact` WHERE `id` = %d", + intval($jj->cid)); + if ($contact) + $photo_menu = contact_photo_menu($contact[0]); + else + $photo_menu = array(); } else { $connlnk = $a->get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url); $conntxt = t('Connect'); + $photo_menu = array(array(t("Connect/Follow"), $connlnk)); } $jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo); @@ -134,6 +144,8 @@ function dirfind_content(&$a, $prefix = "") { '$tags' => $jj->tags, '$conntxt' => $conntxt, '$connlnk' => $connlnk, + '$photo_menu' => $photo_menu, + '$id' => ++$id, )); } } diff --git a/view/templates/match.tpl b/view/templates/match.tpl index 32f046e6aa..3ebabf1854 100644 --- a/view/templates/match.tpl +++ b/view/templates/match.tpl @@ -1,9 +1,25 @@
-
+
{{$name}} + {{if $photo_menu}} + menu +
+
    + {{foreach $photo_menu as $k=>$c}} + {{if $c.2}} +
  • {{$c.0}}
  • + {{else}} +
  • {{$c.0}}
  • + {{/if}} + {{/foreach}} +
+
+ {{/if}}
From 607817d1b3c3347731cf11cf8bf99838a01f4980 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 17:38:57 +0200 Subject: [PATCH 33/47] Vier: Avoid an error when calling the admin settings of "vier" when "vier" is not activated. --- view/templates/theme_admin_settings.tpl | 1 + view/theme/vier/config.php | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 view/templates/theme_admin_settings.tpl diff --git a/view/templates/theme_admin_settings.tpl b/view/templates/theme_admin_settings.tpl new file mode 100644 index 0000000000..fa04612b23 --- /dev/null +++ b/view/templates/theme_admin_settings.tpl @@ -0,0 +1 @@ +{{* Dummy file to avoid errors when installing themes *}} diff --git a/view/theme/vier/config.php b/view/theme/vier/config.php index 9f4fb0f93a..7c51b4ec95 100644 --- a/view/theme/vier/config.php +++ b/view/theme/vier/config.php @@ -9,6 +9,9 @@ function theme_content(&$a){ if(!local_user()) return; + if (!function_exists('get_vier_config')) + return; + $style = get_pconfig(local_user(), 'vier', 'style'); if ($style == "") @@ -45,6 +48,10 @@ function theme_post(&$a){ function theme_admin(&$a){ + + if (!function_exists('get_vier_config')) + return; + $style = get_config('vier', 'style'); $helperlist = get_config('vier', 'helperlist'); From 2676a0f0e5022c96e45679b1fa2507cb79df8658 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 22:19:34 +0200 Subject: [PATCH 34/47] The proxy function sometimes kills embedded pictures ... --- include/bbcode.php | 30 +++++++++++++++++++++++++----- include/oembed.php | 2 +- include/text.php | 4 ++-- 3 files changed, 28 insertions(+), 8 deletions(-) diff --git a/include/bbcode.php b/include/bbcode.php index 13061958c5..a4ad09ccf5 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -2,7 +2,23 @@ require_once("include/oembed.php"); require_once('include/event.php'); require_once('include/map.php'); +require_once('mod/proxy.php'); +function bb_PictureCacheExt($matches) { + if (strpos($matches[3], "data:image/") === 0) + return ($matches[0]); + + $matches[3] = proxy_url($matches[3]); + return "[img=".$matches[1]."x".$matches[2]."]".$matches[3]."[/img]"; +} + +function bb_PictureCache($matches) { + if (strpos($matches[1], "data:image/") === 0) + return ($matches[0]); + + $matches[1] = proxy_url($matches[1]); + return "[img]".$matches[1]."[/img]"; +} function bb_map_coords($match) { // the extra space in the following line is intentional @@ -101,9 +117,9 @@ function bb_attachment($Text, $simplehtml = false, $tryoembed = true) { $text = $oembed; else { if (($image != "") AND !strstr(strtolower($oembed), "
', $url, $image, $title); + $text .= sprintf('
', $url, proxy_url($image), $title); elseif (($preview != "") AND !strstr(strtolower($oembed), "
', $url, $preview, $title); + $text .= sprintf('
', $url, proxy_url($preview), $title); $text .= $oembed; @@ -455,7 +471,7 @@ function bb_replace_images($body, $images) { // We're depending on the property of 'foreach' (specified on the PHP website) that // it loops over the array starting from the first element and going sequentially // to the last element - $newbody = str_replace('[$#saved_image' . $cnt . '#$]', '' . t('Image/photo') . '', $newbody); + $newbody = str_replace('[$#saved_image' . $cnt . '#$]', '' . t('Image/photo') . '', $newbody); $cnt++; } @@ -585,7 +601,7 @@ function bb_ShareAttributes($share, $simplehtml) { default: $headline = trim($share[1]).'
'; if ($avatar != "") - $headline .= ''; + $headline .= ''; $headline .= sprintf(t('%s wrote the following post'.$reldate.':'), $profile, $author, $link); $headline .= "
"; @@ -1102,13 +1118,17 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal "
" . $t_wrote . "
$2
", $Text); + // [img=widthxheight]image source[/img] - //$Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '', $Text); + $Text = preg_replace_callback("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", 'bb_PictureCacheExt', $Text); + $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '', $Text); $Text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '', $Text); // Images // [img]pathtoimage[/img] + $Text = preg_replace_callback("/\[img\](.*?)\[\/img\]/ism", 'bb_PictureCache', $Text); + $Text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '' . t('Image/photo') . '', $Text); $Text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '' . t('Image/photo') . '', $Text); diff --git a/include/oembed.php b/include/oembed.php index d4d7ce05e1..0e12383603 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -157,7 +157,7 @@ function oembed_format_object($j){ case "rich": { // not so safe.. if (!get_config("system","no_oembed_rich_content")) - $ret.= $jhtml; + $ret.= proxy_parse_html($jhtml); }; break; } diff --git a/include/text.php b/include/text.php index 0002f074e9..1d27963cc2 100644 --- a/include/text.php +++ b/include/text.php @@ -1410,8 +1410,8 @@ function prepare_body(&$item,$attach = false, $preview = false) { put_item_in_cache($item, true); $s = $item["rendered-html"]; - require_once("mod/proxy.php"); - $s = proxy_parse_html($s); + //require_once("mod/proxy.php"); + //$s = proxy_parse_html($s); $prep_arr = array('item' => $item, 'html' => $s, 'preview' => $preview); call_hooks('prepare_body', $prep_arr); From 7ed61b2edc50b8ff51f48446afc2b9743296d107 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 22:25:14 +0200 Subject: [PATCH 35/47] Removed "proxy_parse_html" since it is now done in the bbcode function. --- include/text.php | 3 --- mod/display.php | 12 ++++++------ mod/follow.php | 2 +- mod/notifications.php | 2 +- 4 files changed, 8 insertions(+), 11 deletions(-) diff --git a/include/text.php b/include/text.php index 1d27963cc2..c5b28b508e 100644 --- a/include/text.php +++ b/include/text.php @@ -1410,9 +1410,6 @@ function prepare_body(&$item,$attach = false, $preview = false) { put_item_in_cache($item, true); $s = $item["rendered-html"]; - //require_once("mod/proxy.php"); - //$s = proxy_parse_html($s); - $prep_arr = array('item' => $item, 'html' => $s, 'preview' => $preview); call_hooks('prepare_body', $prep_arr); $s = $prep_arr['html']; diff --git a/mod/display.php b/mod/display.php index be5dd7cae3..f945f9fe60 100644 --- a/mod/display.php +++ b/mod/display.php @@ -115,8 +115,8 @@ function display_fetchauthor($a, $item) { if (count($r)) { $profiledata["photo"] = proxy_url($r[0]["photo"]); - $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); - $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); + $profiledata["address"] = bbcode($r[0]["location"]); + $profiledata["about"] = bbcode($r[0]["about"]); if ($r[0]["nick"] != "") $profiledata["nickname"] = $r[0]["nick"]; } @@ -127,9 +127,9 @@ function display_fetchauthor($a, $item) { if ($profiledata["photo"] == "") $profiledata["photo"] = proxy_url($r[0]["avatar"]); if ($profiledata["address"] == "") - $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); + $profiledata["address"] = bbcode($r[0]["location"]); if ($profiledata["about"] == "") - $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); + $profiledata["about"] = bbcode($r[0]["about"]); if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != "")) $profiledata["nickname"] = $r[0]["nick"]; } @@ -193,8 +193,8 @@ function display_fetchauthor($a, $item) { $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); if (count($r)) { $profiledata["photo"] = proxy_url($r[0]["avatar"]); - $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); - $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); + $profiledata["address"] = bbcode($r[0]["location"]); + $profiledata["about"] = bbcode($r[0]["about"]); if ($r[0]["nick"] != "") $profiledata["nickname"] = $r[0]["nick"]; } diff --git a/mod/follow.php b/mod/follow.php index 2c8452b1bf..25169e403a 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -100,7 +100,7 @@ function follow_content(&$a) { '$request' => $request, '$location' => bbcode($r[0]["location"]), '$location_label' => t("Location:"), - '$about' => proxy_parse_html(bbcode($r[0]["about"], false, false)), + '$about' => bbcode($r[0]["about"], false, false), '$about_label' => t("About:"), '$keywords' => $r[0]["keywords"], '$keywords_label' => t("Tags:") diff --git a/mod/notifications.php b/mod/notifications.php index 69ab592afe..95ebff96f3 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -235,7 +235,7 @@ function notifications_content(&$a) { '$fullname' => $rr['name'], '$location' => bbcode($rr['glocation'], false, false), '$location_label' => t('Location:'), - '$about' => proxy_parse_html(bbcode($rr['gabout'], false, false)), + '$about' => bbcode($rr['gabout'], false, false), '$about_label' => t('About:'), '$keywords' => $rr['gkeywords'], '$keywords_label' => t('Tags:'), From 901b95e93564e1adea3131e744af99e1f31fbe98 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 6 Oct 2015 06:56:31 +0200 Subject: [PATCH 36/47] Hide some profile data if not connected. --- mod/follow.php | 5 +++++ mod/notifications.php | 7 +++++++ mod/poco.php | 7 +++++++ 3 files changed, 19 insertions(+) diff --git a/mod/follow.php b/mod/follow.php index 2c8452b1bf..4a4429f2e6 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -67,6 +67,11 @@ function follow_content(&$a) { if (!$r) $r = array(array("location" => "", "about" => "", "keywords" => "")); + if($ret['network'] === NETWORK_DIASPORA) { + $r[0]["location"] = ""; + $r[0]["about"] = ""; + } + $header = $ret["name"]; if ($ret["addr"] != "") diff --git a/mod/notifications.php b/mod/notifications.php index 69ab592afe..6c0391e4e9 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -222,6 +222,13 @@ function notifications_content(&$a) { $header .= " (".network_to_name($rr['gnetwork'], $rr['url']).")"; + // Don't show these data until you are connected. Diaspora is doing the same. + if($rr['gnetwork'] === NETWORK_DIASPORA) { + $rr['glocation'] = ""; + $rr['gabout'] = ""; + $rr['ggender'] = ""; + } + $notif_content .= replace_macros($tpl, array( '$header' => htmlentities($header), '$str_notifytype' => t('Notification type: '), diff --git a/mod/poco.php b/mod/poco.php index f84fc964d9..4d16c6ed29 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -226,6 +226,13 @@ function poco_init(&$a) { Cache::set("about:".$rr['updated'].":".$rr['nurl'],$about); } + // Non connected persons can only see the keywords of a Diaspora account + if ($rr['network'] == NETWORK_DIASPORA) { + $rr['location'] = ""; + $about = ""; + $rr['gender'] = ""; + } + $entry = array(); if($fields_ret['id']) $entry['id'] = (int)$rr['id']; From 14e17b944fb992317ccccdfeff9b9906b15ef44f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 6 Oct 2015 18:31:08 +0200 Subject: [PATCH 37/47] Reworked fetching of contact data on "display" page --- mod/display.php | 84 +++++++++++++++++++------------------------ mod/notifications.php | 3 +- 2 files changed, 38 insertions(+), 49 deletions(-) diff --git a/mod/display.php b/mod/display.php index f945f9fe60..46574bd064 100644 --- a/mod/display.php +++ b/mod/display.php @@ -101,39 +101,6 @@ function display_fetchauthor($a, $item) { $profiledata["url"] = $item["author-link"]; $profiledata["network"] = $item["network"]; - // Fetching further contact data from the contact table - $r = q("SELECT `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d AND `network` = '%s'", - dbesc(normalise_link($profiledata["url"])), intval($item["uid"]), dbesc($item["network"])); - - if (!count($r)) - $r = q("SELECT `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d", - dbesc(normalise_link($profiledata["url"])), intval($item["uid"])); - - if (!count($r)) - $r = q("SELECT `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0", - dbesc(normalise_link($profiledata["url"]))); - - if (count($r)) { - $profiledata["photo"] = proxy_url($r[0]["photo"]); - $profiledata["address"] = bbcode($r[0]["location"]); - $profiledata["about"] = bbcode($r[0]["about"]); - if ($r[0]["nick"] != "") - $profiledata["nickname"] = $r[0]["nick"]; - } - - // Fetching profile data from unique contacts - $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); - if (count($r)) { - if ($profiledata["photo"] == "") - $profiledata["photo"] = proxy_url($r[0]["avatar"]); - if ($profiledata["address"] == "") - $profiledata["address"] = bbcode($r[0]["location"]); - if ($profiledata["about"] == "") - $profiledata["about"] = bbcode($r[0]["about"]); - if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != "")) - $profiledata["nickname"] = $r[0]["nick"]; - } - // Check for a repeated message $skip = false; $body = trim($item["body"]); @@ -187,28 +154,49 @@ function display_fetchauthor($a, $item) { $profiledata["address"] = ""; $profiledata["about"] = ""; + } - // Fetching profile data from unique contacts - if ($profiledata["url"] != "") { - $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); - if (count($r)) { - $profiledata["photo"] = proxy_url($r[0]["avatar"]); - $profiledata["address"] = bbcode($r[0]["location"]); - $profiledata["about"] = bbcode($r[0]["about"]); - if ($r[0]["nick"] != "") - $profiledata["nickname"] = $r[0]["nick"]; - } + // Fetching further contact data from the contact table + $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d AND `network` = '%s'", + dbesc(normalise_link($profiledata["url"])), intval($item["uid"]), dbesc($item["network"])); + + if (!count($r)) + $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d", + dbesc(normalise_link($profiledata["url"])), intval($item["uid"])); + + if (!count($r)) + $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0", + dbesc(normalise_link($profiledata["url"]))); + + if (count($r)) { + if ((($r[0]["uid"] != local_user()) OR !local_user()) AND ($profiledata["network"] == NETWORK_DIASPORA)) { + $r[0]["location"] = ""; + $r[0]["about"] = ""; } + + $profiledata["photo"] = proxy_url($r[0]["photo"]); + $profiledata["address"] = bbcode($r[0]["location"]); + $profiledata["about"] = bbcode($r[0]["about"]); + if ($r[0]["nick"] != "") + $profiledata["nickname"] = $r[0]["nick"]; + } + + // Fetching profile data from unique contacts + $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); + if (count($r)) { + if ($profiledata["photo"] == "") + $profiledata["photo"] = proxy_url($r[0]["avatar"]); + if (($profiledata["address"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) + $profiledata["address"] = bbcode($r[0]["location"]); + if (($profiledata["about"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) + $profiledata["about"] = bbcode($r[0]["about"]); + if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != "")) + $profiledata["nickname"] = $r[0]["nick"]; } if (local_user()) { if (in_array($profiledata["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) $profiledata["remoteconnect"] = $a->get_baseurl()."/follow?url=".urlencode($profiledata["url"]); - //if ($profiledata["network"] == NETWORK_DFRN) { - // $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"])."&addr=".bin2hex($a->get_baseurl()."/profile/".$a->user["nickname"]); - // $profiledata["remoteconnect"] = $connect; - //} elseif ($profiledata["network"] == NETWORK_DIASPORA) - // $profiledata["remoteconnect"] = $a->get_baseurl()."/contacts?add=".GetProfileUsername($profiledata["url"], "", true); } elseif ($profiledata["network"] == NETWORK_DFRN) { $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"]); $profiledata["remoteconnect"] = $connect; diff --git a/mod/notifications.php b/mod/notifications.php index bee33fa607..fadd1e94e5 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -250,7 +250,8 @@ function notifications_content(&$a) { '$gender_label' => t('Gender:'), '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$activity' => array('activity', t('Post a new friend activity'), (intval(get_pconfig(local_user(),'system','post_newfriend')) ? '1' : 0), t('if applicable')), - '$url' => zrl($rr['url']), + '$url' => $rr['url'], + '$zrl' => zrl($rr['url']), '$url_label' => t('Profile URL'), '$knowyou' => $knowyou, '$approve' => t('Approve'), From b4ec07ab27df881e9060472f078f6e49b370faf1 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 7 Oct 2015 06:20:54 +0200 Subject: [PATCH 38/47] IT: update to the strings --- view/it/messages.po | 11198 +++++++++++++++++++++--------------------- view/it/strings.php | 2008 ++++---- 2 files changed, 6701 insertions(+), 6505 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index 292e417db5..efe44618a7 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-01 07:09+0200\n" -"PO-Revision-Date: 2015-09-01 12:05+0000\n" +"POT-Creation-Date: 2015-09-22 09:58+0200\n" +"PO-Revision-Date: 2015-10-06 17:43+0000\n" "Last-Translator: Sandro Santilli \n" "Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,3084 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" + +#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 +msgid "Private Message" +msgstr "Messaggio privato" + +#: object/Item.php:121 mod/settings.php:694 mod/content.php:730 +msgid "Edit" +msgstr "Modifica" + +#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 +#: mod/content.php:742 include/conversation.php:612 +msgid "Select" +msgstr "Seleziona" + +#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673 +#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171 +#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 +msgid "Delete" +msgstr "Rimuovi" + +#: object/Item.php:134 mod/content.php:765 +msgid "save to folder" +msgstr "salva nella cartella" + +#: object/Item.php:196 mod/content.php:755 +msgid "add star" +msgstr "aggiungi a speciali" + +#: object/Item.php:197 mod/content.php:756 +msgid "remove star" +msgstr "rimuovi da speciali" + +#: object/Item.php:198 mod/content.php:757 +msgid "toggle star status" +msgstr "Inverti stato preferito" + +#: object/Item.php:201 mod/content.php:760 +msgid "starred" +msgstr "preferito" + +#: object/Item.php:209 +msgid "ignore thread" +msgstr "ignora la discussione" + +#: object/Item.php:210 +msgid "unignore thread" +msgstr "non ignorare la discussione" + +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "inverti stato \"Ignora\"" + +#: object/Item.php:214 mod/ostatus_subscribe.php:69 +msgid "ignored" +msgstr "ignorato" + +#: object/Item.php:221 mod/content.php:761 +msgid "add tag" +msgstr "aggiungi tag" + +#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 +msgid "I like this (toggle)" +msgstr "Mi piace (clic per cambiare)" + +#: object/Item.php:232 mod/content.php:686 +msgid "like" +msgstr "mi piace" + +#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 +msgid "I don't like this (toggle)" +msgstr "Non mi piace (clic per cambiare)" + +#: object/Item.php:233 mod/content.php:687 +msgid "dislike" +msgstr "non mi piace" + +#: object/Item.php:235 mod/content.php:689 +msgid "Share this" +msgstr "Condividi questo" + +#: object/Item.php:235 mod/content.php:689 +msgid "share" +msgstr "condividi" + +#: object/Item.php:318 include/conversation.php:665 +msgid "Categories:" +msgstr "Categorie:" + +#: object/Item.php:319 include/conversation.php:666 +msgid "Filed under:" +msgstr "Archiviato in:" + +#: object/Item.php:328 object/Item.php:329 mod/content.php:473 +#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: object/Item.php:330 mod/content.php:856 +msgid "to" +msgstr "a" + +#: object/Item.php:331 +msgid "via" +msgstr "via" + +#: object/Item.php:332 mod/content.php:857 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: object/Item.php:333 mod/content.php:858 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" + +#: object/Item.php:342 mod/content.php:483 mod/content.php:866 +#: include/conversation.php:673 +#, php-format +msgid "%s from %s" +msgstr "%s da %s" + +#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583 +#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764 +msgid "Comment" +msgstr "Commento" + +#: object/Item.php:366 mod/message.php:335 mod/message.php:566 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 +#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 +#: include/conversation.php:1074 +msgid "Please wait" +msgstr "Attendi" + +#: object/Item.php:389 mod/content.php:605 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: object/Item.php:391 object/Item.php:404 mod/content.php:607 +#: include/text.php:2038 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commento" + +#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147 +#: include/contact_widgets.php:205 +msgid "show more" +msgstr "mostra di più" + +#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625 +#: mod/photos.php:1713 mod/content.php:709 +msgid "This is you" +msgstr "Questo sei tu" + +#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336 +#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104 +#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 +#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596 +#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199 +#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 +#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 +#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 +#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 +#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/cleanzero/config.php:80 +msgid "Submit" +msgstr "Invia" + +#: object/Item.php:681 mod/content.php:713 +msgid "Bold" +msgstr "Grassetto" + +#: object/Item.php:682 mod/content.php:714 +msgid "Italic" +msgstr "Corsivo" + +#: object/Item.php:683 mod/content.php:715 +msgid "Underline" +msgstr "Sottolineato" + +#: object/Item.php:684 mod/content.php:716 +msgid "Quote" +msgstr "Citazione" + +#: object/Item.php:685 mod/content.php:717 +msgid "Code" +msgstr "Codice" + +#: object/Item.php:686 mod/content.php:718 +msgid "Image" +msgstr "Immagine" + +#: object/Item.php:687 mod/content.php:719 +msgid "Link" +msgstr "Link" + +#: object/Item.php:688 mod/content.php:720 +msgid "Video" +msgstr "Video" + +#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509 +#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 +#: mod/content.php:721 include/conversation.php:1089 +msgid "Preview" +msgstr "Anteprima" + +#: index.php:225 mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Devi aver effettuato il login per usare gli addons." + +#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 +msgid "Not Found" +msgstr "Non trovato" + +#: index.php:272 mod/help.php:45 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: index.php:381 mod/profperm.php:19 mod/group.php:72 +msgid "Permission denied" +msgstr "Permesso negato" + +#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 +#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 +#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 +#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70 +#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156 +#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33 +#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83 +#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15 +#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116 +#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165 +#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61 +#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96 +#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20 +#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19 +#: mod/profile_photo.php:169 mod/profile_photo.php:180 +#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110 +#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4 +#: mod/crepair.php:120 include/items.php:5036 +msgid "Permission denied." +msgstr "Permesso negato." + +#: index.php:441 +msgid "toggle mobile" +msgstr "commuta tema mobile" + +#: mod/update_notes.php:37 mod/update_profile.php:41 +#: mod/update_community.php:18 mod/update_network.php:25 +#: mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 +#: mod/crepair.php:134 +msgid "Contact not found." +msgstr "Contatto non trovato." + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" +msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha ricevuto troppe richieste di connessione per oggi." + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Gli amici sono pregati di riprovare tra 24 ore." + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." + +#: mod/dfrn_request.php:507 include/follow.php:70 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." + +#: mod/dfrn_request.php:576 mod/contacts.php:194 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Conferma" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." + +#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" + +#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 +#: mod/search.php:93 mod/search.php:98 mod/display.php:223 +#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35 +msgid "Public access denied." +msgstr "Accesso negato." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" + +#: mod/dfrn_request.php:840 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" + +#: mod/dfrn_request.php:845 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: mod/dfrn_request.php:846 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:847 mod/follow.php:58 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: mod/dfrn_request.php:848 mod/follow.php:59 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236 +#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074 +#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091 +#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109 +#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137 +#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658 +#: mod/profiles.php:662 +msgid "No" +msgstr "No" + +#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105 +#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59 +#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082 +#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097 +#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135 +#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138 +#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661 +#: mod/suggest.php:29 include/items.php:4868 +msgid "Yes" +msgstr "Si" + +#: mod/dfrn_request.php:852 mod/follow.php:60 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:855 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:856 mod/settings.php:793 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/dfrn_request.php:857 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." + +#: mod/dfrn_request.php:858 mod/follow.php:66 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: mod/dfrn_request.php:861 mod/follow.php:69 +msgid "Submit Request" +msgstr "Invia richiesta" + +#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148 +#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225 +#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121 +#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633 +#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871 +#: include/conversation.php:1093 +msgid "Cancel" +msgstr "Annulla" + +#: mod/files.php:156 mod/videos.php:373 include/text.php:1460 +msgid "View Video" +msgstr "Guarda Video" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Profilo richiesto non disponibile." + +#: mod/profile.php:155 mod/display.php:343 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" + +#: mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 +msgid "Discard" +msgstr "Scarta" + +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623 +#: mod/contacts.php:799 +msgid "Ignore" +msgstr "Ignora" + +#: mod/notifications.php:78 +msgid "System" +msgstr "Sistema" + +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +msgid "Network" +msgstr "Rete" + +#: mod/notifications.php:90 mod/network.php:375 +msgid "Personal" +msgstr "Personale" + +#: mod/notifications.php:96 view/theme/diabook/theme.php:123 +#: include/nav.php:105 include/nav.php:156 +msgid "Home" +msgstr "Home" + +#: mod/notifications.php:102 include/nav.php:161 +msgid "Introductions" +msgstr "Presentazioni" + +#: mod/notifications.php:127 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" + +#: mod/notifications.php:127 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" + +#: mod/notifications.php:159 mod/notifications.php:209 +msgid "Notification type: " +msgstr "Tipo di notifica: " + +#: mod/notifications.php:160 +msgid "Friend Suggestion" +msgstr "Amico suggerito" + +#: mod/notifications.php:162 +#, php-format +msgid "suggested by %s" +msgstr "sugerito da %s" + +#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "Post a new friend activity" +msgstr "Invia una attività \"è ora amico con\"" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "if applicable" +msgstr "se applicabile" + +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085 +msgid "Approve" +msgstr "Approva" + +#: mod/notifications.php:191 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " + +#: mod/notifications.php:191 +msgid "yes" +msgstr "si" + +#: mod/notifications.php:191 +msgid "no" +msgstr "no" + +#: mod/notifications.php:192 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" + +#: mod/notifications.php:195 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" + +#: mod/notifications.php:203 +msgid "Friend" +msgstr "Amico" + +#: mod/notifications.php:204 +msgid "Sharer" +msgstr "Condivisore" + +#: mod/notifications.php:204 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" + +#: mod/notifications.php:210 +msgid "Friend/Connect Request" +msgstr "Richiesta amicizia/connessione" + +#: mod/notifications.php:210 +msgid "New Follower" +msgstr "Qualcuno inizia a seguirti" + +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/event.php:42 include/identity.php:268 +#: include/bb2diaspora.php:170 +msgid "Location:" +msgstr "Posizione:" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:582 +msgid "About:" +msgstr "Informazioni:" + +#: mod/notifications.php:224 include/identity.php:576 +msgid "Tags:" +msgstr "Tag:" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:541 +msgid "Gender:" +msgstr "Genere:" + +#: mod/notifications.php:240 +msgid "No introductions." +msgstr "Nessuna presentazione." + +#: mod/notifications.php:243 include/nav.php:164 +msgid "Notifications" +msgstr "Notifiche" + +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 +#, php-format +msgid "%s liked %s's post" +msgstr "a %s è piaciuto il messaggio di %s" + +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 +#, php-format +msgid "%s disliked %s's post" +msgstr "a %s non è piaciuto il messaggio di %s" + +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" + +#: mod/notifications.php:313 mod/notifications.php:442 +#, php-format +msgid "%s created a new post" +msgstr "%s a creato un nuovo messaggio" + +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato il messaggio di %s" + +#: mod/notifications.php:329 +msgid "No more network notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:333 +msgid "Network Notifications" +msgstr "Notifiche dalla rete" + +#: mod/notifications.php:359 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Nessuna nuova notifica di sistema." + +#: mod/notifications.php:363 mod/notify.php:76 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: mod/notifications.php:458 +msgid "No more personal notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:462 +msgid "Personal Notifications" +msgstr "Notifiche personali" + +#: mod/notifications.php:543 +msgid "No more home notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:547 +msgid "Home Notifications" +msgstr "Notifiche bacheca" + +#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:471 include/text.php:2034 +#: include/diaspora.php:2134 include/conversation.php:126 +#: include/conversation.php:253 +msgid "photo" +msgstr "foto" + +#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 +#: include/diaspora.php:2134 include/conversation.php:121 +#: include/conversation.php:130 include/conversation.php:248 +#: include/conversation.php:257 +msgid "status" +msgstr "stato" + +#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150 +#: include/conversation.php:137 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" + +#: mod/like.php:168 include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Accesso fallito." + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Testo sorgente (bbcode):" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Sorgente:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML grezzo):" + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Sorgente (formato Diaspora):" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/admin.php:57 +msgid "Theme settings updated." +msgstr "Impostazioni del tema aggiornate." + +#: mod/admin.php:104 mod/admin.php:687 +msgid "Site" +msgstr "Sito" + +#: mod/admin.php:105 mod/admin.php:633 mod/admin.php:1078 mod/admin.php:1093 +msgid "Users" +msgstr "Utenti" + +#: mod/admin.php:106 mod/admin.php:1182 mod/admin.php:1242 mod/settings.php:66 +msgid "Plugins" +msgstr "Plugin" + +#: mod/admin.php:107 mod/admin.php:1410 mod/admin.php:1444 +msgid "Themes" +msgstr "Temi" + +#: mod/admin.php:108 +msgid "DB updates" +msgstr "Aggiornamenti Database" + +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "Ispeziona Coda di invio" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1531 +msgid "Logs" +msgstr "Log" + +#: mod/admin.php:125 +msgid "probe address" +msgstr "controlla indirizzo" + +#: mod/admin.php:126 +msgid "check webfinger" +msgstr "verifica webfinger" + +#: mod/admin.php:131 include/nav.php:193 +msgid "Admin" +msgstr "Amministrazione" + +#: mod/admin.php:132 +msgid "Plugin Features" +msgstr "Impostazioni Plugins" + +#: mod/admin.php:134 +msgid "diagnostics" +msgstr "diagnostiche" + +#: mod/admin.php:135 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" + +#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15 +#: mod/display.php:82 mod/display.php:295 mod/display.php:512 +#: mod/viewsrc.php:15 include/items.php:4827 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077 +#: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443 +#: mod/admin.php:1530 +msgid "Administration" +msgstr "Amministrazione" + +#: mod/admin.php:202 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "Nome Destinatario" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "Profilo Destinatario" + +#: mod/admin.php:206 +msgid "Created" +msgstr "Creato" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "Ultimo Tentativo" + +#: mod/admin.php:208 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "Questa pagina elenca il contenuto della coda di invo dei post. Questi sono post la cui consegna è fallita. Verranno reinviati più tardi ed eventualmente cancellati se la consegna continua a fallire." + +#: mod/admin.php:220 mod/admin.php:1031 +msgid "Normal Account" +msgstr "Account normale" + +#: mod/admin.php:221 mod/admin.php:1032 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" + +#: mod/admin.php:222 mod/admin.php:1033 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" + +#: mod/admin.php:223 mod/admin.php:1034 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" + +#: mod/admin.php:224 +msgid "Blog Account" +msgstr "Account Blog" + +#: mod/admin.php:225 +msgid "Private Forum" +msgstr "Forum Privato" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "Code messaggi" + +#: mod/admin.php:250 +msgid "Summary" +msgstr "Sommario" + +#: mod/admin.php:252 +msgid "Registered users" +msgstr "Utenti registrati" + +#: mod/admin.php:254 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" + +#: mod/admin.php:255 +msgid "Version" +msgstr "Versione" + +#: mod/admin.php:260 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: mod/admin.php:283 +msgid "Can not parse base url. Must have at least ://" +msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" + +#: mod/admin.php:556 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:564 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." + +#: mod/admin.php:599 mod/settings.php:885 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" + +#: mod/admin.php:616 +msgid "No community page" +msgstr "Nessuna pagina Comunità" + +#: mod/admin.php:617 +msgid "Public postings from users of this site" +msgstr "Messaggi pubblici dagli utenti di questo sito" + +#: mod/admin.php:618 +msgid "Global community page" +msgstr "Pagina Comunità globale" + +#: mod/admin.php:623 mod/contacts.php:526 +msgid "Never" +msgstr "Mai" + +#: mod/admin.php:624 +msgid "At post arrival" +msgstr "All'arrivo di un messaggio" + +#: mod/admin.php:625 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequentemente" + +#: mod/admin.php:626 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Ogni ora" + +#: mod/admin.php:627 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Due volte al dì" + +#: mod/admin.php:628 include/contact_selectors.php:59 +msgid "Daily" +msgstr "Giornalmente" + +#: mod/admin.php:632 mod/contacts.php:585 +msgid "Disabled" +msgstr "Disabilitato" + +#: mod/admin.php:634 +msgid "Users, Global Contacts" +msgstr "Utenti, Contatti Globali" + +#: mod/admin.php:635 +msgid "Users, Global Contacts/fallback" +msgstr "Utenti, Contatti Globali/fallback" + +#: mod/admin.php:639 +msgid "One month" +msgstr "Un mese" + +#: mod/admin.php:640 +msgid "Three months" +msgstr "Tre mesi" + +#: mod/admin.php:641 +msgid "Half a year" +msgstr "Sei mesi" + +#: mod/admin.php:642 +msgid "One year" +msgstr "Un anno" + +#: mod/admin.php:647 +msgid "Multi user instance" +msgstr "Istanza multi utente" + +#: mod/admin.php:670 +msgid "Closed" +msgstr "Chiusa" + +#: mod/admin.php:671 +msgid "Requires approval" +msgstr "Richiede l'approvazione" + +#: mod/admin.php:672 +msgid "Open" +msgstr "Aperta" + +#: mod/admin.php:676 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" + +#: mod/admin.php:677 +msgid "Force all links to use SSL" +msgstr "Forza tutti i linki ad usare SSL" + +#: mod/admin.php:678 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" + +#: mod/admin.php:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786 +#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167 +msgid "Save Settings" +msgstr "Salva Impostazioni" + +#: mod/admin.php:689 mod/register.php:260 +msgid "Registration" +msgstr "Registrazione" + +#: mod/admin.php:690 +msgid "File upload" +msgstr "Caricamento file" + +#: mod/admin.php:691 +msgid "Policies" +msgstr "Politiche" + +#: mod/admin.php:692 +msgid "Advanced" +msgstr "Avanzate" + +#: mod/admin.php:693 +msgid "Auto Discovered Contact Directory" +msgstr "Elenco Contatti Scoperto Automaticamente" + +#: mod/admin.php:694 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:695 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." + +#: mod/admin.php:698 +msgid "Site name" +msgstr "Nome del sito" + +#: mod/admin.php:699 +msgid "Host name" +msgstr "Nome host" + +#: mod/admin.php:700 +msgid "Sender Email" +msgstr "Mittente email" + +#: mod/admin.php:700 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email." + +#: mod/admin.php:701 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:702 +msgid "Shortcut icon" +msgstr "Icona shortcut" + +#: mod/admin.php:702 +msgid "Link to an icon that will be used for browsers." +msgstr "Link verso un'icona che verrà usata dai browsers." + +#: mod/admin.php:703 +msgid "Touch icon" +msgstr "Icona touch" + +#: mod/admin.php:703 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link verso un'icona che verrà usata dai tablet e i telefonini." + +#: mod/admin.php:704 +msgid "Additional Info" +msgstr "Informazioni aggiuntive" + +#: mod/admin.php:704 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo." + +#: mod/admin.php:705 +msgid "System language" +msgstr "Lingua di sistema" + +#: mod/admin.php:706 +msgid "System theme" +msgstr "Tema di sistema" + +#: mod/admin.php:706 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" + +#: mod/admin.php:707 +msgid "Mobile system theme" +msgstr "Tema mobile di sistema" + +#: mod/admin.php:707 +msgid "Theme for mobile devices" +msgstr "Tema per dispositivi mobili" + +#: mod/admin.php:708 +msgid "SSL link policy" +msgstr "Gestione link SSL" + +#: mod/admin.php:708 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina se i link generati devono essere forzati a usare SSL" + +#: mod/admin.php:709 +msgid "Force SSL" +msgstr "Forza SSL" + +#: mod/admin.php:709 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine" + +#: mod/admin.php:710 +msgid "Old style 'Share'" +msgstr "Ricondivisione vecchio stile" + +#: mod/admin.php:710 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" + +#: mod/admin.php:711 +msgid "Hide help entry from navigation menu" +msgstr "Nascondi la voce 'Guida' dal menu di navigazione" + +#: mod/admin.php:711 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." + +#: mod/admin.php:712 +msgid "Single user instance" +msgstr "Instanza a singolo utente" + +#: mod/admin.php:712 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" + +#: mod/admin.php:713 +msgid "Maximum image size" +msgstr "Massima dimensione immagini" + +#: mod/admin.php:713 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." + +#: mod/admin.php:714 +msgid "Maximum image length" +msgstr "Massima lunghezza immagine" + +#: mod/admin.php:714 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." + +#: mod/admin.php:715 +msgid "JPEG image quality" +msgstr "Qualità immagini JPEG" + +#: mod/admin.php:715 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." + +#: mod/admin.php:717 +msgid "Register policy" +msgstr "Politica di registrazione" + +#: mod/admin.php:718 +msgid "Maximum Daily Registrations" +msgstr "Massime registrazioni giornaliere" + +#: mod/admin.php:718 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." + +#: mod/admin.php:719 +msgid "Register text" +msgstr "Testo registrazione" + +#: mod/admin.php:719 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: mod/admin.php:720 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" + +#: mod/admin.php:720 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." + +#: mod/admin.php:721 +msgid "Allowed friend domains" +msgstr "Domini amici consentiti" + +#: mod/admin.php:721 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: mod/admin.php:722 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: mod/admin.php:722 +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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: mod/admin.php:723 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: mod/admin.php:723 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." + +#: mod/admin.php:724 +msgid "Force publish" +msgstr "Forza publicazione" + +#: mod/admin.php:724 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." + +#: mod/admin.php:725 +msgid "Global directory URL" +msgstr "URL della directory globale" + +#: mod/admin.php:725 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:726 +msgid "Allow threaded items" +msgstr "Permetti commenti nidificati" + +#: mod/admin.php:726 +msgid "Allow infinite level threading for items on this site." +msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." + +#: mod/admin.php:727 +msgid "Private posts by default for new users" +msgstr "Post privati di default per i nuovi utenti" + +#: mod/admin.php:727 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." + +#: mod/admin.php:728 +msgid "Don't include post content in email notifications" +msgstr "Non includere il contenuto dei post nelle notifiche via email" + +#: mod/admin.php:728 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" + +#: mod/admin.php:729 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." + +#: mod/admin.php:729 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" + +#: mod/admin.php:730 +msgid "Don't embed private images in posts" +msgstr "Non inglobare immagini private nei post" + +#: mod/admin.php:730 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." + +#: mod/admin.php:731 +msgid "Allow Users to set remote_self" +msgstr "Permetti agli utenti di impostare 'io remoto'" + +#: mod/admin.php:731 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." + +#: mod/admin.php:732 +msgid "Block multiple registrations" +msgstr "Blocca registrazioni multiple" + +#: mod/admin.php:732 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Non permette all'utente di registrare account extra da usare come pagine." + +#: mod/admin.php:733 +msgid "OpenID support" +msgstr "Supporto OpenID" + +#: mod/admin.php:733 +msgid "OpenID support for registration and logins." +msgstr "Supporta OpenID per la registrazione e il login" + +#: mod/admin.php:734 +msgid "Fullname check" +msgstr "Controllo nome completo" + +#: mod/admin.php:734 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" + +#: mod/admin.php:735 +msgid "UTF-8 Regular expressions" +msgstr "Espressioni regolari UTF-8" + +#: mod/admin.php:735 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usa le espressioni regolari PHP in UTF8" + +#: mod/admin.php:736 +msgid "Community Page Style" +msgstr "Stile pagina Comunità" + +#: mod/admin.php:736 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." + +#: mod/admin.php:737 +msgid "Posts per user on community page" +msgstr "Messaggi per utente nella pagina Comunità" + +#: mod/admin.php:737 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')" + +#: mod/admin.php:738 +msgid "Enable OStatus support" +msgstr "Abilita supporto OStatus" + +#: mod/admin.php:738 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." + +#: mod/admin.php:739 +msgid "OStatus conversation completion interval" +msgstr "Intervallo completamento conversazioni OStatus" + +#: mod/admin.php:739 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." + +#: mod/admin.php:740 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" + +#: mod/admin.php:740 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornisce compatibilità con il network Diaspora." + +#: mod/admin.php:741 +msgid "Only allow Friendica contacts" +msgstr "Permetti solo contatti Friendica" + +#: mod/admin.php:741 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." + +#: mod/admin.php:742 +msgid "Verify SSL" +msgstr "Verifica SSL" + +#: mod/admin.php:742 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." + +#: mod/admin.php:743 +msgid "Proxy user" +msgstr "Utente Proxy" + +#: mod/admin.php:744 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: mod/admin.php:745 +msgid "Network timeout" +msgstr "Timeout rete" + +#: mod/admin.php:745 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." + +#: mod/admin.php:746 +msgid "Delivery interval" +msgstr "Intervallo di invio" + +#: mod/admin.php:746 +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 "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." + +#: mod/admin.php:747 +msgid "Poll interval" +msgstr "Intervallo di poll" + +#: mod/admin.php:747 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." + +#: mod/admin.php:748 +msgid "Maximum Load Average" +msgstr "Massimo carico medio" + +#: mod/admin.php:748 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." + +#: mod/admin.php:749 +msgid "Maximum Load Average (Frontend)" +msgstr "Media Massimo Carico (Frontend)" + +#: mod/admin.php:749 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50." + +#: mod/admin.php:751 +msgid "Periodical check of global contacts" +msgstr "Check periodico dei contatti globali" + +#: mod/admin.php:751 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server." + +#: mod/admin.php:752 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:752 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:753 +msgid "Discover contacts from other servers" +msgstr "Trova contatti dagli altri server" + +#: mod/admin.php:753 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"." + +#: mod/admin.php:754 +msgid "Timeframe for fetching global contacts" +msgstr "Termine per il recupero contatti globali" + +#: mod/admin.php:754 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server." + +#: mod/admin.php:755 +msgid "Search the local directory" +msgstr "Cerca la directory locale" + +#: mod/admin.php:755 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta." + +#: mod/admin.php:757 +msgid "Publish server information" +msgstr "Pubblica informazioni server" + +#: mod/admin.php:757 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ." + +#: mod/admin.php:759 +msgid "Use MySQL full text engine" +msgstr "Usa il motore MySQL full text" + +#: mod/admin.php:759 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." + +#: mod/admin.php:760 +msgid "Suppress Language" +msgstr "Disattiva lingua" + +#: mod/admin.php:760 +msgid "Suppress language information in meta information about a posting." +msgstr "Disattiva le informazioni sulla lingua nei meta di un post." + +#: mod/admin.php:761 +msgid "Suppress Tags" +msgstr "Sopprimi Tags" + +#: mod/admin.php:761 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Non mostra la lista di hashtag in coda al messaggio" + +#: mod/admin.php:762 +msgid "Path to item cache" +msgstr "Percorso cache elementi" + +#: mod/admin.php:762 +msgid "The item caches buffers generated bbcode and external images." +msgstr "La cache degli elementi memorizza il bbcode generato e le immagini esterne." + +#: mod/admin.php:763 +msgid "Cache duration in seconds" +msgstr "Durata della cache in secondi" + +#: mod/admin.php:763 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." + +#: mod/admin.php:764 +msgid "Maximum numbers of comments per post" +msgstr "Numero massimo di commenti per post" + +#: mod/admin.php:764 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." + +#: mod/admin.php:765 +msgid "Path for lock file" +msgstr "Percorso al file di lock" + +#: mod/admin.php:765 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui." + +#: mod/admin.php:766 +msgid "Temp path" +msgstr "Percorso file temporanei" + +#: mod/admin.php:766 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui." + +#: mod/admin.php:767 +msgid "Base path to installation" +msgstr "Percorso base all'installazione" + +#: mod/admin.php:767 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot." + +#: mod/admin.php:768 +msgid "Disable picture proxy" +msgstr "Disabilita il proxy immagini" + +#: mod/admin.php:768 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." + +#: mod/admin.php:769 +msgid "Enable old style pager" +msgstr "Abilita la paginazione vecchio stile" + +#: mod/admin.php:769 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." + +#: mod/admin.php:770 +msgid "Only search in tags" +msgstr "Cerca solo nei tag" + +#: mod/admin.php:770 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." + +#: mod/admin.php:772 +msgid "New base url" +msgstr "Nuovo url base" + +#: mod/admin.php:772 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti." + +#: mod/admin.php:774 +msgid "RINO Encryption" +msgstr "Crittografia RINO" + +#: mod/admin.php:774 +msgid "Encryption layer between nodes." +msgstr "Crittografia delle comunicazioni tra nodi." + +#: mod/admin.php:775 +msgid "Embedly API key" +msgstr "Embedly API key" + +#: mod/admin.php:775 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale." + +#: mod/admin.php:793 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato segnato come di successo" + +#: mod/admin.php:801 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Aggiornamento struttura database %s applicata con successo." + +#: mod/admin.php:804 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Aggiornamento struttura database %s fallita con errore: %s" + +#: mod/admin.php:816 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Esecuzione di %s fallita con errore: %s" + +#: mod/admin.php:819 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è stato applicato con successo" + +#: mod/admin.php:823 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." + +#: mod/admin.php:825 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." + +#: mod/admin.php:844 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: mod/admin.php:845 +msgid "Check database structure" +msgstr "Controlla struttura database" + +#: mod/admin.php:850 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti" + +#: mod/admin.php:851 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." + +#: mod/admin.php:852 +msgid "Mark success (if update was manually applied)" +msgstr "Segna completato (se l'update è stato applicato manualmente)" + +#: mod/admin.php:853 +msgid "Attempt to execute this update step automatically" +msgstr "Cerco di eseguire questo aggiornamento in automatico" + +#: mod/admin.php:885 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." + +#: mod/admin.php:888 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" + +#: mod/admin.php:920 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: mod/admin.php:932 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utente bloccato/sbloccato" +msgstr[1] "%s utenti bloccati/sbloccati" + +#: mod/admin.php:939 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: mod/admin.php:978 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' cancellato" + +#: mod/admin.php:986 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: mod/admin.php:986 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: mod/admin.php:1079 +msgid "Add User" +msgstr "Aggiungi utente" + +#: mod/admin.php:1080 +msgid "select all" +msgstr "seleziona tutti" + +#: mod/admin.php:1081 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: mod/admin.php:1082 +msgid "User waiting for permanent deletion" +msgstr "Utente in attesa di cancellazione definitiva" + +#: mod/admin.php:1083 +msgid "Request date" +msgstr "Data richiesta" + +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109 +#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170 +msgid "Name" +msgstr "Nome" + +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "Email" + +#: mod/admin.php:1084 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: mod/admin.php:1086 +msgid "Deny" +msgstr "Nega" + +#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 +msgid "Block" +msgstr "Blocca" + +#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 +msgid "Unblock" +msgstr "Sblocca" + +#: mod/admin.php:1090 +msgid "Site admin" +msgstr "Amministrazione sito" + +#: mod/admin.php:1091 +msgid "Account expired" +msgstr "Account scaduto" + +#: mod/admin.php:1094 +msgid "New User" +msgstr "Nuovo Utente" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Register date" +msgstr "Data registrazione" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Last login" +msgstr "Ultimo accesso" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Last item" +msgstr "Ultimo elemento" + +#: mod/admin.php:1095 +msgid "Deleted since" +msgstr "Rimosso da" + +#: mod/admin.php:1096 mod/settings.php:41 +msgid "Account" +msgstr "Account" + +#: mod/admin.php:1098 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" + +#: mod/admin.php:1099 +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 "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" + +#: mod/admin.php:1109 +msgid "Name of the new user." +msgstr "Nome del nuovo utente." + +#: mod/admin.php:1110 +msgid "Nickname" +msgstr "Nome utente" + +#: mod/admin.php:1110 +msgid "Nickname of the new user." +msgstr "Nome utente del nuovo utente." + +#: mod/admin.php:1111 +msgid "Email address of the new user." +msgstr "Indirizzo Email del nuovo utente." + +#: mod/admin.php:1144 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabilitato." + +#: mod/admin.php:1148 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s abilitato." + +#: mod/admin.php:1158 mod/admin.php:1381 +msgid "Disable" +msgstr "Disabilita" + +#: mod/admin.php:1160 mod/admin.php:1383 +msgid "Enable" +msgstr "Abilita" + +#: mod/admin.php:1183 mod/admin.php:1411 +msgid "Toggle" +msgstr "Inverti" + +#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22 +#: mod/settings.php:99 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 include/nav.php:181 +msgid "Settings" +msgstr "Impostazioni" + +#: mod/admin.php:1191 mod/admin.php:1421 +msgid "Author: " +msgstr "Autore: " + +#: mod/admin.php:1192 mod/admin.php:1422 +msgid "Maintainer: " +msgstr "Manutentore: " + +#: mod/admin.php:1341 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: mod/admin.php:1403 +msgid "Screenshot" +msgstr "Anteprima" + +#: mod/admin.php:1449 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: mod/admin.php:1450 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: mod/admin.php:1477 +msgid "Log settings updated." +msgstr "Impostazioni Log aggiornate." + +#: mod/admin.php:1533 +msgid "Clear" +msgstr "Pulisci" + +#: mod/admin.php:1539 +msgid "Enable Debugging" +msgstr "Abilita Debugging" + +#: mod/admin.php:1540 +msgid "Log file" +msgstr "File di Log" + +#: mod/admin.php:1540 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." + +#: mod/admin.php:1541 +msgid "Log level" +msgstr "Livello di Log" + +#: mod/admin.php:1590 mod/contacts.php:619 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: mod/admin.php:1591 include/acl_selectors.php:347 +msgid "Close" +msgstr "Chiudi" + +#: mod/admin.php:1597 +msgid "FTP Host" +msgstr "Indirizzo FTP" + +#: mod/admin.php:1598 +msgid "FTP Path" +msgstr "Percorso FTP" + +#: mod/admin.php:1599 +msgid "FTP User" +msgstr "Utente FTP" + +#: mod/admin.php:1600 +msgid "FTP Password" +msgstr "Pasword FTP" + +#: mod/message.php:9 include/nav.php:173 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." + +#: mod/message.php:74 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Errore recuperando il messaggio." + +#: mod/message.php:77 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Messaggio inviato." + +#: mod/message.php:183 include/nav.php:170 +msgid "Messages" +msgstr "Messaggi" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "Vuoi veramente cancellare questo messaggio?" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: mod/message.php:284 mod/message.php:292 mod/message.php:467 +#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1001 include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "A:" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Oggetto:" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110 +#: mod/wallmessage.php:154 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Carica foto" + +#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114 +#: mod/wallmessage.php:155 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Inserisci link" + +#: mod/message.php:372 +msgid "No messages." +msgstr "Nessun messaggio." + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "Mittente sconosciuto - %s" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "Tu e %s" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "%s e Tu" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d messaggio" +msgstr[1] "%d messaggi" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "Messaggio non disponibile." + +#: mod/message.php:521 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: mod/message.php:549 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." + +#: mod/message.php:553 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Oggetto non trovato" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Modifica messaggio" + +#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997 +msgid "Save" +msgstr "Salva" + +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "carica foto" + +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Allega file" + +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "allega file" + +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "link web" + +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "link video" + +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "link audio" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "La tua posizione" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "posizione" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "canc. pos." + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Scegli un titolo" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 +msgid "Profile not found." +msgstr "Profilo non trovato." + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Errore di comunicazione con l'altro sito." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "La risposta dell'altro sito non può essere gestita: " + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Problema temporaneo. Attendi e riprova." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "La presentazione ha generato un errore o è stata revocata." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." + +#: mod/dfrn_confirm.php:487 include/diaspora.php:633 +#: include/conversation.php:172 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s e %2$s adesso sono amici" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato '%s'" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "Il contatto non è stato trovato sul nostro sito." + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s si è unito a %2$s" + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "Un evento non puo' finire prima di iniziare." + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Titolo e ora di inizio dell'evento sono richiesti." + +#: mod/events.php:317 +msgid "l, F j" +msgstr "l j F" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Modifca l'evento" + +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: mod/events.php:396 view/theme/diabook/theme.php:127 +#: include/identity.php:668 include/nav.php:80 +msgid "Events" +msgstr "Eventi" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Precendente" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Successivo" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Dettagli dell'evento" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "La data di inizio e il titolo sono richiesti." + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "L'evento inizia:" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Richiesto" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "L'evento finisce:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "Visualizza con il fuso orario di chi legge" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Descrizione:" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Titolo:" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126 +#: include/identity.php:649 include/nav.php:78 +msgid "Photos" +msgstr "Foto" + +#: mod/fbrowser.php:122 +msgid "Files" +msgstr "File" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibile a:" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Impossibile controllare la tua posizione di origine." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nessun destinatario." + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." + +#: mod/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838 +#: mod/viewcontacts.php:64 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: mod/nogroup.php:41 mod/contacts.php:839 +msgid "Edit contact" +msgstr "Modifca contatto" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contatti che non sono membri di un gruppo" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "il bugtracker su github" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/addon/applicazioni instalate" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/addons/applicazione installata" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Rimuovi il mio account" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 +#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 +#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +msgid "Invalid request." +msgstr "Richiesta non valida." + +#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "La dimensione dell'immagine supera il limite di %s" + +#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." + +#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220 +#: mod/item.php:486 include/message.php:145 include/Photo.php:951 +#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 +msgid "Wall Photos" +msgstr "Foto della bacheca" + +#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la connessione dell'applicazione" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Effettua il login per continuare." + +#: 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 "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" + +#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 +#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 +#: mod/photos.php:1791 view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Foto dei contatti" + +#: mod/photos.php:84 include/identity.php:652 +msgid "Photo Albums" +msgstr "Album foto" + +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: mod/photos.php:102 mod/settings.php:34 +msgid "everybody" +msgstr "tutti" + +#: mod/photos.php:166 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" + +#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 +#: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81 +#: mod/profile_photo.php:88 mod/profile_photo.php:204 +#: mod/profile_photo.php:296 mod/profile_photo.php:305 +#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350 +#: include/user.php:357 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: mod/photos.php:187 +msgid "Album not found." +msgstr "Album non trovato." + +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +msgid "Delete Album" +msgstr "Rimuovi album" + +#: mod/photos.php:220 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" + +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +msgid "Delete Photo" +msgstr "Rimuovi foto" + +#: mod/photos.php:309 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" + +#: mod/photos.php:684 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s è stato taggato in %2$s da %3$s" + +#: mod/photos.php:684 +msgid "a photo" +msgstr "una foto" + +#: mod/photos.php:797 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: mod/photos.php:952 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: mod/photos.php:1053 mod/videos.php:298 +msgid "Access to this item is restricted." +msgstr "Questo oggetto non è visibile a tutti." + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." + +#: mod/photos.php:1149 +msgid "Upload Photos" +msgstr "Carica foto" + +#: mod/photos.php:1153 mod/photos.php:1219 +msgid "New album name: " +msgstr "Nome nuovo album: " + +#: mod/photos.php:1154 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " + +#: mod/photos.php:1155 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" + +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Permessi" + +#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: mod/photos.php:1168 +msgid "Private Photo" +msgstr "Foto privata" + +#: mod/photos.php:1169 +msgid "Public Photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1232 +msgid "Edit Album" +msgstr "Modifica album" + +#: mod/photos.php:1238 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" + +#: mod/photos.php:1240 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" + +#: mod/photos.php:1268 mod/photos.php:1821 +msgid "View Photo" +msgstr "Vedi foto" + +#: mod/photos.php:1314 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." + +#: mod/photos.php:1316 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Vedi foto" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Modifica foto" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Vedi dimensione intera" + +#: mod/photos.php:1477 +msgid "Tags: " +msgstr "Tag: " + +#: mod/photos.php:1480 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" + +#: mod/photos.php:1520 +msgid "New album name" +msgstr "Nuovo nome dell'album" + +#: mod/photos.php:1521 +msgid "Caption" +msgstr "Titolo" + +#: mod/photos.php:1522 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: mod/photos.php:1522 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "Non ruotare" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" + +#: mod/photos.php:1540 +msgid "Private photo" +msgstr "Foto privata" + +#: mod/photos.php:1541 +msgid "Public photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Condividi" + +#: mod/photos.php:1827 mod/videos.php:380 +msgid "View Album" +msgstr "Sfoglia l'album" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Si è verificato un errore inviando l'email. I dettagli del tuo account:
login: %s
password: %s

Puoi cambiare la password dopo il login." + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere elaborata." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito." + +#: mod/register.php:188 mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Il tuo OpenID (opzionale): " + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Includi il tuo profilo nell'elenco pubblico?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "La registrazione su questo sito è solo su invito." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "L'ID del tuo invito:" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Il tuo nome completo (es. Mario Rossi): " + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Il tuo indirizzo email: " + +#: mod/register.php:271 mod/settings.php:1174 +msgid "New Password:" +msgstr "Nuova password:" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "Lascia vuoto per generare automaticamente una password." + +#: mod/register.php:272 mod/settings.php:1175 +msgid "Confirm:" +msgstr "Conferma:" + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Scegli un nome utente: " + +#: mod/register.php:277 boot.php:1248 include/nav.php:109 +msgid "Register" +msgstr "Registrati" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "Importa" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "Importa il tuo profilo in questo server friendica" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." + +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." + +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Richiesta reimpostazione password su %s" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." + +#: mod/lostpass.php:109 boot.php:1287 +msgid "Password Reset" +msgstr "Reimpostazione password" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "La tua password è stata reimpostata come richiesto." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "clicca qui per entrare" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "La tua password presso %s è stata cambiata" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Nome utente o email: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Reimposta" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Sistema in manutenzione" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Oggetto non disponibile." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Oggetto non trovato." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Applicazioni" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." + +#: mod/help.php:31 +msgid "Help:" +msgstr "Guida:" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Guida" + #: mod/contacts.php:114 #, php-format msgid "%d contact edited." @@ -32,7 +3110,7 @@ msgid_plural "%d contacts edited" msgstr[0] "%d contatto modificato" msgstr[1] "%d contatti modificati" -#: mod/contacts.php:145 mod/contacts.php:340 +#: mod/contacts.php:145 mod/contacts.php:368 msgid "Could not access contact record." msgstr "Non è possibile accedere al contatto." @@ -44,490 +3122,416 @@ msgstr "Non riesco a trovare il profilo selezionato." msgid "Contact updated." msgstr "Contatto aggiornato." -#: mod/contacts.php:194 mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." - -#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 -#: mod/profile_photo.php:19 mod/profile_photo.php:169 -#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/follow.php:9 -#: mod/follow.php:44 mod/follow.php:83 mod/item.php:170 mod/item.php:186 -#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 -#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 -#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 -#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 -#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 -#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 -#: mod/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135 -#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 -#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 -#: include/items.php:5023 index.php:382 -msgid "Permission denied." -msgstr "Permesso negato." - -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been blocked" msgstr "Il contatto è stato bloccato" -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been unblocked" msgstr "Il contatto è stato sbloccato" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been ignored" msgstr "Il contatto è ignorato" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been unignored" msgstr "Il contatto non è più ignorato" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been archived" msgstr "Il contatto è stato archiviato" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been unarchived" msgstr "Il contatto è stato dearchiviato" -#: mod/contacts.php:411 mod/contacts.php:767 +#: mod/contacts.php:439 mod/contacts.php:795 msgid "Do you really want to delete this contact?" msgstr "Vuoi veramente cancellare questo contatto?" -#: mod/contacts.php:413 mod/follow.php:59 mod/message.php:210 -#: mod/settings.php:1066 mod/settings.php:1072 mod/settings.php:1080 -#: mod/settings.php:1084 mod/settings.php:1089 mod/settings.php:1095 -#: mod/settings.php:1101 mod/settings.php:1107 mod/settings.php:1133 -#: mod/settings.php:1134 mod/settings.php:1135 mod/settings.php:1136 -#: mod/settings.php:1137 mod/dfrn_request.php:848 mod/register.php:235 -#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/api.php:105 include/items.php:4855 -msgid "Yes" -msgstr "Si" - -#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:70 -#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 -#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 -#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 -#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 -#: include/items.php:4858 -msgid "Cancel" -msgstr "Annulla" - -#: mod/contacts.php:428 +#: mod/contacts.php:456 msgid "Contact has been removed." msgstr "Il contatto è stato rimosso." -#: mod/contacts.php:466 +#: mod/contacts.php:494 #, php-format msgid "You are mutual friends with %s" msgstr "Sei amico reciproco con %s" -#: mod/contacts.php:470 +#: mod/contacts.php:498 #, php-format msgid "You are sharing with %s" msgstr "Stai condividendo con %s" -#: mod/contacts.php:475 +#: mod/contacts.php:503 #, php-format msgid "%s is sharing with you" msgstr "%s sta condividendo con te" -#: mod/contacts.php:495 +#: mod/contacts.php:523 msgid "Private communications are not available for this contact." msgstr "Le comunicazioni private non sono disponibili per questo contatto." -#: mod/contacts.php:498 mod/admin.php:618 -msgid "Never" -msgstr "Mai" - -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was successful)" msgstr "(L'aggiornamento è stato completato)" -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was not successful)" msgstr "(L'aggiornamento non è stato completato)" -#: mod/contacts.php:504 +#: mod/contacts.php:532 msgid "Suggest friends" msgstr "Suggerisci amici" -#: mod/contacts.php:508 +#: mod/contacts.php:536 #, php-format msgid "Network type: %s" msgstr "Tipo di rete: %s" -#: mod/contacts.php:511 include/contact_widgets.php:200 +#: mod/contacts.php:539 include/contact_widgets.php:200 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contatto in comune" msgstr[1] "%d contatti in comune" -#: mod/contacts.php:516 +#: mod/contacts.php:544 msgid "View all contacts" msgstr "Vedi tutti i contatti" -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1083 -msgid "Unblock" -msgstr "Sblocca" - -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1082 -msgid "Block" -msgstr "Blocca" - -#: mod/contacts.php:524 +#: mod/contacts.php:552 msgid "Toggle Blocked status" msgstr "Inverti stato \"Blocca\"" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 msgid "Unignore" msgstr "Non ignorare" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 -msgid "Ignore" -msgstr "Ignora" - -#: mod/contacts.php:531 +#: mod/contacts.php:559 msgid "Toggle Ignored status" msgstr "Inverti stato \"Ignora\"" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Unarchive" msgstr "Dearchivia" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Archive" msgstr "Archivia" -#: mod/contacts.php:539 +#: mod/contacts.php:567 msgid "Toggle Archive status" msgstr "Inverti stato \"Archiviato\"" -#: mod/contacts.php:543 +#: mod/contacts.php:571 msgid "Repair" msgstr "Ripara" -#: mod/contacts.php:546 +#: mod/contacts.php:574 msgid "Advanced Contact Settings" msgstr "Impostazioni avanzate Contatto" -#: mod/contacts.php:553 +#: mod/contacts.php:581 msgid "Communications lost with this contact!" msgstr "Comunicazione con questo contatto persa!" -#: mod/contacts.php:556 +#: mod/contacts.php:584 msgid "Fetch further information for feeds" msgstr "Recupera maggiori infomazioni per i feed" -#: mod/contacts.php:557 mod/admin.php:627 -msgid "Disabled" -msgstr "Disabilitato" - -#: mod/contacts.php:557 +#: mod/contacts.php:585 msgid "Fetch information" msgstr "Recupera informazioni" -#: mod/contacts.php:557 +#: mod/contacts.php:585 msgid "Fetch information and keywords" msgstr "Recupera informazioni e parole chiave" -#: mod/contacts.php:566 +#: mod/contacts.php:594 msgid "Contact Editor" msgstr "Editor dei Contatti" -#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 -#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 -#: mod/events.php:511 mod/content.php:712 mod/install.php:250 -#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 -#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 -#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 -#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 -#: object/Item.php:680 view/theme/cleanzero/config.php:80 -#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 -#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 -#: view/theme/vier/config.php:56 view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Invia" - -#: mod/contacts.php:569 +#: mod/contacts.php:597 msgid "Profile Visibility" msgstr "Visibilità del profilo" -#: mod/contacts.php:570 +#: mod/contacts.php:598 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." -#: mod/contacts.php:571 +#: mod/contacts.php:599 msgid "Contact Information / Notes" msgstr "Informazioni / Note sul contatto" -#: mod/contacts.php:572 +#: mod/contacts.php:600 msgid "Edit contact notes" msgstr "Modifica note contatto" -#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 -#: mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: mod/contacts.php:578 +#: mod/contacts.php:606 msgid "Block/Unblock contact" msgstr "Blocca/Sblocca contatto" -#: mod/contacts.php:579 +#: mod/contacts.php:607 msgid "Ignore contact" msgstr "Ignora il contatto" -#: mod/contacts.php:580 +#: mod/contacts.php:608 msgid "Repair URL settings" msgstr "Impostazioni riparazione URL" -#: mod/contacts.php:581 +#: mod/contacts.php:609 msgid "View conversations" msgstr "Vedi conversazioni" -#: mod/contacts.php:583 +#: mod/contacts.php:611 msgid "Delete contact" msgstr "Rimuovi contatto" -#: mod/contacts.php:587 +#: mod/contacts.php:615 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: mod/contacts.php:589 +#: mod/contacts.php:617 msgid "Update public posts" msgstr "Aggiorna messaggi pubblici" -#: mod/contacts.php:591 mod/admin.php:1584 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: mod/contacts.php:598 +#: mod/contacts.php:626 msgid "Currently blocked" msgstr "Bloccato" -#: mod/contacts.php:599 +#: mod/contacts.php:627 msgid "Currently ignored" msgstr "Ignorato" -#: mod/contacts.php:600 +#: mod/contacts.php:628 msgid "Currently archived" msgstr "Al momento archiviato" -#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" - -#: mod/contacts.php:601 +#: mod/contacts.php:629 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" -#: mod/contacts.php:602 +#: mod/contacts.php:630 msgid "Notification for new posts" msgstr "Notifica per i nuovi messaggi" -#: mod/contacts.php:602 +#: mod/contacts.php:630 msgid "Send a notification of every new post of this contact" msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto" -#: mod/contacts.php:605 +#: mod/contacts.php:633 msgid "Blacklisted keywords" msgstr "Parole chiave in blacklist" -#: mod/contacts.php:605 +#: mod/contacts.php:633 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato" -#: mod/contacts.php:612 +#: mod/contacts.php:640 msgid "Profile URL" msgstr "URL Profilo" -#: mod/contacts.php:658 +#: mod/contacts.php:686 msgid "Suggestions" msgstr "Suggerimenti" -#: mod/contacts.php:661 +#: mod/contacts.php:689 msgid "Suggest potential friends" msgstr "Suggerisci potenziali amici" -#: mod/contacts.php:665 mod/group.php:192 +#: mod/contacts.php:693 mod/group.php:192 msgid "All Contacts" msgstr "Tutti i contatti" -#: mod/contacts.php:668 +#: mod/contacts.php:696 msgid "Show all contacts" msgstr "Mostra tutti i contatti" -#: mod/contacts.php:672 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "Sbloccato" -#: mod/contacts.php:675 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "Mostra solo contatti non bloccati" -#: mod/contacts.php:680 +#: mod/contacts.php:708 msgid "Blocked" msgstr "Bloccato" -#: mod/contacts.php:683 +#: mod/contacts.php:711 msgid "Only show blocked contacts" msgstr "Mostra solo contatti bloccati" -#: mod/contacts.php:688 +#: mod/contacts.php:716 msgid "Ignored" msgstr "Ignorato" -#: mod/contacts.php:691 +#: mod/contacts.php:719 msgid "Only show ignored contacts" msgstr "Mostra solo contatti ignorati" -#: mod/contacts.php:696 +#: mod/contacts.php:724 msgid "Archived" msgstr "Achiviato" -#: mod/contacts.php:699 +#: mod/contacts.php:727 msgid "Only show archived contacts" msgstr "Mostra solo contatti archiviati" -#: mod/contacts.php:704 +#: mod/contacts.php:732 msgid "Hidden" msgstr "Nascosto" -#: mod/contacts.php:707 +#: mod/contacts.php:735 msgid "Only show hidden contacts" msgstr "Mostra solo contatti nascosti" -#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 -#: include/nav.php:186 view/theme/diabook/theme.php:125 +#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 +#: include/nav.php:124 include/nav.php:186 msgid "Contacts" msgstr "Contatti" -#: mod/contacts.php:762 +#: mod/contacts.php:790 msgid "Search your contacts" msgstr "Cerca nei tuoi contatti" -#: mod/contacts.php:763 mod/directory.php:63 +#: mod/contacts.php:791 mod/directory.php:63 msgid "Finding: " msgstr "Ricerca: " -#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 msgid "Find" msgstr "Trova" -#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 +#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 msgid "Update" msgstr "Aggiorna" -#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 -#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 -msgid "Delete" -msgstr "Rimuovi" - -#: mod/contacts.php:786 +#: mod/contacts.php:814 msgid "Mutual Friendship" msgstr "Amicizia reciproca" -#: mod/contacts.php:790 +#: mod/contacts.php:818 msgid "is a fan of yours" msgstr "è un tuo fan" -#: mod/contacts.php:794 +#: mod/contacts.php:822 msgid "you are a fan of" msgstr "sei un fan di" -#: mod/contacts.php:811 mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Modifca contatto" +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "Vuoi veramente cancellare questo video?" -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "Rimuovi video" -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci indentità e/o pagine" +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Nessun video selezionato" -#: mod/manage.php:107 +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Video Recenti" + +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Carica Nuovo Video" + +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Amici in comune" + +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." + +#: mod/follow.php:26 +msgid "You already added this contact." +msgstr "Hai già aggiunto questo contatto." + +#: mod/follow.php:108 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +msgid "Login" +msgstr "Accedi" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Il messaggio è stato creato" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Muovi account" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Puoi importare un account da un altro server Friendica." + +#: mod/uimport.php:68 msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Seleziona un'identità da gestire:" +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Inviato!" +#: mod/uimport.php:70 +msgid "Account file" +msgstr "File account" -#: mod/profperm.php:19 mod/group.php:72 index.php:381 -msgid "Permission denied" -msgstr "Permesso negato" +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" +#: mod/allfriends.php:37 +#, php-format +msgid "Friends of %s" +msgstr "Amici di %s" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 -#: include/identity.php:610 include/identity.php:640 include/nav.php:77 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profilo" +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Visibile a" +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 -#: mod/notice.php:15 include/items.php:4814 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 -#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 -#: mod/directory.php:35 mod/photos.php:942 -msgid "Public access denied." -msgstr "Accesso negato." - -#: mod/display.php:343 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Rimuovi" #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -560,12 +3564,6 @@ msgid "" " join." msgstr "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti." -#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 -#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "Impostazioni" - #: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "Vai alle tue Impostazioni" @@ -585,7 +3583,13 @@ msgid "" "potential friends know exactly how to find you." msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." -#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 +#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 +#: include/identity.php:530 include/identity.php:611 include/identity.php:641 +#: include/nav.php:77 +msgid "Profile" +msgstr "Profilo" + +#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "Carica la foto del profilo" @@ -724,3097 +3728,123 @@ msgid "" " features and resources." msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore protocollo OpenID. Nessun ID ricevuto." - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Accesso fallito." - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." - -#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:204 mod/profile_photo.php:296 -#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753 -#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 -#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento del'immagine [%s] è fallito." - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "La dimensione dell'immagine supera il limite di %s" - -#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Carica un file:" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" - -#: mod/profile_photo.php:245 -msgid "Upload" -msgstr "Carica" - -#: mod/profile_photo.php:248 -msgid "or" -msgstr "o" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "salta questo passaggio" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'imagine per una visualizzazione migliore." - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Finito" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." - -#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." - -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 -#: include/conversation.php:126 include/conversation.php:253 -#: include/text.php:2034 include/diaspora.php:2127 -#: view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "foto" - -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 -#: include/conversation.php:121 include/conversation.php:130 -#: include/conversation.php:248 include/conversation.php:257 -#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 -#: view/theme/diabook/theme.php:475 -msgid "status" -msgstr "stato" - -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Rimuovi" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "Salva nella Cartella:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- seleziona -" - -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 -msgid "Save" -msgstr "Salva" - -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "Hai già aggiunto questo contatto." - -#: mod/follow.php:58 mod/dfrn_request.php:847 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: mod/follow.php:59 mod/dfrn_request.php:848 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" - -#: mod/follow.php:59 mod/settings.php:1066 mod/settings.php:1072 -#: mod/settings.php:1080 mod/settings.php:1084 mod/settings.php:1089 -#: mod/settings.php:1095 mod/settings.php:1101 mod/settings.php:1107 -#: mod/settings.php:1133 mod/settings.php:1134 mod/settings.php:1135 -#: mod/settings.php:1136 mod/settings.php:1137 mod/dfrn_request.php:848 -#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 -#: mod/api.php:106 -msgid "No" -msgstr "No" - -#: mod/follow.php:60 mod/dfrn_request.php:852 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: mod/follow.php:66 mod/dfrn_request.php:858 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: mod/follow.php:69 mod/dfrn_request.php:861 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: mod/follow.php:108 -msgid "Contact added" -msgstr "Contatto aggiunto" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." - -#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 -#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 -#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." - -#: mod/item.php:989 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." - -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %s" - -#: mod/item.php:992 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." - -#: mod/item.php:996 -#, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." - -#: mod/group.php:29 -msgid "Group created." -msgstr "Gruppo creato." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Gruppo non trovato." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Il nome del gruppo è cambiato." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Salva gruppo" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crea un gruppo di amici/contatti." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Nome del gruppo:" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Gruppo rimosso." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Impossibile rimuovere il gruppo." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Modifica gruppo" - -#: mod/group.php:190 -msgid "Members" -msgstr "Membri" - -#: mod/apps.php:7 index.php:225 -msgid "You must be logged in to use addons. " -msgstr "Devi aver effettuato il login per usare gli addons." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Applicazioni" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:627 -msgid "Profile not found." -msgstr "Profilo non trovato." - -#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:134 -msgid "Contact not found." -msgstr "Contatto non trovato." - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Errore di comunicazione con l'altro sito." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "La risposta dell'altro sito non può essere gestita: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Conferma completata con successo." - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Il sito remoto riporta: " - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Problema temporaneo. Attendi e riprova." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "La presentazione ha generato un errore o è stata revocata." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Impossibile impostare la foto del contatto." - -#: mod/dfrn_confirm.php:487 include/conversation.php:172 -#: include/diaspora.php:634 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s e %2$s adesso sono amici" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nessun utente trovato '%s'" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "Il contatto non è stato trovato sul nostro sito." - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" - -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" - -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4237 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s si è unito a %2$s" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Profilo richiesto non disponibile." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" - -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "Vuoi veramente cancellare questo video?" - -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Rimuovi video" - -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Nessun video selezionato" - -#: mod/videos.php:298 mod/photos.php:1053 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." - -#: mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "Guarda Video" - -#: mod/videos.php:380 mod/photos.php:1827 -msgid "View Album" -msgstr "Sfoglia l'album" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Video Recenti" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Carica Nuovo Video" - -#: mod/tagger.php:95 include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 -#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 -#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 -msgid "Invalid request." -msgstr "Richiesta non valida." - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Richiesta reimpostazione password su %s" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." - -#: mod/lostpass.php:109 boot.php:1287 -msgid "Password Reset" -msgstr "Reimpostazione password" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "La tua password è stata reimpostata come richiesto." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "clicca qui per entrare" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "La tua password presso %s è stata cambiata" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Nome utente o email: " - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Reimposta" - -#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 -#: view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: mod/like.php:168 include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Nessun contatto." - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "Scarta" - -#: mod/notifications.php:78 -msgid "System" -msgstr "Sistema" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "Rete" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "Personale" - -#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 -#: view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Home" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "Presentazioni" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "Tipo di notifica: " - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "Amico suggerito" - -#: mod/notifications.php:162 -#, php-format -msgid "suggested by %s" -msgstr "sugerito da %s" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "Invia una attività \"è ora amico con\"" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "se applicabile" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 -msgid "Approve" -msgstr "Approva" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " - -#: mod/notifications.php:191 -msgid "yes" -msgstr "si" - -#: mod/notifications.php:191 -msgid "no" -msgstr "no" - -#: mod/notifications.php:192 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" - -#: mod/notifications.php:195 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" - -#: mod/notifications.php:203 -msgid "Friend" -msgstr "Amico" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "Condivisore" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "Richiesta amicizia/connessione" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" - -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 -#: include/event.php:42 -msgid "Location:" -msgstr "Posizione:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:581 -msgid "About:" -msgstr "Informazioni:" - -#: mod/notifications.php:224 include/identity.php:575 -msgid "Tags:" -msgstr "Tag:" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:540 -msgid "Gender:" -msgstr "Genere:" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "Nessuna presentazione." - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "Notifiche" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 -#, php-format -msgid "%s liked %s's post" -msgstr "a %s è piaciuto il messaggio di %s" - -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 -#, php-format -msgid "%s disliked %s's post" -msgstr "a %s non è piaciuto il messaggio di %s" - -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s è ora amico di %s" - -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" -msgstr "%s a creato un nuovo messaggio" - -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s ha commentato il messaggio di %s" - -#: mod/notifications.php:329 -msgid "No more network notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:333 -msgid "Network Notifications" -msgstr "Notifiche dalla rete" - -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Nessuna nuova notifica di sistema." - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "Notifiche personali" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:547 -msgid "Home Notifications" -msgstr "Notifiche bacheca" - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Testo sorgente (bbcode):" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Sorgente:" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML grezzo):" - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Sorgente (formato Diaspora):" - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Pulisci le notifiche" - -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." - -#: mod/message.php:74 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Errore recuperando il messaggio." - -#: mod/message.php:77 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Messaggio inviato." - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "Messaggi" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "Vuoi veramente cancellare questo messaggio?" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: mod/message.php:284 mod/message.php:292 mod/message.php:467 -#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "A:" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Oggetto:" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Carica foto" - -#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Inserisci link" - -#: mod/message.php:335 mod/message.php:566 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 -#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "Attendi" - -#: mod/message.php:372 -msgid "No messages." -msgstr "Nessun messaggio." - -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "Mittente sconosciuto - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Tu e %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s e Tu" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d messaggio" -msgstr[1] "%d messaggi" - -#: mod/message.php:451 -msgid "Message not available." -msgstr "Messaggio non disponibile." - -#: mod/message.php:521 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: mod/message.php:549 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." - -#: mod/message.php:553 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: mod/update_display.php:22 mod/update_community.php:18 -#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Contatto modificato." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" - -#: mod/crepair.php:142 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" - -#: mod/crepair.php:143 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." - -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Non duplicare" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Duplica come messaggi ricondivisi" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Duplica come miei messaggi" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Ricarica dati contatto" - -#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 -#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 -#: mod/settings.php:660 -msgid "Name" -msgstr "Nome" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Nome utente" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@TagName - al posto del nome utente" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "URL dell'utente" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "URL Feed" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Nuova foto da questo URL" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "Io remoto" - -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "Ripeti i messaggi di questo contatto" - -#: mod/crepair.php:181 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." - -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "Accedi" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Il messaggio è stato creato" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesso negato." - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "Cerca persone - %s" - -#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 -#: include/contact_widgets.php:10 include/identity.php:188 -msgid "Connect" -msgstr "Connetti" - -#: mod/dirfind.php:139 mod/match.php:73 -msgid "No matches" -msgstr "Nessun risultato" - -#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 -#: view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Foto" - -#: mod/fbrowser.php:122 -msgid "Files" -msgstr "File" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contatti che non sono membri di un gruppo" - -#: mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Impostazioni del tema aggiornate." - -#: mod/admin.php:104 mod/admin.php:682 -msgid "Site" -msgstr "Sito" - -#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 -msgid "Users" -msgstr "Utenti" - -#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 -msgid "Plugins" -msgstr "Plugin" - -#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 -msgid "Themes" -msgstr "Temi" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "Aggiornamenti Database" - -#: mod/admin.php:109 mod/admin.php:200 -msgid "Inspect Queue" -msgstr "Ispeziona Coda di invio" - -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 -msgid "Logs" -msgstr "Log" - -#: mod/admin.php:125 -msgid "probe address" -msgstr "controlla indirizzo" - -#: mod/admin.php:126 -msgid "check webfinger" -msgstr "verifica webfinger" - -#: mod/admin.php:131 include/nav.php:193 -msgid "Admin" -msgstr "Amministrazione" - -#: mod/admin.php:132 -msgid "Plugin Features" -msgstr "Impostazioni Plugins" - -#: mod/admin.php:134 -msgid "diagnostics" -msgstr "diagnostiche" - -#: mod/admin.php:135 -msgid "User registrations waiting for confirmation" -msgstr "Utenti registrati in attesa di conferma" - -#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 -#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 -#: mod/admin.php:1524 -msgid "Administration" -msgstr "Amministrazione" - -#: mod/admin.php:202 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:203 -msgid "Recipient Name" -msgstr "Nome Destinatario" - -#: mod/admin.php:204 -msgid "Recipient Profile" -msgstr "Profilo Destinatario" - -#: mod/admin.php:206 -msgid "Created" -msgstr "Creato" - -#: mod/admin.php:207 -msgid "Last Tried" -msgstr "Ultimo Tentativo" - -#: mod/admin.php:208 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "Questa pagina elenca il contenuto della coda di invo dei post. Questi sono post la cui consegna è fallita. Verranno reinviati più tardi ed eventualmente cancellati se la consegna continua a fallire." - -#: mod/admin.php:220 mod/admin.php:1025 -msgid "Normal Account" -msgstr "Account normale" - -#: mod/admin.php:221 mod/admin.php:1026 -msgid "Soapbox Account" -msgstr "Account per comunicati e annunci" - -#: mod/admin.php:222 mod/admin.php:1027 -msgid "Community/Celebrity Account" -msgstr "Account per celebrità o per comunità" - -#: mod/admin.php:223 mod/admin.php:1028 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" - -#: mod/admin.php:224 -msgid "Blog Account" -msgstr "Account Blog" - -#: mod/admin.php:225 -msgid "Private Forum" -msgstr "Forum Privato" - -#: mod/admin.php:244 -msgid "Message queues" -msgstr "Code messaggi" - -#: mod/admin.php:250 -msgid "Summary" -msgstr "Sommario" - -#: mod/admin.php:252 -msgid "Registered users" -msgstr "Utenti registrati" - -#: mod/admin.php:254 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" - -#: mod/admin.php:255 -msgid "Version" -msgstr "Versione" - -#: mod/admin.php:260 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: mod/admin.php:283 -msgid "Can not parse base url. Must have at least ://" -msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" - -#: mod/admin.php:565 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: mod/admin.php:594 mod/settings.php:883 -msgid "No special theme for mobile devices" -msgstr "Nessun tema speciale per i dispositivi mobili" - -#: mod/admin.php:611 -msgid "No community page" -msgstr "Nessuna pagina Comunità" - -#: mod/admin.php:612 -msgid "Public postings from users of this site" -msgstr "Messaggi pubblici dagli utenti di questo sito" - -#: mod/admin.php:613 -msgid "Global community page" -msgstr "Pagina Comunità globale" - -#: mod/admin.php:619 -msgid "At post arrival" -msgstr "All'arrivo di un messaggio" - -#: mod/admin.php:620 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" - -#: mod/admin.php:621 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ogni ora" - -#: mod/admin.php:622 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Due volte al dì" - -#: mod/admin.php:623 include/contact_selectors.php:59 -msgid "Daily" -msgstr "Giornalmente" - -#: mod/admin.php:629 -msgid "Users, Global Contacts" -msgstr "Utenti, Contatti Globali" - -#: mod/admin.php:630 -msgid "Users, Global Contacts/fallback" -msgstr "Utenti, Contatti Globali/fallback" - -#: mod/admin.php:634 -msgid "One month" -msgstr "Un meso" - -#: mod/admin.php:635 -msgid "Three months" -msgstr "Tre mesi" - -#: mod/admin.php:636 -msgid "Half a year" -msgstr "Sei mesi" - -#: mod/admin.php:637 -msgid "One year" -msgstr "Un anno" - -#: mod/admin.php:642 -msgid "Multi user instance" -msgstr "Istanza multi utente" - -#: mod/admin.php:665 -msgid "Closed" -msgstr "Chiusa" - -#: mod/admin.php:666 -msgid "Requires approval" -msgstr "Richiede l'approvazione" - -#: mod/admin.php:667 -msgid "Open" -msgstr "Aperta" - -#: mod/admin.php:671 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" - -#: mod/admin.php:672 -msgid "Force all links to use SSL" -msgstr "Forza tutti i linki ad usare SSL" - -#: mod/admin.php:673 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" - -#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:784 -#: mod/settings.php:853 mod/settings.php:935 mod/settings.php:1165 -msgid "Save Settings" -msgstr "Salva Impostazioni" - -#: mod/admin.php:684 mod/register.php:260 -msgid "Registration" -msgstr "Registrazione" - -#: mod/admin.php:685 -msgid "File upload" -msgstr "Caricamento file" - -#: mod/admin.php:686 -msgid "Policies" -msgstr "Politiche" - -#: mod/admin.php:687 -msgid "Advanced" -msgstr "Avanzate" - -#: mod/admin.php:688 -msgid "Auto Discovered Contact Directory" -msgstr "Elenco Contatti Scoperto Automaticamente" - -#: mod/admin.php:689 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:690 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." - -#: mod/admin.php:693 -msgid "Site name" -msgstr "Nome del sito" - -#: mod/admin.php:694 -msgid "Host name" -msgstr "Nome host" - -#: mod/admin.php:695 -msgid "Sender Email" -msgstr "Mittente email" - -#: mod/admin.php:695 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email." - -#: mod/admin.php:696 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:697 -msgid "Shortcut icon" -msgstr "Icona shortcut" - -#: mod/admin.php:697 -msgid "Link to an icon that will be used for browsers." -msgstr "Link verso un'icona che verrà usata dai browsers." - -#: mod/admin.php:698 -msgid "Touch icon" -msgstr "Icona touch" - -#: mod/admin.php:698 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Link verso un'icona che verrà usata dai tablet e i telefonini." - -#: mod/admin.php:699 -msgid "Additional Info" -msgstr "Informazioni aggiuntive" - -#: mod/admin.php:699 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo." - -#: mod/admin.php:700 -msgid "System language" -msgstr "Lingua di sistema" - -#: mod/admin.php:701 -msgid "System theme" -msgstr "Tema di sistema" - -#: mod/admin.php:701 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" - -#: mod/admin.php:702 -msgid "Mobile system theme" -msgstr "Tema mobile di sistema" - -#: mod/admin.php:702 -msgid "Theme for mobile devices" -msgstr "Tema per dispositivi mobili" - -#: mod/admin.php:703 -msgid "SSL link policy" -msgstr "Gestione link SSL" - -#: mod/admin.php:703 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina se i link generati devono essere forzati a usare SSL" - -#: mod/admin.php:704 -msgid "Force SSL" -msgstr "Forza SSL" - -#: mod/admin.php:704 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine" - -#: mod/admin.php:705 -msgid "Old style 'Share'" -msgstr "Ricondivisione vecchio stile" - -#: mod/admin.php:705 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" - -#: mod/admin.php:706 -msgid "Hide help entry from navigation menu" -msgstr "Nascondi la voce 'Guida' dal menu di navigazione" - -#: mod/admin.php:706 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." - -#: mod/admin.php:707 -msgid "Single user instance" -msgstr "Instanza a singolo utente" - -#: mod/admin.php:707 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" - -#: mod/admin.php:708 -msgid "Maximum image size" -msgstr "Massima dimensione immagini" - -#: mod/admin.php:708 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." - -#: mod/admin.php:709 -msgid "Maximum image length" -msgstr "Massima lunghezza immagine" - -#: mod/admin.php:709 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." - -#: mod/admin.php:710 -msgid "JPEG image quality" -msgstr "Qualità immagini JPEG" - -#: mod/admin.php:710 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." - -#: mod/admin.php:712 -msgid "Register policy" -msgstr "Politica di registrazione" - -#: mod/admin.php:713 -msgid "Maximum Daily Registrations" -msgstr "Massime registrazioni giornaliere" - -#: mod/admin.php:713 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." - -#: mod/admin.php:714 -msgid "Register text" -msgstr "Testo registrazione" - -#: mod/admin.php:714 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: mod/admin.php:715 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo x giorni" - -#: mod/admin.php:715 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." - -#: mod/admin.php:716 -msgid "Allowed friend domains" -msgstr "Domini amici consentiti" - -#: mod/admin.php:716 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: mod/admin.php:717 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: mod/admin.php:717 -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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: mod/admin.php:718 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: mod/admin.php:718 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." - -#: mod/admin.php:719 -msgid "Force publish" -msgstr "Forza publicazione" - -#: mod/admin.php:719 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." - -#: mod/admin.php:720 -msgid "Global directory update URL" -msgstr "URL aggiornamento Elenco Globale" - -#: mod/admin.php:720 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." - -#: mod/admin.php:721 -msgid "Allow threaded items" -msgstr "Permetti commenti nidificati" - -#: mod/admin.php:721 -msgid "Allow infinite level threading for items on this site." -msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." - -#: mod/admin.php:722 -msgid "Private posts by default for new users" -msgstr "Post privati di default per i nuovi utenti" - -#: mod/admin.php:722 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." - -#: mod/admin.php:723 -msgid "Don't include post content in email notifications" -msgstr "Non includere il contenuto dei post nelle notifiche via email" - -#: mod/admin.php:723 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" - -#: mod/admin.php:724 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." - -#: mod/admin.php:724 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" - -#: mod/admin.php:725 -msgid "Don't embed private images in posts" -msgstr "Non inglobare immagini private nei post" - -#: mod/admin.php:725 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." - -#: mod/admin.php:726 -msgid "Allow Users to set remote_self" -msgstr "Permetti agli utenti di impostare 'io remoto'" - -#: mod/admin.php:726 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." - -#: mod/admin.php:727 -msgid "Block multiple registrations" -msgstr "Blocca registrazioni multiple" - -#: mod/admin.php:727 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Non permette all'utente di registrare account extra da usare come pagine." - -#: mod/admin.php:728 -msgid "OpenID support" -msgstr "Supporto OpenID" - -#: mod/admin.php:728 -msgid "OpenID support for registration and logins." -msgstr "Supporta OpenID per la registrazione e il login" - -#: mod/admin.php:729 -msgid "Fullname check" -msgstr "Controllo nome completo" - -#: mod/admin.php:729 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" - -#: mod/admin.php:730 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" - -#: mod/admin.php:730 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" - -#: mod/admin.php:731 -msgid "Community Page Style" -msgstr "Stile pagina Comunità" - -#: mod/admin.php:731 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." - -#: mod/admin.php:732 -msgid "Posts per user on community page" -msgstr "Messaggi per utente nella pagina Comunità" - -#: mod/admin.php:732 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')" - -#: mod/admin.php:733 -msgid "Enable OStatus support" -msgstr "Abilita supporto OStatus" - -#: mod/admin.php:733 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." - -#: mod/admin.php:734 -msgid "OStatus conversation completion interval" -msgstr "Intervallo completamento conversazioni OStatus" - -#: mod/admin.php:734 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." - -#: mod/admin.php:735 -msgid "Enable Diaspora support" -msgstr "Abilita il supporto a Diaspora" - -#: mod/admin.php:735 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornisce compatibilità con il network Diaspora." - -#: mod/admin.php:736 -msgid "Only allow Friendica contacts" -msgstr "Permetti solo contatti Friendica" - -#: mod/admin.php:736 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." - -#: mod/admin.php:737 -msgid "Verify SSL" -msgstr "Verifica SSL" - -#: mod/admin.php:737 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." - -#: mod/admin.php:738 -msgid "Proxy user" -msgstr "Utente Proxy" - -#: mod/admin.php:739 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: mod/admin.php:740 -msgid "Network timeout" -msgstr "Timeout rete" - -#: mod/admin.php:740 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." - -#: mod/admin.php:741 -msgid "Delivery interval" -msgstr "Intervallo di invio" - -#: mod/admin.php:741 -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 "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." - -#: mod/admin.php:742 -msgid "Poll interval" -msgstr "Intervallo di poll" - -#: mod/admin.php:742 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." - -#: mod/admin.php:743 -msgid "Maximum Load Average" -msgstr "Massimo carico medio" - -#: mod/admin.php:743 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." - -#: mod/admin.php:744 -msgid "Maximum Load Average (Frontend)" -msgstr "Media Massimo Carico (Frontend)" - -#: mod/admin.php:744 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50." - -#: mod/admin.php:746 -msgid "Periodical check of global contacts" -msgstr "Check periodico dei contatti globali" - -#: mod/admin.php:746 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server." - -#: mod/admin.php:747 -msgid "Discover contacts from other servers" -msgstr "Trova contatti dagli altri server" - -#: mod/admin.php:747 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"." - -#: mod/admin.php:748 -msgid "Timeframe for fetching global contacts" -msgstr "Termine per il recupero contatti globali" - -#: mod/admin.php:748 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server." - -#: mod/admin.php:749 -msgid "Search the local directory" -msgstr "Cerca la directory locale" - -#: mod/admin.php:749 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta." - -#: mod/admin.php:751 -msgid "Publish server information" -msgstr "Pubblica informazioni server" - -#: mod/admin.php:751 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ." - -#: mod/admin.php:753 -msgid "Use MySQL full text engine" -msgstr "Usa il motore MySQL full text" - -#: mod/admin.php:753 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." - -#: mod/admin.php:754 -msgid "Suppress Language" -msgstr "Disattiva lingua" - -#: mod/admin.php:754 -msgid "Suppress language information in meta information about a posting." -msgstr "Disattiva le informazioni sulla lingua nei meta di un post." - -#: mod/admin.php:755 -msgid "Suppress Tags" -msgstr "Sopprimi Tags" - -#: mod/admin.php:755 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Non mostra la lista di hashtag in coda al messaggio" - -#: mod/admin.php:756 -msgid "Path to item cache" -msgstr "Percorso cache elementi" - -#: mod/admin.php:756 -msgid "The item caches buffers generated bbcode and external images." -msgstr "La cache degli elementi memorizza il bbcode generato e le immagini esterne." - -#: mod/admin.php:757 -msgid "Cache duration in seconds" -msgstr "Durata della cache in secondi" - -#: mod/admin.php:757 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." - -#: mod/admin.php:758 -msgid "Maximum numbers of comments per post" -msgstr "Numero massimo di commenti per post" - -#: mod/admin.php:758 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." - -#: mod/admin.php:759 -msgid "Path for lock file" -msgstr "Percorso al file di lock" - -#: mod/admin.php:759 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui." - -#: mod/admin.php:760 -msgid "Temp path" -msgstr "Percorso file temporanei" - -#: mod/admin.php:760 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui." - -#: mod/admin.php:761 -msgid "Base path to installation" -msgstr "Percorso base all'installazione" - -#: mod/admin.php:761 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot." - -#: mod/admin.php:762 -msgid "Disable picture proxy" -msgstr "Disabilita il proxy immagini" - -#: mod/admin.php:762 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." - -#: mod/admin.php:763 -msgid "Enable old style pager" -msgstr "Abilita la paginazione vecchio stile" - -#: mod/admin.php:763 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." - -#: mod/admin.php:764 -msgid "Only search in tags" -msgstr "Cerca solo nei tag" - -#: mod/admin.php:764 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." - -#: mod/admin.php:766 -msgid "New base url" -msgstr "Nuovo url base" - -#: mod/admin.php:766 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti." - -#: mod/admin.php:768 -msgid "RINO Encryption" -msgstr "Crittografia RINO" - -#: mod/admin.php:768 -msgid "Encryption layer between nodes." -msgstr "Crittografia delle comunicazioni tra nodi." - -#: mod/admin.php:769 -msgid "Embedly API key" -msgstr "Embedly API key" - -#: mod/admin.php:769 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale." - -#: mod/admin.php:787 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato segnato come di successo" - -#: mod/admin.php:795 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Aggiornamento struttura database %s applicata con successo." - -#: mod/admin.php:798 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Aggiornamento struttura database %s fallita con errore: %s" - -#: mod/admin.php:810 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Esecuzione di %s fallita con errore: %s" - -#: mod/admin.php:813 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è stato applicato con successo" - -#: mod/admin.php:817 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." - -#: mod/admin.php:819 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." - -#: mod/admin.php:838 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: mod/admin.php:839 -msgid "Check database structure" -msgstr "Controlla struttura database" - -#: mod/admin.php:844 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti" - -#: mod/admin.php:845 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." - -#: mod/admin.php:846 -msgid "Mark success (if update was manually applied)" -msgstr "Segna completato (se l'update è stato applicato manualmente)" - -#: mod/admin.php:847 -msgid "Attempt to execute this update step automatically" -msgstr "Cerco di eseguire questo aggiornamento in automatico" - -#: mod/admin.php:879 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." - -#: mod/admin.php:882 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" - -#: mod/admin.php:914 include/user.php:421 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: mod/admin.php:926 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utente bloccato/sbloccato" -msgstr[1] "%s utenti bloccati/sbloccati" - -#: mod/admin.php:933 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: mod/admin.php:972 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' cancellato" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: mod/admin.php:1073 -msgid "Add User" -msgstr "Aggiungi utente" - -#: mod/admin.php:1074 -msgid "select all" -msgstr "seleziona tutti" - -#: mod/admin.php:1075 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: mod/admin.php:1076 -msgid "User waiting for permanent deletion" -msgstr "Utente in attesa di cancellazione definitiva" - -#: mod/admin.php:1077 -msgid "Request date" -msgstr "Data richiesta" - -#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "Email" - -#: mod/admin.php:1078 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: mod/admin.php:1080 -msgid "Deny" -msgstr "Nega" - -#: mod/admin.php:1084 -msgid "Site admin" -msgstr "Amministrazione sito" - -#: mod/admin.php:1085 -msgid "Account expired" -msgstr "Account scaduto" - -#: mod/admin.php:1088 -msgid "New User" -msgstr "Nuovo Utente" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Register date" -msgstr "Data registrazione" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last login" -msgstr "Ultimo accesso" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last item" -msgstr "Ultimo elemento" - -#: mod/admin.php:1089 -msgid "Deleted since" -msgstr "Rimosso da" - -#: mod/admin.php:1090 mod/settings.php:41 -msgid "Account" -msgstr "Account" - -#: mod/admin.php:1092 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" - -#: mod/admin.php:1093 -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 "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" - -#: mod/admin.php:1103 -msgid "Name of the new user." -msgstr "Nome del nuovo utente." - -#: mod/admin.php:1104 -msgid "Nickname" -msgstr "Nome utente" - -#: mod/admin.php:1104 -msgid "Nickname of the new user." -msgstr "Nome utente del nuovo utente." - -#: mod/admin.php:1105 -msgid "Email address of the new user." -msgstr "Indirizzo Email del nuovo utente." - -#: mod/admin.php:1138 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s disabilitato." - -#: mod/admin.php:1142 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s abilitato." - -#: mod/admin.php:1152 mod/admin.php:1375 -msgid "Disable" -msgstr "Disabilita" - -#: mod/admin.php:1154 mod/admin.php:1377 -msgid "Enable" -msgstr "Abilita" - -#: mod/admin.php:1177 mod/admin.php:1405 -msgid "Toggle" -msgstr "Inverti" - -#: mod/admin.php:1185 mod/admin.php:1415 -msgid "Author: " -msgstr "Autore: " - -#: mod/admin.php:1186 mod/admin.php:1416 -msgid "Maintainer: " -msgstr "Manutentore: " - -#: mod/admin.php:1335 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: mod/admin.php:1397 -msgid "Screenshot" -msgstr "Anteprima" - -#: mod/admin.php:1443 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: mod/admin.php:1444 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: mod/admin.php:1471 -msgid "Log settings updated." -msgstr "Impostazioni Log aggiornate." - -#: mod/admin.php:1527 -msgid "Clear" -msgstr "Pulisci" - -#: mod/admin.php:1533 -msgid "Enable Debugging" -msgstr "Abilita Debugging" - -#: mod/admin.php:1534 -msgid "Log file" -msgstr "File di Log" - -#: mod/admin.php:1534 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." - -#: mod/admin.php:1535 -msgid "Log level" -msgstr "Livello di Log" - -#: mod/admin.php:1585 include/acl_selectors.php:347 -msgid "Close" -msgstr "Chiudi" - -#: mod/admin.php:1591 -msgid "FTP Host" -msgstr "Indirizzo FTP" - -#: mod/admin.php:1592 -msgid "FTP Path" -msgstr "Percorso FTP" - -#: mod/admin.php:1593 -msgid "FTP User" -msgstr "Utente FTP" - -#: mod/admin.php:1594 -msgid "FTP Password" -msgstr "Pasword FTP" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Risultato della ricerca per: %s" - -#: mod/network.php:187 mod/search.php:25 +#: mod/search.php:25 mod/network.php:187 msgid "Remove term" msgstr "Rimuovi termine" -#: mod/network.php:196 mod/search.php:34 include/features.php:42 +#: mod/search.php:34 mod/network.php:196 include/features.php:42 msgid "Saved Searches" msgstr "Ricerche salvate" -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "aggiungi" +#: mod/search.php:107 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "Cerca" -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Ordina per commento" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Ordina per data commento" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "Ordina per invio" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "Ordina per data messaggio" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "Messaggi che ti citano o coinvolgono" - -#: mod/network.php:385 -msgid "New" -msgstr "Nuovo" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "Activity Stream - per data" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "Links condivisi" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "Link Interessanti" - -#: mod/network.php:405 -msgid "Starred" -msgstr "Preferiti" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "Messaggi preferiti" - -#: mod/network.php:466 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." -msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." - -#: mod/network.php:469 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." - -#: mod/network.php:532 mod/content.php:119 -msgid "No such group" -msgstr "Nessun gruppo" - -#: mod/network.php:549 mod/content.php:130 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: mod/network.php:560 mod/content.php:135 -#, php-format -msgid "Group: %s" -msgstr "Gruppo: %s" - -#: mod/network.php:578 -#, php-format -msgid "Contact: %s" -msgstr "Contatto: %s" - -#: mod/network.php:582 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." - -#: mod/network.php:587 -msgid "Invalid contact." -msgstr "Contatto non valido." - -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" - -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "Un evento non puo' finire prima di iniziare." - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Titolo e ora di inizio dell'evento sono richiesti." - -#: mod/events.php:317 -msgid "l, F j" -msgstr "l j F" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Modifca l'evento" - -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 -msgid "link to source" -msgstr "Collegamento all'originale" - -#: mod/events.php:396 include/identity.php:667 include/nav.php:80 -#: view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Eventi" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Precendente" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Successivo" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Dettagli dell'evento" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "La data di inizio e il titolo sono richiesti." - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "L'evento inizia:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Richiesto" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "L'evento finisce:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Descrizione:" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Titolo:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: object/Item.php:689 include/conversation.php:1089 -msgid "Preview" -msgstr "Anteprima" - -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 -#: object/Item.php:130 include/conversation.php:612 -msgid "Select" -msgstr "Seleziona" - -#: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: mod/content.php:483 mod/content.php:866 object/Item.php:342 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s da %s" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: mod/content.php:605 object/Item.php:389 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: mod/content.php:607 object/Item.php:391 object/Item.php:404 -#: include/text.php:2038 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commento" - -#: mod/content.php:608 boot.php:765 object/Item.php:392 -#: include/contact_widgets.php:205 include/items.php:5134 -msgid "show more" -msgstr "mostra di più" - -#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" -msgstr "Messaggio privato" - -#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 -msgid "I like this (toggle)" -msgstr "Mi piace (clic per cambiare)" - -#: mod/content.php:686 object/Item.php:232 -msgid "like" -msgstr "mi piace" - -#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 -msgid "I don't like this (toggle)" -msgstr "Non mi piace (clic per cambiare)" - -#: mod/content.php:687 object/Item.php:233 -msgid "dislike" -msgstr "non mi piace" - -#: mod/content.php:689 object/Item.php:235 -msgid "Share this" -msgstr "Condividi questo" - -#: mod/content.php:689 object/Item.php:235 -msgid "share" -msgstr "condividi" - -#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 object/Item.php:677 -msgid "This is you" -msgstr "Questo sei tu" - -#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 -#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 -msgid "Comment" -msgstr "Commento" - -#: mod/content.php:713 object/Item.php:681 -msgid "Bold" -msgstr "Grassetto" - -#: mod/content.php:714 object/Item.php:682 -msgid "Italic" -msgstr "Corsivo" - -#: mod/content.php:715 object/Item.php:683 -msgid "Underline" -msgstr "Sottolineato" - -#: mod/content.php:716 object/Item.php:684 -msgid "Quote" -msgstr "Citazione" - -#: mod/content.php:717 object/Item.php:685 -msgid "Code" -msgstr "Codice" - -#: mod/content.php:718 object/Item.php:686 -msgid "Image" -msgstr "Immagine" - -#: mod/content.php:719 object/Item.php:687 -msgid "Link" -msgstr "Link" - -#: mod/content.php:720 object/Item.php:688 -msgid "Video" -msgstr "Video" - -#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 -msgid "Edit" -msgstr "Modifica" - -#: mod/content.php:755 object/Item.php:196 -msgid "add star" -msgstr "aggiungi a speciali" - -#: mod/content.php:756 object/Item.php:197 -msgid "remove star" -msgstr "rimuovi da speciali" - -#: mod/content.php:757 object/Item.php:198 -msgid "toggle star status" -msgstr "Inverti stato preferito" - -#: mod/content.php:760 object/Item.php:201 -msgid "starred" -msgstr "preferito" - -#: mod/content.php:761 object/Item.php:221 -msgid "add tag" -msgstr "aggiungi tag" - -#: mod/content.php:765 object/Item.php:134 -msgid "save to folder" -msgstr "salva nella cartella" - -#: mod/content.php:856 object/Item.php:330 -msgid "to" -msgstr "a" - -#: mod/content.php:857 object/Item.php:332 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: mod/content.php:858 object/Item.php:333 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Rimuovi il mio account" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: mod/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Comunicazione Server - Impostazioni" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr " Impossibile collegarsi con il database." - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "Il tuo Friendica è stato installato." - -#: mod/install.php:140 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql" - -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Leggi il file \"INSTALL.txt\"." - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "Database già in uso." - -#: mod/install.php:205 -msgid "System check" -msgstr "Controllo sistema" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Controlla ancora" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "Connessione al database" - -#: mod/install.php:230 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." - -#: mod/install.php:231 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." - -#: mod/install.php:232 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." - -#: mod/install.php:236 -msgid "Database Server Name" -msgstr "Nome del database server" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "Nome utente database" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "Password utente database" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "Nome database" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" - -#: mod/install.php:240 mod/install.php:279 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo sito web" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "Impostazioni sito" - -#: mod/install.php:323 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" - -#: mod/install.php:324 -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. See 'Activating scheduled tasks'" -msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "Percorso eseguibile PHP" - -#: mod/install.php:328 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." - -#: mod/install.php:333 -msgid "Command line PHP" -msgstr "PHP da riga di comando" - -#: mod/install.php:342 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" - -#: mod/install.php:343 -msgid "Found PHP version: " -msgstr "Versione PHP:" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "Binario PHP cli" - -#: mod/install.php:356 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." - -#: mod/install.php:357 -msgid "This is required for message delivery to work." -msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." - -#: mod/install.php:359 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:380 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" - -#: mod/install.php:381 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:383 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "modulo PHP mysqli" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" - -#: mod/install.php:399 mod/install.php:401 -msgid "Apache mod_rewrite module" -msgstr "Modulo mod_rewrite di Apache" - -#: mod/install.php:399 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" - -#: mod/install.php:407 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:411 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." - -#: mod/install.php:415 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:419 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" - -#: mod/install.php:423 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." - -#: mod/install.php:440 -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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo." - -#: mod/install.php:441 -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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." - -#: mod/install.php:442 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica" - -#: mod/install.php:443 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni." - -#: mod/install.php:446 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" - -#: mod/install.php:456 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." - -#: mod/install.php:457 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." - -#: mod/install.php:458 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." - -#: mod/install.php:459 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." - -#: mod/install.php:462 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 è scrivibile" - -#: mod/install.php:478 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server." - -#: mod/install.php:480 -msgid "Url rewrite is working" -msgstr "La riscrittura degli url funziona" - -#: mod/install.php:489 -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 "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito." - -#: mod/install.php:528 -msgid "

What next

" -msgstr "

Cosa fare ora

" - -#: mod/install.php:529 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Impossibile controllare la tua posizione di origine." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nessun destinatario." - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." - -#: mod/help.php:31 -msgid "Help:" -msgstr "Guida:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Guida" - -#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 -msgid "Not Found" -msgstr "Non trovato" - -#: mod/help.php:45 index.php:272 -msgid "Page not found." -msgstr "Pagina non trovata." - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%s dà il benvenuto a %s" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" - -#: mod/wall_attach.php:83 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" - -#: mod/wall_attach.php:83 -msgid "Or - did you try to upload an empty file?" -msgstr "O.. non avrai provato a caricare un file vuoto?" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Il file supera la dimensione massima di %s" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: mod/match.php:22 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." - -#: mod/match.php:64 -msgid "is interested in:" -msgstr "è interessato a:" - -#: mod/share.php:38 -msgid "link" -msgstr "collegamento" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." - -#: mod/community.php:32 include/nav.php:137 include/nav.php:139 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Comunità" - -#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +#: mod/search.php:199 mod/community.php:62 mod/community.php:71 msgid "No results." msgstr "Nessun risultato." -#: mod/settings.php:34 mod/photos.php:102 -msgid "everybody" -msgstr "tutti" +#: mod/search.php:205 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" + +#: mod/search.php:207 +#, php-format +msgid "Search results for: %s" +msgstr "Risultato della ricerca per: %s" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limite totale degli inviti superato." + +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Unisiciti a noi su Friendica" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio fallita." + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." + +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." + +#: mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Invia inviti" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Una volta registrato, connettiti con me dal mio profilo:" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" #: mod/settings.php:47 msgid "Additional features" @@ -3824,7 +3854,7 @@ msgstr "Funzionalità aggiuntive" msgid "Display" msgstr "Visualizzazione" -#: mod/settings.php:60 mod/settings.php:835 +#: mod/settings.php:60 mod/settings.php:837 msgid "Social Networks" msgstr "Social Networks" @@ -4002,869 +4032,494 @@ msgid "" "unknown user." msgstr "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto." -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:779 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:781 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:784 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:793 mod/settings.php:794 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Il supporto integrato per la connettività con %s è %s" -#: mod/settings.php:791 mod/dfrn_request.php:856 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:793 mod/settings.php:794 msgid "enabled" msgstr "abilitato" -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:793 mod/settings.php:794 msgid "disabled" msgstr "disabilitato" -#: mod/settings.php:792 +#: mod/settings.php:794 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:828 +#: mod/settings.php:830 msgid "Email access is disabled on this site." msgstr "L'accesso email è disabilitato su questo sito." -#: mod/settings.php:840 +#: mod/settings.php:842 msgid "Email/Mailbox Setup" msgstr "Impostazioni email" -#: mod/settings.php:841 +#: mod/settings.php:843 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" -#: mod/settings.php:842 +#: mod/settings.php:844 msgid "Last successful email check:" msgstr "Ultimo controllo email eseguito con successo:" -#: mod/settings.php:844 +#: mod/settings.php:846 msgid "IMAP server name:" msgstr "Nome server IMAP:" -#: mod/settings.php:845 +#: mod/settings.php:847 msgid "IMAP port:" msgstr "Porta IMAP:" -#: mod/settings.php:846 +#: mod/settings.php:848 msgid "Security:" msgstr "Sicurezza:" -#: mod/settings.php:846 mod/settings.php:851 +#: mod/settings.php:848 mod/settings.php:853 msgid "None" msgstr "Nessuna" -#: mod/settings.php:847 +#: mod/settings.php:849 msgid "Email login name:" msgstr "Nome utente email:" -#: mod/settings.php:848 +#: mod/settings.php:850 msgid "Email password:" msgstr "Password email:" -#: mod/settings.php:849 +#: mod/settings.php:851 msgid "Reply-to address:" msgstr "Indirizzo di risposta:" -#: mod/settings.php:850 +#: mod/settings.php:852 msgid "Send public posts to all email contacts:" msgstr "Invia i messaggi pubblici ai contatti email:" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Action after import:" msgstr "Azione post importazione:" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Mark as seen" msgstr "Segna come letto" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Move to folder" msgstr "Sposta nella cartella" -#: mod/settings.php:852 +#: mod/settings.php:854 msgid "Move to folder:" msgstr "Sposta nella cartella:" -#: mod/settings.php:933 +#: mod/settings.php:935 msgid "Display Settings" msgstr "Impostazioni Grafiche" -#: mod/settings.php:939 mod/settings.php:955 +#: mod/settings.php:941 mod/settings.php:957 msgid "Display Theme:" msgstr "Tema:" -#: mod/settings.php:940 +#: mod/settings.php:942 msgid "Mobile Theme:" msgstr "Tema mobile:" -#: mod/settings.php:941 +#: mod/settings.php:943 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: mod/settings.php:941 +#: mod/settings.php:943 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimo 10 secondi, nessun limite massimo" -#: mod/settings.php:942 +#: mod/settings.php:944 msgid "Number of items to display per page:" msgstr "Numero di elementi da mostrare per pagina:" -#: mod/settings.php:942 mod/settings.php:943 +#: mod/settings.php:944 mod/settings.php:945 msgid "Maximum of 100 items" msgstr "Massimo 100 voci" -#: mod/settings.php:943 +#: mod/settings.php:945 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" -#: mod/settings.php:944 +#: mod/settings.php:946 msgid "Don't show emoticons" msgstr "Non mostrare le emoticons" -#: mod/settings.php:945 +#: mod/settings.php:947 msgid "Don't show notices" msgstr "Non mostrare gli avvisi" -#: mod/settings.php:946 +#: mod/settings.php:948 msgid "Infinite scroll" msgstr "Scroll infinito" -#: mod/settings.php:947 +#: mod/settings.php:949 msgid "Automatic updates only at the top of the network page" msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" -#: mod/settings.php:949 view/theme/cleanzero/config.php:82 -#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 -#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 -#: view/theme/duepuntozero/config.php:61 +#: mod/settings.php:951 view/theme/diabook/config.php:150 +#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 +#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 +#: view/theme/cleanzero/config.php:82 msgid "Theme settings" msgstr "Impostazioni tema" -#: mod/settings.php:1025 +#: mod/settings.php:1027 msgid "User Types" msgstr "Tipi di Utenti" -#: mod/settings.php:1026 +#: mod/settings.php:1028 msgid "Community Types" msgstr "Tipi di Comunità" -#: mod/settings.php:1027 +#: mod/settings.php:1029 msgid "Normal Account Page" msgstr "Pagina Account Normale" -#: mod/settings.php:1028 +#: mod/settings.php:1030 msgid "This account is a normal personal profile" msgstr "Questo account è un normale profilo personale" -#: mod/settings.php:1031 +#: mod/settings.php:1033 msgid "Soapbox Page" msgstr "Pagina Sandbox" -#: mod/settings.php:1032 +#: mod/settings.php:1034 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" -#: mod/settings.php:1035 +#: mod/settings.php:1037 msgid "Community Forum/Celebrity Account" msgstr "Account Celebrità/Forum comunitario" -#: mod/settings.php:1036 +#: mod/settings.php:1038 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" -#: mod/settings.php:1039 +#: mod/settings.php:1041 msgid "Automatic Friend Page" msgstr "Pagina con amicizia automatica" -#: mod/settings.php:1040 +#: mod/settings.php:1042 msgid "Automatically approve all connection/friend requests as friends" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" -#: mod/settings.php:1043 +#: mod/settings.php:1045 msgid "Private Forum [Experimental]" msgstr "Forum privato [sperimentale]" -#: mod/settings.php:1044 +#: mod/settings.php:1046 msgid "Private forum - approved members only" msgstr "Forum privato - solo membri approvati" -#: mod/settings.php:1056 +#: mod/settings.php:1058 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1056 +#: mod/settings.php:1058 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" -#: mod/settings.php:1066 +#: mod/settings.php:1068 msgid "Publish your default profile in your local site directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" -#: mod/settings.php:1072 +#: mod/settings.php:1074 msgid "Publish your default profile in the global social directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" -#: mod/settings.php:1080 +#: mod/settings.php:1082 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" -#: mod/settings.php:1084 include/acl_selectors.php:330 +#: mod/settings.php:1086 include/acl_selectors.php:330 msgid "Hide your profile details from unknown viewers?" msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" -#: mod/settings.php:1084 +#: mod/settings.php:1086 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile" -#: mod/settings.php:1089 +#: mod/settings.php:1091 msgid "Allow friends to post to your profile page?" msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" -#: mod/settings.php:1095 +#: mod/settings.php:1097 msgid "Allow friends to tag your posts?" msgstr "Permetti agli amici di taggare i tuoi messaggi?" -#: mod/settings.php:1101 +#: mod/settings.php:1103 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" -#: mod/settings.php:1107 +#: mod/settings.php:1109 msgid "Permit unknown people to send you private mail?" msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" -#: mod/settings.php:1115 +#: mod/settings.php:1117 msgid "Profile is not published." msgstr "Il profilo non è pubblicato." -#: mod/settings.php:1123 +#: mod/settings.php:1125 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "L'indirizzo della tua identità è '%s' or '%s'." -#: mod/settings.php:1130 +#: mod/settings.php:1132 msgid "Automatically expire posts after this many days:" msgstr "Fai scadere i post automaticamente dopo x giorni:" -#: mod/settings.php:1130 +#: mod/settings.php:1132 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." -#: mod/settings.php:1131 +#: mod/settings.php:1133 msgid "Advanced expiration settings" msgstr "Impostazioni avanzate di scandenza" -#: mod/settings.php:1132 +#: mod/settings.php:1134 msgid "Advanced Expiration" msgstr "Scadenza avanzata" -#: mod/settings.php:1133 +#: mod/settings.php:1135 msgid "Expire posts:" msgstr "Fai scadere i post:" -#: mod/settings.php:1134 +#: mod/settings.php:1136 msgid "Expire personal notes:" msgstr "Fai scadere le Note personali:" -#: mod/settings.php:1135 +#: mod/settings.php:1137 msgid "Expire starred posts:" msgstr "Fai scadere i post Speciali:" -#: mod/settings.php:1136 +#: mod/settings.php:1138 msgid "Expire photos:" msgstr "Fai scadere le foto:" -#: mod/settings.php:1137 +#: mod/settings.php:1139 msgid "Only expire posts by others:" msgstr "Fai scadere solo i post degli altri:" -#: mod/settings.php:1163 +#: mod/settings.php:1165 msgid "Account Settings" msgstr "Impostazioni account" -#: mod/settings.php:1171 +#: mod/settings.php:1173 msgid "Password Settings" msgstr "Impostazioni password" -#: mod/settings.php:1172 mod/register.php:271 -msgid "New Password:" -msgstr "Nuova password:" - -#: mod/settings.php:1173 mod/register.php:272 -msgid "Confirm:" -msgstr "Conferma:" - -#: mod/settings.php:1173 +#: mod/settings.php:1175 msgid "Leave password fields blank unless changing" msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" -#: mod/settings.php:1174 +#: mod/settings.php:1176 msgid "Current Password:" msgstr "Password Attuale:" -#: mod/settings.php:1174 mod/settings.php:1175 +#: mod/settings.php:1176 mod/settings.php:1177 msgid "Your current password to confirm the changes" msgstr "La tua password attuale per confermare le modifiche" -#: mod/settings.php:1175 +#: mod/settings.php:1177 msgid "Password:" msgstr "Password:" -#: mod/settings.php:1179 +#: mod/settings.php:1181 msgid "Basic Settings" msgstr "Impostazioni base" -#: mod/settings.php:1180 include/identity.php:538 +#: mod/settings.php:1182 include/identity.php:539 msgid "Full Name:" msgstr "Nome completo:" -#: mod/settings.php:1181 +#: mod/settings.php:1183 msgid "Email Address:" msgstr "Indirizzo Email:" -#: mod/settings.php:1182 +#: mod/settings.php:1184 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: mod/settings.php:1183 +#: mod/settings.php:1185 msgid "Default Post Location:" msgstr "Località predefinita:" -#: mod/settings.php:1184 +#: mod/settings.php:1186 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: mod/settings.php:1187 +#: mod/settings.php:1189 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: mod/settings.php:1189 +#: mod/settings.php:1191 msgid "Maximum Friend Requests/Day:" msgstr "Numero massimo di richieste di amicizia al giorno:" -#: mod/settings.php:1189 mod/settings.php:1219 +#: mod/settings.php:1191 mod/settings.php:1221 msgid "(to prevent spam abuse)" msgstr "(per prevenire lo spam)" -#: mod/settings.php:1190 +#: mod/settings.php:1192 msgid "Default Post Permissions" msgstr "Permessi predefiniti per i messaggi" -#: mod/settings.php:1191 +#: mod/settings.php:1193 msgid "(click to open/close)" msgstr "(clicca per aprire/chiudere)" -#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538 -msgid "Show to Groups" -msgstr "Mostra ai gruppi" - -#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539 -msgid "Show to Contacts" -msgstr "Mostra ai contatti" - -#: mod/settings.php:1202 +#: mod/settings.php:1204 msgid "Default Private Post" msgstr "Default Post Privato" -#: mod/settings.php:1203 +#: mod/settings.php:1205 msgid "Default Public Post" msgstr "Default Post Pubblico" -#: mod/settings.php:1207 +#: mod/settings.php:1209 msgid "Default Permissions for New Posts" msgstr "Permessi predefiniti per i nuovi post" -#: mod/settings.php:1219 +#: mod/settings.php:1221 msgid "Maximum private messages per day from unknown people:" msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" -#: mod/settings.php:1222 +#: mod/settings.php:1224 msgid "Notification Settings" msgstr "Impostazioni notifiche" -#: mod/settings.php:1223 +#: mod/settings.php:1225 msgid "By default post a status message when:" msgstr "Invia un messaggio di stato quando:" -#: mod/settings.php:1224 +#: mod/settings.php:1226 msgid "accepting a friend request" msgstr "accetti una richiesta di amicizia" -#: mod/settings.php:1225 +#: mod/settings.php:1227 msgid "joining a forum/community" msgstr "ti unisci a un forum/comunità" -#: mod/settings.php:1226 +#: mod/settings.php:1228 msgid "making an interesting profile change" msgstr "fai un interessante modifica al profilo" -#: mod/settings.php:1227 +#: mod/settings.php:1229 msgid "Send a notification email when:" msgstr "Invia una mail di notifica quando:" -#: mod/settings.php:1228 +#: mod/settings.php:1230 msgid "You receive an introduction" msgstr "Ricevi una presentazione" -#: mod/settings.php:1229 +#: mod/settings.php:1231 msgid "Your introductions are confirmed" msgstr "Le tue presentazioni sono confermate" -#: mod/settings.php:1230 +#: mod/settings.php:1232 msgid "Someone writes on your profile wall" msgstr "Qualcuno scrive sulla bacheca del tuo profilo" -#: mod/settings.php:1231 +#: mod/settings.php:1233 msgid "Someone writes a followup comment" msgstr "Qualcuno scrive un commento a un tuo messaggio" -#: mod/settings.php:1232 +#: mod/settings.php:1234 msgid "You receive a private message" msgstr "Ricevi un messaggio privato" -#: mod/settings.php:1233 +#: mod/settings.php:1235 msgid "You receive a friend suggestion" msgstr "Hai ricevuto un suggerimento di amicizia" -#: mod/settings.php:1234 +#: mod/settings.php:1236 msgid "You are tagged in a post" msgstr "Sei stato taggato in un post" -#: mod/settings.php:1235 +#: mod/settings.php:1237 msgid "You are poked/prodded/etc. in a post" msgstr "Sei 'toccato'/'spronato'/ecc. in un post" -#: mod/settings.php:1237 +#: mod/settings.php:1239 msgid "Activate desktop notifications" msgstr "Attiva notifiche desktop" -#: mod/settings.php:1237 +#: mod/settings.php:1239 msgid "Show desktop popup on new notifications" msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" -#: mod/settings.php:1239 +#: mod/settings.php:1241 msgid "Text-only notification emails" msgstr "Email di notifica in solo testo" -#: mod/settings.php:1241 +#: mod/settings.php:1243 msgid "Send text only notification emails, without the html part" msgstr "Invia le email di notifica in solo testo, senza la parte in html" -#: mod/settings.php:1243 +#: mod/settings.php:1245 msgid "Advanced Account/Page Type Settings" msgstr "Impostazioni avanzate Account/Tipo di pagina" -#: mod/settings.php:1244 +#: mod/settings.php:1246 msgid "Change the behaviour of this account for special situations" msgstr "Modifica il comportamento di questo account in situazioni speciali" -#: mod/settings.php:1247 +#: mod/settings.php:1249 msgid "Relocate" msgstr "Trasloca" -#: mod/settings.php:1248 +#: mod/settings.php:1250 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." -#: mod/settings.php:1249 +#: mod/settings.php:1251 msgid "Resend relocate message to contacts" msgstr "Reinvia il messaggio di trasloco" -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." +#: mod/display.php:505 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#: mod/dirfind.php:36 #, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" +msgid "People Search - %s" +msgstr "Cerca persone - %s" -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Presentazione completa." +#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 +#: include/identity.php:188 include/contact_widgets.php:10 +msgid "Connect" +msgstr "Connetti" -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: mod/dfrn_request.php:507 include/follow.php:70 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Conferma" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" - -#: mod/dfrn_request.php:840 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " -"join us today." -msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" - -#: mod/dfrn_request.php:845 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: mod/dfrn_request.php:846 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:854 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:855 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:857 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." - -#: mod/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." - -#: mod/register.php:97 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Si è verificato un errore inviando l'email. I dettagli del tuo account:
login: %s
password: %s

Puoi cambiare la password dopo il login." - -#: mod/register.php:107 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere elaborata." - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito." - -#: mod/register.php:188 mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." - -#: mod/register.php:216 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." - -#: mod/register.php:217 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." - -#: mod/register.php:218 -msgid "Your OpenID (optional): " -msgstr "Il tuo OpenID (opzionale): " - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "Includi il tuo profilo nell'elenco pubblico?" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "La registrazione su questo sito è solo su invito." - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "L'ID del tuo invito:" - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Il tuo nome completo (es. Mario Rossi): " - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "Il tuo indirizzo email: " - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "Lascia vuoto per generare automaticamente una password." - -#: mod/register.php:273 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "Scegli un nome utente: " - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "Registrati" - -#: mod/register.php:283 mod/uimport.php:64 -msgid "Import" -msgstr "Importa" - -#: mod/register.php:284 -msgid "Import your profile to this friendica instance" -msgstr "Importa il tuo profilo in questo server friendica" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistema in manutenzione" - -#: mod/search.php:100 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "Cerca" - -#: mod/search.php:198 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" - -#: mod/search.php:200 -#, php-format -msgid "Search results for: %s" -msgstr "Risultato della ricerca per: %s" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Elenco globale" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Cerca nel sito" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Elenco del sito" - -#: mod/directory.php:129 mod/profiles.php:747 -msgid "Age: " -msgstr "Età : " - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Genere:" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 -msgid "Status:" -msgstr "Stato:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 -msgid "Homepage:" -msgstr "Homepage:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Nessun potenziale delegato per la pagina è stato trovato." - -#: mod/delegate.php:130 include/nav.php:179 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" - -#: mod/delegate.php:132 -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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Gestori Pagina Esistenti" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Delegati Pagina Esistenti" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegati Potenziali" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Aggiungi" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Nessuna voce." - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Amici in comune" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Nessun contatto in comune." - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Esporta account" - -#: mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Esporta tutto" - -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" - -#: mod/mood.php:62 include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s al momento è %2$s" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "Umore" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Condividi il tuo umore con i tuoi amici" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Vuoi veramente cancellare questo suggerimento?" - -#: mod/suggest.php:69 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: mod/suggest.php:76 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" +#: mod/dirfind.php:141 mod/match.php:77 +msgid "No matches" +msgstr "Nessun risultato" #: mod/profiles.php:37 msgid "Profile deleted." @@ -5073,7 +4728,7 @@ msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" msgid "Since [date]:" msgstr "Dal [data]:" -#: mod/profiles.php:711 include/identity.php:569 +#: mod/profiles.php:711 include/identity.php:570 msgid "Sexual Preference:" msgstr "Preferenze sessuali:" @@ -5081,11 +4736,11 @@ msgstr "Preferenze sessuali:" msgid "Homepage URL:" msgstr "Homepage:" -#: mod/profiles.php:713 include/identity.php:573 +#: mod/profiles.php:713 include/identity.php:574 msgid "Hometown:" msgstr "Paese natale:" -#: mod/profiles.php:714 include/identity.php:577 +#: mod/profiles.php:714 include/identity.php:578 msgid "Political Views:" msgstr "Orientamento politico:" @@ -5101,11 +4756,11 @@ msgstr "Parole chiave visibili a tutti:" msgid "Private Keywords:" msgstr "Parole chiave private:" -#: mod/profiles.php:718 include/identity.php:585 +#: mod/profiles.php:718 include/identity.php:586 msgid "Likes:" msgstr "Mi piace:" -#: mod/profiles.php:719 include/identity.php:587 +#: mod/profiles.php:719 include/identity.php:588 msgid "Dislikes:" msgstr "Non mi piace:" @@ -5167,6 +4822,10 @@ msgid "" "be visible to anybody using the internet." msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." +#: mod/profiles.php:747 mod/directory.php:129 +msgid "Age: " +msgstr "Età : " + #: mod/profiles.php:800 msgid "Edit/Manage Profiles" msgstr "Modifica / Gestisci profili" @@ -5191,153 +4850,284 @@ msgstr "visibile a tutti" msgid "Edit visibility" msgstr "Modifica visibilità" -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" +#: mod/share.php:38 +msgid "link" +msgstr "collegamento" -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Modifica messaggio" +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Esporta account" -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "carica foto" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Allega file" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "allega file" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "link web" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "link video" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "link audio" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "La tua posizione" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "posizione" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "canc. pos." - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Scegli un titolo" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" - -#: mod/friendica.php:62 +#: mod/uexport.php:77 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Esporta tutto" -#: mod/friendica.php:64 -msgid "the bugtracker at github" -msgstr "il bugtracker su github" - -#: mod/friendica.php:65 +#: mod/uexport.php:78 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/addons/applicazione installata" +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la connessione dell'applicazione" +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Effettua il login per continuare." +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" -#: mod/api.php:104 +#: mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." + +#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 +#: include/nav.php:139 +msgid "Community" +msgstr "Comunità" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "Salva nella Cartella:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" + +#: mod/wall_attach.php:83 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" + +#: mod/wall_attach.php:83 +msgid "Or - did you try to upload an empty file?" +msgstr "O.. non avrai provato a caricare un file vuoto?" + +#: mod/wall_attach.php:94 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Il file supera la dimensione massima di %s" + +#: mod/wall_attach.php:145 mod/wall_attach.php:161 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Modifica visibilità del profilo" + +#: mod/profperm.php:106 mod/group.php:222 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Visibile a" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" + +#: mod/suggest.php:69 view/theme/diabook/theme.php:527 +#: include/contact_widgets.php:35 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" + +#: mod/suggest.php:76 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibile a:" +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." -#: mod/notes.php:44 include/identity.php:675 +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "" + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%s dà il benvenuto a %s" + +#: mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci indentità e/o pagine" + +#: mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" + +#: mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Nessun potenziale delegato per la pagina è stato trovato." + +#: mod/delegate.php:130 include/nav.php:179 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" + +#: mod/delegate.php:132 +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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Gestori Pagina Esistenti" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Delegati Pagina Esistenti" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Delegati Potenziali" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Aggiungi" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Nessuna voce." + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Nessun contatto." + +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View Contacts" +msgstr "Visualizza i contatti" + +#: mod/notes.php:44 include/identity.php:676 msgid "Personal Notes" msgstr "Note personali" -#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Tocca/Pungola" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "tocca, pungola o fai altre cose a qualcuno" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Destinatario" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi fare al destinatario" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendi questo post privato" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Elenco globale" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Cerca nel sito" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Elenco del sito" + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Genere:" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 +msgid "Status:" +msgstr "Stato:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 +msgid "Homepage:" +msgstr "Homepage:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." + +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 msgid "l F d, Y \\@ g:i A" msgstr "l d F Y \\@ G:i" @@ -5370,303 +5160,440 @@ msgstr "Ora locale convertita: %s" msgid "Please select your timezone:" msgstr "Selezionare il tuo fuso orario:" -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Inviato!" -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatario" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendi questo post privato" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite totale degli inviti superato." - -#: mod/invite.php:49 +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +msgid "Image size reduction [%s] failed." +msgstr "Il ridimensionamento del'immagine [%s] è fallito." -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Unisiciti a noi su Friendica" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio fallita." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: mod/invite.php:120 -#, php-format +#: mod/profile_photo.php:118 msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." -#: mod/invite.php:122 -#, php-format +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" + +#: mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Carica un file:" + +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" + +#: mod/profile_photo.php:245 +#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 +msgid "Upload" +msgstr "Carica" + +#: mod/profile_photo.php:248 +msgid "or" +msgstr "o" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "salta questo passaggio" + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Ritaglia immagine" + +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'imagine per una visualizzazione migliore." + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Finito" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." + +#: mod/install.php:119 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Comunicazione Server - Impostazioni" + +#: mod/install.php:125 +msgid "Could not connect to database." +msgstr " Impossibile collegarsi con il database." + +#: mod/install.php:129 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." + +#: mod/install.php:135 +msgid "Your Friendica site database has been installed." +msgstr "Il tuo Friendica è stato installato." + +#: mod/install.php:140 msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql" -#: mod/invite.php:123 -#, php-format +#: mod/install.php:141 mod/install.php:208 mod/install.php:537 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Leggi il file \"INSTALL.txt\"." + +#: mod/install.php:153 +msgid "Database already in use." +msgstr "Database già in uso." + +#: mod/install.php:205 +msgid "System check" +msgstr "Controllo sistema" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Controlla ancora" + +#: mod/install.php:229 +msgid "Database connection" +msgstr "Connessione al database" + +#: mod/install.php:230 msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." -#: mod/invite.php:126 +#: mod/install.php:231 msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Invia inviti" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: mod/invite.php:135 +#: mod/install.php:232 msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" +#: mod/install.php:236 +msgid "Database Server Name" +msgstr "Nome del database server" -#: mod/invite.php:137 +#: mod/install.php:237 +msgid "Database Login Name" +msgstr "Nome utente database" + +#: mod/install.php:238 +msgid "Database Login Password" +msgstr "Password utente database" + +#: mod/install.php:239 +msgid "Database Name" +msgstr "Nome database" + +#: mod/install.php:240 mod/install.php:279 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del sito" + +#: mod/install.php:240 mod/install.php:279 msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una volta registrato, connettiti con me dal mio profilo:" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." -#: mod/invite.php:139 +#: mod/install.php:244 mod/install.php:282 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo sito web" + +#: mod/install.php:269 +msgid "Site settings" +msgstr "Impostazioni sito" + +#: mod/install.php:323 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" + +#: mod/install.php:324 msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" +"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. See 'Activating scheduled tasks'" +msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'" -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: mod/install.php:328 +msgid "PHP executable path" +msgstr "Percorso eseguibile PHP" -#: mod/photos.php:84 include/identity.php:651 -msgid "Photo Albums" -msgstr "Album foto" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album non trovato." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s è stato taggato in %2$s da %3$s" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "Carica foto" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Permessi" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Foto privata" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Modifica album" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Vedi foto" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Vedi foto" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Modifica foto" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Vedi dimensione intera" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Tag: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Titolo" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: mod/photos.php:1522 +#: mod/install.php:328 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "Non ruotare" +#: mod/install.php:333 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" +#: mod/install.php:342 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" +#: mod/install.php:343 +msgid "Found PHP version: " +msgstr "Versione PHP:" -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Foto privata" +#: mod/install.php:345 +msgid "PHP cli binary" +msgstr "Binario PHP cli" -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Foto pubblica" +#: mod/install.php:356 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Condividi" +#: mod/install.php:357 +msgid "This is required for message delivery to work." +msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." + +#: mod/install.php:359 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:380 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" + +#: mod/install.php:381 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:383 +msgid "Generate encryption keys" +msgstr "Genera chiavi di criptazione" + +#: mod/install.php:390 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" + +#: mod/install.php:391 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" + +#: mod/install.php:392 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" + +#: mod/install.php:393 +msgid "mysqli PHP module" +msgstr "modulo PHP mysqli" + +#: mod/install.php:394 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" + +#: mod/install.php:395 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:400 mod/install.php:402 +msgid "Apache mod_rewrite module" +msgstr "Modulo mod_rewrite di Apache" + +#: mod/install.php:400 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" + +#: mod/install.php:408 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:412 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." + +#: mod/install.php:416 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:420 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" + +#: mod/install.php:424 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." + +#: mod/install.php:428 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:447 +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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo." + +#: mod/install.php:448 +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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." + +#: mod/install.php:449 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica" + +#: mod/install.php:450 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni." + +#: mod/install.php:453 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" + +#: mod/install.php:463 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." + +#: mod/install.php:464 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." + +#: mod/install.php:465 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." + +#: mod/install.php:466 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." + +#: mod/install.php:469 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 è scrivibile" + +#: mod/install.php:485 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server." + +#: mod/install.php:487 +msgid "Url rewrite is working" +msgstr "La riscrittura degli url funziona" + +#: mod/install.php:496 +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 "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito." + +#: mod/install.php:535 +msgid "

What next

" +msgstr "

Cosa fare ora

" + +#: mod/install.php:536 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." #: mod/p.php:9 msgid "Not Extended" msgstr "Not Extended" +#: mod/group.php:29 +msgid "Group created." +msgstr "Gruppo creato." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Gruppo non trovato." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Il nome del gruppo è cambiato." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Salva gruppo" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Crea un gruppo di amici/contatti." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Nome del gruppo:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Gruppo rimosso." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Impossibile rimuovere il gruppo." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Modifica gruppo" + +#: mod/group.php:190 +msgid "Members" +msgstr "Membri" + +#: mod/content.php:119 mod/network.php:532 +msgid "No such group" +msgstr "Nessun gruppo" + +#: mod/content.php:130 mod/network.php:549 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: mod/content.php:135 mod/network.php:560 +#, php-format +msgid "Group: %s" +msgstr "Gruppo: %s" + +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "Vedi nel contesto" + #: mod/regmod.php:55 msgid "Account approved." msgstr "Account approvato." @@ -5680,44 +5607,523 @@ msgstr "Registrazione revocata per %s" msgid "Please login." msgstr "Accedi." -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Muovi account" +#: mod/match.php:18 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Puoi importare un account da un altro server Friendica." +#: mod/match.php:27 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." -#: mod/uimport.php:68 +#: mod/match.php:69 +msgid "is interested in:" +msgstr "è interessato a:" + +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: mod/item.php:347 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: mod/item.php:989 +#, php-format msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." -#: mod/uimport.php:69 +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" + +#: mod/item.php:992 msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." -#: mod/uimport.php:70 -msgid "Account file" -msgstr "File account" +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." -#: mod/uimport.php:70 +#: mod/mood.php:62 include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s al momento è %2$s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Umore" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Condividi il tuo umore con i tuoi amici" + +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "Risultato della ricerca per: %s" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "aggiungi" + +#: mod/network.php:358 +msgid "Commented Order" +msgstr "Ordina per commento" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "Ordina per data commento" + +#: mod/network.php:365 +msgid "Posted Order" +msgstr "Ordina per invio" + +#: mod/network.php:368 +msgid "Sort by Post Date" +msgstr "Ordina per data messaggio" + +#: mod/network.php:378 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" + +#: mod/network.php:385 +msgid "New" +msgstr "Nuovo" + +#: mod/network.php:388 +msgid "Activity Stream - by date" +msgstr "Activity Stream - per data" + +#: mod/network.php:395 +msgid "Shared Links" +msgstr "Links condivisi" + +#: mod/network.php:398 +msgid "Interesting Links" +msgstr "Link Interessanti" + +#: mod/network.php:405 +msgid "Starred" +msgstr "Preferiti" + +#: mod/network.php:408 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" + +#: mod/network.php:466 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." +msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." + +#: mod/network.php:469 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." + +#: mod/network.php:578 +#, php-format +msgid "Contact: %s" +msgstr "Contatto: %s" + +#: mod/network.php:582 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." + +#: mod/network.php:587 +msgid "Invalid contact." +msgstr "Contatto non valido." + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Contatto modificato." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Ripara il contatto" + +#: mod/crepair.php:142 msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Oggetto non disponibile." +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Oggetto non trovato." +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "Non duplicare" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "Duplica come messaggi ricondivisi" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "Duplica come miei messaggi" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Ricarica dati contatto" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Nome utente" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - al posto del nome utente" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "URL dell'utente" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "URL Richiesta Amicizia" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL Conferma Amicizia" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "URL Notifiche" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "URL Feed" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "Io remoto" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "Ripeti i messaggi di questo contatto" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." + +#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" + +#: view/theme/diabook/theme.php:124 include/nav.php:77 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "I tuoi contatti" + +#: view/theme/diabook/theme.php:126 include/nav.php:78 +msgid "Your photos" +msgstr "Le tue foto" + +#: view/theme/diabook/theme.php:127 include/nav.php:80 +msgid "Your events" +msgstr "I tuoi eventi" + +#: view/theme/diabook/theme.php:128 include/nav.php:81 +msgid "Personal notes" +msgstr "Note personali" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Le tue foto personali" + +#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Pagine Comunitarie" + +#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 +#: view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Profili Comunità" + +#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 +#: view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Ultimi utenti" + +#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 +#: view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Ultimi \"mi piace\"" + +#: view/theme/diabook/theme.php:463 include/text.php:2032 +#: include/conversation.php:118 include/conversation.php:245 +msgid "event" +msgstr "l'evento" + +#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 +#: view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Ultime foto" + +#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 +#: view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Trova Amici" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Elenco Locale" + +#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Interessi simili" + +#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Invita amici" + +#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 +#: view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Livello di zoom per Earth Layers" + +#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitudine (X) per Earth Layers" + +#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitudine (Y) per Earth Layers" + +#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 +#: view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Serve aiuto? Sei nuovo?" + +#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 +#: view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Servizi di conessione" + +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +#: include/acl_selectors.php:337 +msgid "don't show" +msgstr "non mostrare" + +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +#: include/acl_selectors.php:336 +msgid "show" +msgstr "mostra" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostra/Nascondi riquadri nella colonna destra" + +#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 +#: view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Dimensione del carattere di messaggi e commenti" + +#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Altezza della linea di testo di messaggi e commenti" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Imposta la dimensione della colonna centrale" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Imposta lo schema dei colori" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Livello di zoom per Earth Layer" + +#: view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Imposta stile" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Imposta schema colori" + +#: view/theme/duepuntozero/config.php:44 include/text.php:1768 +#: include/user.php:255 +msgid "default" +msgstr "default" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Varianti" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Allineamento" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Sinistra" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrato" + +#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Schema colori" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensione caratteri post" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensione caratteri nelle aree di testo" + +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Imposta la larghezza del tema" + +#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 +msgid "Click here to download" +msgstr "" + +#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 +#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 +msgid "Create new pull request" +msgstr "" + +#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 +msgid "Reload active plugins" +msgstr "" + +#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 +msgid "Drop contact" +msgstr "" + +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 +msgid "Public projects on this node" +msgstr "" + +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 +#, php-format +msgid "" +"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " +"undone." +msgstr "" + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 +msgid "Visibility" +msgstr "" + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 +msgid "Create" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 +msgid "No pull requests to show" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 +msgid "opened by" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 +msgid "closed" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 +msgid "merged" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 +msgid "Projects" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 +msgid "add new" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 +msgid "delete" +msgstr "" + +#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 +#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 +#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 +msgid "Clone this project:" +msgstr "" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 +msgid "New pull request" +msgstr "" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 +msgid "Can't show you the diff at the moment. Sorry" +msgstr "" #: boot.php:763 msgid "Delete this item?" @@ -5776,144 +6182,6 @@ msgstr "Politiche di privacy del sito" msgid "privacy policy" msgstr "politiche di privacy" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "ignora la discussione" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "non ignorare la discussione" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "inverti stato \"Ignora\"" - -#: object/Item.php:214 -msgid "ignored" -msgstr "ignorato" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "Categorie:" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "Archiviato in:" - -#: object/Item.php:331 -msgid "via" -msgstr "via" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Il messaggio di errore è\n[pre]%s[/pre]" - -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Riscontrati errori applicando le modifiche al database." - -#: include/auth.php:38 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: include/auth.php:128 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." - -#: include/auth.php:128 include/user.php:75 -msgid "The error message was:" -msgstr "Il messaggio riportato era:" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aggiungi nuovo contatto" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trova persone" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connetti/segui" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" - -#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Interessi simili" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profilo causale" - -#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Invita amici" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "Reti" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Tutte le Reti" - -#: include/contact_widgets.php:104 include/features.php:60 -msgid "Saved Folders" -msgstr "Cartelle Salvate" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tutto" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorie" - #: include/features.php:23 msgid "General Features" msgstr "Funzionalità generali" @@ -6051,6 +6319,10 @@ msgstr "Cateorie post" msgid "Add categories to your posts" msgstr "Aggiungi categorie ai tuoi post" +#: include/features.php:60 include/contact_widgets.php:104 +msgid "Saved Folders" +msgstr "Cartelle Salvate" + #: include/features.php:60 msgid "Ability to file posts under folders" msgstr "Permette di archiviare i post in cartelle" @@ -6079,517 +6351,35 @@ msgstr "Silenzia le notifiche di nuovi post" msgid "Ability to mute notifications for a thread" msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" -#: include/follow.php:75 -msgid "Connect URL missing." -msgstr "URL di connessione mancante." +#: include/auth.php:38 +msgid "Logged out." +msgstr "Uscita effettuata." -#: include/follow.php:102 +#: include/auth.php:128 include/user.php:75 msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." -#: include/follow.php:103 include/follow.php:123 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "Il messaggio riportato era:" -#: include/follow.php:121 -msgid "The profile address specified does not provide adequate information." -msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." +#: include/event.php:22 include/bb2diaspora.php:154 +msgid "Starts:" +msgstr "Inizia:" -#: include/follow.php:125 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome o un autore" - -#: include/follow.php:127 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." - -#: include/follow.php:129 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." - -#: include/follow.php:130 -msgid "Use mailto: in front of address to force email check." -msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." - -#: include/follow.php:136 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." - -#: include/follow.php:146 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." - -#: include/follow.php:249 -msgid "Unable to retrieve contact information." -msgstr "Impossibile recuperare informazioni sul contatto." - -#: include/follow.php:302 -msgid "following" -msgstr "segue" - -#: 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 "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." - -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" - -#: include/group.php:226 -msgid "Everybody" -msgstr "Tutti" - -#: include/group.php:249 -msgid "edit" -msgstr "modifica" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Modifica gruppo" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Varie" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG o MM-GG" - -#: include/datetime.php:256 -msgid "never" -msgstr "mai" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: include/datetime.php:272 -msgid "year" -msgstr "anno" - -#: include/datetime.php:272 -msgid "years" -msgstr "anni" - -#: include/datetime.php:273 -msgid "month" -msgstr "mese" - -#: include/datetime.php:273 -msgid "months" -msgstr "mesi" - -#: include/datetime.php:274 -msgid "week" -msgstr "settimana" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "settimane" - -#: include/datetime.php:275 -msgid "day" -msgstr "giorno" - -#: include/datetime.php:275 -msgid "days" -msgstr "giorni" - -#: include/datetime.php:276 -msgid "hour" -msgstr "ora" - -#: include/datetime.php:276 -msgid "hours" -msgstr "ore" - -#: include/datetime.php:277 -msgid "minute" -msgstr "minuto" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "minuti" - -#: include/datetime.php:278 -msgid "second" -msgstr "secondo" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "secondi" - -#: include/datetime.php:287 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: include/datetime.php:459 include/items.php:2432 -#, php-format -msgid "%s's birthday" -msgstr "Compleanno di %s" - -#: include/datetime.php:460 include/items.php:2433 -#, php-format -msgid "Happy Birthday %s" -msgstr "Buon compleanno %s" - -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "L'account richiesto non è disponibile." - -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 -msgid "Edit profile" -msgstr "Modifica il profilo" - -#: include/identity.php:220 -msgid "Message" -msgstr "Messaggio" - -#: include/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "Profili" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" - -#: include/identity.php:341 -msgid "Network:" -msgstr "Rete:" - -#: include/identity.php:373 include/identity.php:459 -msgid "g A l F d" -msgstr "g A l d F" - -#: include/identity.php:374 include/identity.php:460 -msgid "F d" -msgstr "d F" - -#: include/identity.php:419 include/identity.php:506 -msgid "[today]" -msgstr "[oggi]" - -#: include/identity.php:431 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" - -#: include/identity.php:432 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" - -#: include/identity.php:493 -msgid "[No description]" -msgstr "[Nessuna descrizione]" - -#: include/identity.php:517 -msgid "Event Reminders" -msgstr "Promemoria" - -#: include/identity.php:518 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" - -#: include/identity.php:545 -msgid "j F, Y" -msgstr "j F Y" - -#: include/identity.php:546 -msgid "j F" -msgstr "j F" - -#: include/identity.php:553 -msgid "Birthday:" -msgstr "Compleanno:" - -#: include/identity.php:557 -msgid "Age:" -msgstr "Età:" - -#: include/identity.php:566 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: include/identity.php:579 -msgid "Religion:" -msgstr "Religione:" - -#: include/identity.php:583 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interessi:" - -#: include/identity.php:590 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e social network:" - -#: include/identity.php:592 -msgid "Musical interests:" -msgstr "Interessi musicali:" - -#: include/identity.php:594 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: include/identity.php:596 -msgid "Television:" -msgstr "Televisione:" - -#: include/identity.php:598 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" - -#: include/identity.php:600 -msgid "Love/Romance:" -msgstr "Amore:" - -#: include/identity.php:602 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: include/identity.php:604 -msgid "School/education:" -msgstr "Scuola:" - -#: include/identity.php:632 include/nav.php:76 -msgid "Status" -msgstr "Stato" - -#: include/identity.php:635 -msgid "Status Messages and Posts" -msgstr "Messaggi di stato e post" - -#: include/identity.php:643 -msgid "Profile Details" -msgstr "Dettagli del profilo" - -#: include/identity.php:656 include/identity.php:659 include/nav.php:79 -msgid "Videos" -msgstr "Video" - -#: include/identity.php:670 -msgid "Events and Calendar" -msgstr "Eventi e calendario" - -#: include/identity.php:678 -msgid "Only You Can See This" -msgstr "Solo tu puoi vedere questo" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "Invia a email" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "show" -msgstr "mostra" - -#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "non mostrare" +#: include/event.php:32 include/bb2diaspora.php:162 +msgid "Finishes:" +msgstr "Finisce:" #: include/message.php:15 include/message.php:173 msgid "[no subject]" msgstr "[nessun oggetto]" -#: include/Contact.php:119 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: include/Contact.php:232 include/conversation.php:881 -msgid "Poke" -msgstr "Stuzzica" - -#: include/Contact.php:233 include/conversation.php:875 -msgid "View Status" -msgstr "Visualizza stato" - -#: include/Contact.php:234 include/conversation.php:876 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: include/Contact.php:235 include/conversation.php:877 -msgid "View Photos" -msgstr "Visualizza foto" - -#: include/Contact.php:236 include/Contact.php:259 -#: include/conversation.php:878 -msgid "Network Posts" -msgstr "Post della Rete" - -#: include/Contact.php:237 include/Contact.php:259 -#: include/conversation.php:879 -msgid "Edit Contact" -msgstr "Modifica contatti" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Rimuovi contatto" - -#: include/Contact.php:239 include/Contact.php:259 -#: include/conversation.php:880 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Ciao" - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Carica una foto per il profilo." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Ciao " - -#: include/security.php:375 -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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." - -#: include/conversation.php:118 include/conversation.php:245 -#: include/text.php:2032 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "l'evento" - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "post/elemento" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" - -#: include/conversation.php:771 -msgid "remove" -msgstr "rimuovi" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." - -#: include/conversation.php:965 -msgid "and" -msgstr "e" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "permessi" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Post privato" - -#: include/network.php:959 -msgid "view full size" -msgstr "vedi a schermo intero" +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr "su Last.fm" #: include/text.php:299 msgid "newer" @@ -6866,11 +6656,6 @@ msgstr "Vedi in una pagina separata" msgid "view on separate page" msgstr "vedi in una pagina separata" -#: include/text.php:1768 include/user.php:255 -#: view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "default" - #: include/text.php:1780 msgid "Select an alternate language" msgstr "Seleziona una diversa lingua" @@ -6887,303 +6672,6 @@ msgstr "messaggio" msgid "Item filed" msgstr "Messaggio salvato" -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: include/bbcode.php:556 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:590 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s ha scritto il seguente messaggio" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "Contenuto criptato" - -#: include/notifier.php:830 include/delivery.php:456 -msgid "(no subject)" -msgstr "(nessun oggetto)" - -#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 -msgid "noreply" -msgstr "nessuna risposta" - -#: include/dba_pdo.php:72 include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | non categorizzato" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocca immediatamente" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, spammer, self-marketer" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "E' ok, probabilmente innocuo" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Rispettabile, ha la mia fiducia" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Settimanalmente" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensilmente" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "Ostatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS / Atom" - -#: 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_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Connettore Diaspora" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "Redmatrix" - -#: include/Scrape.php:603 -msgid " on Last.fm" -msgstr "su Last.fm" - -#: include/bb2diaspora.php:154 include/event.php:22 -msgid "Starts:" -msgstr "Inizia:" - -#: include/bb2diaspora.php:162 include/event.php:32 -msgid "Finishes:" -msgstr "Finisce:" - -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: include/plugin.php:466 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." - -#: include/plugin.php:471 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." - -#: include/nav.php:73 -msgid "End this session" -msgstr "Finisci questa sessione" - -#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" - -#: include/nav.php:77 view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" - -#: include/nav.php:78 view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Le tue foto" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "I tuoi video" - -#: include/nav.php:80 view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "I tuoi eventi" - -#: include/nav.php:81 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Note personali" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "Le tue note personali" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Entra" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Home Page" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Crea un account" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Applicazioni" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "Conversazioni nella rete" - -#: include/nav.php:141 -msgid "Directory" -msgstr "Elenco" - -#: include/nav.php:141 -msgid "People directory" -msgstr "Elenco delle persone" - -#: include/nav.php:143 -msgid "Information" -msgstr "Informazioni" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "Informazioni su questo server friendica" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "Reset pagina Rete" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "Posta privata" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "In arrivo" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "Inviati" - -#: include/nav.php:176 -msgid "Manage" -msgstr "Gestisci" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "Parametri account" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "Navigazione" - -#: include/nav.php:197 -msgid "Site map" -msgstr "Mappa del sito" - #: include/api.php:321 include/api.php:332 include/api.php:441 #: include/api.php:1141 include/api.php:1143 msgid "User not found." @@ -7224,131 +6712,259 @@ msgstr "Azione non valida." msgid "DB error" msgstr "Errore database" -#: include/user.php:48 -msgid "An invitation is required." -msgstr "E' richiesto un invito." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Il nome è troppo corto." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "L'indirizzo email non è valido." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Non puoi usare quell'email." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"." - -#: include/user.php:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." - -#: include/user.php:156 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." - -#: include/user.php:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." - -#: include/user.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." - -#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 -msgid "Friends" -msgstr "Amici" - -#: include/user.php:385 +#: include/dba.php:56 include/dba_pdo.php:72 #, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: include/user.php:389 +#: include/items.php:2445 include/datetime.php:459 #, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" +msgid "%s's birthday" +msgstr "Compleanno di %s" -#: include/diaspora.php:717 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" +#: include/items.php:2446 include/datetime.php:460 +#, php-format +msgid "Happy Birthday %s" +msgstr "Buon compleanno %s" -#: include/diaspora.php:2560 -msgid "Attachments:" -msgstr "Allegati:" - -#: include/items.php:4853 +#: include/items.php:4866 msgid "Do you really want to delete this item?" msgstr "Vuoi veramente cancellare questo elemento?" -#: include/items.php:5128 +#: include/items.php:5141 msgid "Archives" msgstr "Archivi" +#: include/delivery.php:456 include/notifier.php:834 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 +msgid "noreply" +msgstr "nessuna risposta" + +#: include/diaspora.php:716 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: include/diaspora.php:2567 +msgid "Attachments:" +msgstr "Allegati:" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "L'account richiesto non è disponibile." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:608 +msgid "Edit profile" +msgstr "Modifica il profilo" + +#: include/identity.php:220 +msgid "Message" +msgstr "Messaggio" + +#: include/identity.php:226 include/nav.php:184 +msgid "Profiles" +msgstr "Profili" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: include/identity.php:342 +msgid "Network:" +msgstr "Rete:" + +#: include/identity.php:374 include/identity.php:460 +msgid "g A l F d" +msgstr "g A l d F" + +#: include/identity.php:375 include/identity.php:461 +msgid "F d" +msgstr "d F" + +#: include/identity.php:420 include/identity.php:507 +msgid "[today]" +msgstr "[oggi]" + +#: include/identity.php:432 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" + +#: include/identity.php:433 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: include/identity.php:494 +msgid "[No description]" +msgstr "[Nessuna descrizione]" + +#: include/identity.php:518 +msgid "Event Reminders" +msgstr "Promemoria" + +#: include/identity.php:519 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" + +#: include/identity.php:546 +msgid "j F, Y" +msgstr "j F Y" + +#: include/identity.php:547 +msgid "j F" +msgstr "j F" + +#: include/identity.php:554 +msgid "Birthday:" +msgstr "Compleanno:" + +#: include/identity.php:558 +msgid "Age:" +msgstr "Età:" + +#: include/identity.php:567 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: include/identity.php:580 +msgid "Religion:" +msgstr "Religione:" + +#: include/identity.php:584 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interessi:" + +#: include/identity.php:591 +msgid "Contact information and Social Networks:" +msgstr "Informazioni su contatti e social network:" + +#: include/identity.php:593 +msgid "Musical interests:" +msgstr "Interessi musicali:" + +#: include/identity.php:595 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: include/identity.php:597 +msgid "Television:" +msgstr "Televisione:" + +#: include/identity.php:599 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/danza/cultura/intrattenimento:" + +#: include/identity.php:601 +msgid "Love/Romance:" +msgstr "Amore:" + +#: include/identity.php:603 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: include/identity.php:605 +msgid "School/education:" +msgstr "Scuola:" + +#: include/identity.php:633 include/nav.php:76 +msgid "Status" +msgstr "Stato" + +#: include/identity.php:636 +msgid "Status Messages and Posts" +msgstr "Messaggi di stato e post" + +#: include/identity.php:644 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: include/identity.php:657 include/identity.php:660 include/nav.php:79 +msgid "Videos" +msgstr "Video" + +#: include/identity.php:671 +msgid "Events and Calendar" +msgstr "Eventi e calendario" + +#: include/identity.php:679 +msgid "Only You Can See This" +msgstr "Solo tu puoi vedere questo" + +#: include/follow.php:75 +msgid "Connect URL missing." +msgstr "URL di connessione mancante." + +#: include/follow.php:102 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." + +#: include/follow.php:103 include/follow.php:123 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." + +#: include/follow.php:121 +msgid "The profile address specified does not provide adequate information." +msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." + +#: include/follow.php:125 +msgid "An author or name was not found." +msgstr "Non è stato trovato un nome o un autore" + +#: include/follow.php:127 +msgid "No browser URL could be matched to this address." +msgstr "Nessun URL puo' essere associato a questo indirizzo." + +#: include/follow.php:129 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." + +#: include/follow.php:130 +msgid "Use mailto: in front of address to force email check." +msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." + +#: include/follow.php:136 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." + +#: include/follow.php:146 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." + +#: include/follow.php:253 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." + +#: include/follow.php:306 +msgid "following" +msgstr "segue" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Ciao" + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Carica una foto per il profilo." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Ciao " + +#: include/security.php:375 +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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." + #: include/profile_selectors.php:6 msgid "Male" msgstr "Maschio" @@ -7493,6 +7109,10 @@ msgstr "Infedele" msgid "Sex Addict" msgstr "Sesso-dipendente" +#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 +msgid "Friends" +msgstr "Amici" + #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amici con benefici" @@ -7577,6 +7197,461 @@ msgstr "Non interessa" msgid "Ask me" msgstr "Chiedimelo" +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Errore decodificando il file account" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Errore! Non posso controllare il nickname" + +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utente '%s' esiste già su questo server!" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Errore creando l'utente" + +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Errore creando il profile dell'utente" + +#: include/uimport.php:222 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contatto non importato" +msgstr[1] "%d contatti non importati" + +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "post/elemento" + +#: include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" + +#: include/conversation.php:771 +msgid "remove" +msgstr "rimuovi" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: include/conversation.php:874 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: include/conversation.php:875 include/Contact.php:233 +msgid "View Status" +msgstr "Visualizza stato" + +#: include/conversation.php:876 include/Contact.php:234 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: include/conversation.php:877 include/Contact.php:235 +msgid "View Photos" +msgstr "Visualizza foto" + +#: include/conversation.php:878 include/Contact.php:236 +#: include/Contact.php:259 +msgid "Network Posts" +msgstr "Post della Rete" + +#: include/conversation.php:879 include/Contact.php:237 +#: include/Contact.php:259 +msgid "Edit Contact" +msgstr "Modifica contatti" + +#: include/conversation.php:880 include/Contact.php:239 +#: include/Contact.php:259 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: include/conversation.php:881 include/Contact.php:232 +msgid "Poke" +msgstr "Stuzzica" + +#: include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: include/conversation.php:965 +msgid "and" +msgstr "e" + +#: include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:1000 include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/conversation.php:1002 include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: include/conversation.php:1003 include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: include/conversation.php:1004 include/conversation.php:1022 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1006 include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: include/conversation.php:1076 +msgid "permissions" +msgstr "permessi" + +#: include/conversation.php:1099 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: include/conversation.php:1100 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: include/conversation.php:1101 +msgid "Private post" +msgstr "Post privato" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trova persone" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Connetti/segui" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profilo causale" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Reti" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Tutte le Reti" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Tutto" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Categorie" + +#: include/nav.php:73 +msgid "End this session" +msgstr "Finisci questa sessione" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "I tuoi video" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "Le tue note personali" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Entra" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Home Page" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Crea un account" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Applicazioni" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "Conversazioni nella rete" + +#: include/nav.php:141 +msgid "Directory" +msgstr "Elenco" + +#: include/nav.php:141 +msgid "People directory" +msgstr "Elenco delle persone" + +#: include/nav.php:143 +msgid "Information" +msgstr "Informazioni" + +#: include/nav.php:143 +msgid "Information about this friendica instance" +msgstr "Informazioni su questo server friendica" + +#: include/nav.php:153 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" + +#: include/nav.php:154 +msgid "Network Reset" +msgstr "Reset pagina Rete" + +#: include/nav.php:154 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" + +#: include/nav.php:161 +msgid "Friend Requests" +msgstr "Richieste di amicizia" + +#: include/nav.php:165 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: include/nav.php:166 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" + +#: include/nav.php:170 +msgid "Private mail" +msgstr "Posta privata" + +#: include/nav.php:171 +msgid "Inbox" +msgstr "In arrivo" + +#: include/nav.php:172 +msgid "Outbox" +msgstr "Inviati" + +#: include/nav.php:176 +msgid "Manage" +msgstr "Gestisci" + +#: include/nav.php:176 +msgid "Manage other pages" +msgstr "Gestisci altre pagine" + +#: include/nav.php:181 +msgid "Account settings" +msgstr "Parametri account" + +#: include/nav.php:184 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" + +#: include/nav.php:186 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" + +#: include/nav.php:193 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" + +#: include/nav.php:197 +msgid "Navigation" +msgstr "Navigazione" + +#: include/nav.php:197 +msgid "Site map" +msgstr "Mappa del sito" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | non categorizzato" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocca immediatamente" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Shady, spammer, self-marketer" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "E' ok, probabilmente innocuo" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Rispettabile, ha la mia fiducia" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Settimanalmente" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensilmente" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "Ostatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: 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_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connettore Diaspora" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "Redmatrix" + #: include/enotify.php:18 msgid "Friendica Notification" msgstr "Notifica Friendica" @@ -7860,6 +7935,148 @@ msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" msgid "Please visit %s to approve or reject the request." msgstr "Visita %s per approvare o rifiutare la richiesta." +#: include/user.php:48 +msgid "An invitation is required." +msgstr "E' richiesto un invito." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "L'invito non puo' essere verificato." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Url OpenID non valido" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Usa un nome più corto." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Il nome è troppo corto." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "L'indirizzo email non è valido." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Non puoi usare quell'email." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"." + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Nome utente già registrato. Scegline un altro." + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "C'è stato un errore durante la registrazione. Prova ancora." + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." + +#: include/user.php:385 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." + +#: include/user.php:389 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "Invia a email" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: include/bbcode.php:556 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:590 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s ha scritto il seguente messaggio" + +#: include/bbcode.php:1076 include/bbcode.php:1096 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: include/bbcode.php:1121 include/bbcode.php:1122 +msgid "Encrypted content" +msgstr "Contenuto criptato" + #: include/oembed.php:220 msgid "Embedded content" msgstr "Contenuto incorporato" @@ -7868,204 +8085,147 @@ msgstr "Contenuto incorporato" msgid "Embedding disabled" msgstr "Embed disabilitato" -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Errore decodificando il file account" +#: 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 "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Errore! Non posso controllare il nickname" +#: include/group.php:226 +msgid "Everybody" +msgstr "Tutti" -#: include/uimport.php:120 include/uimport.php:131 +#: include/group.php:249 +msgid "edit" +msgstr "modifica" + +#: include/group.php:271 +msgid "Edit group" +msgstr "Modifica gruppo" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "tolto dai seguiti" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Rimuovi contatto" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Varie" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG o MM-GG" + +#: include/datetime.php:256 +msgid "never" +msgstr "mai" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: include/datetime.php:272 +msgid "year" +msgstr "anno" + +#: include/datetime.php:272 +msgid "years" +msgstr "anni" + +#: include/datetime.php:273 +msgid "month" +msgstr "mese" + +#: include/datetime.php:273 +msgid "months" +msgstr "mesi" + +#: include/datetime.php:274 +msgid "week" +msgstr "settimana" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "settimane" + +#: include/datetime.php:275 +msgid "day" +msgstr "giorno" + +#: include/datetime.php:275 +msgid "days" +msgstr "giorni" + +#: include/datetime.php:276 +msgid "hour" +msgstr "ora" + +#: include/datetime.php:276 +msgid "hours" +msgstr "ore" + +#: include/datetime.php:277 +msgid "minute" +msgstr "minuto" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "minuti" + +#: include/datetime.php:278 +msgid "second" +msgstr "secondo" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "secondi" + +#: include/datetime.php:287 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "L'utente '%s' esiste già su questo server!" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Errore creando l'utente" +#: include/network.php:959 +msgid "view full size" +msgstr "vedi a schermo intero" -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "Errore creando il profile dell'utente" - -#: include/uimport.php:222 +#: include/dbstructure.php:26 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contatto non importato" -msgstr[1] "%d contatti non importati" +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Il messaggio di errore è\n[pre]%s[/pre]" -#: index.php:441 -msgid "toggle mobile" -msgstr "commuta tema mobile" +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" - -#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 -#: view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "Dimensione del carattere di messaggi e commenti" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Imposta la larghezza del tema" - -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Schema colori" - -#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Altezza della linea di testo di messaggi e commenti" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Imposta schema colori" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Allineamento" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Sinistra" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrato" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensione caratteri post" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensione caratteri nelle aree di testo" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Imposta la dimensione della colonna centrale" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Imposta lo schema dei colori" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Livello di zoom per Earth Layer" - -#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitudine (X) per Earth Layers" - -#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitudine (Y) per Earth Layers" - -#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Pagine Comunitarie" - -#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 -#: view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 -#: view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Profili Comunità" - -#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Serve aiuto? Sei nuovo?" - -#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 -#: view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Servizi di conessione" - -#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Trova Amici" - -#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Ultimi utenti" - -#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 -#: view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Ultime foto" - -#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 -#: view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Ultimi \"mi piace\"" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "I tuoi contatti" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Le tue foto personali" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Elenco Locale" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Livello di zoom per Earth Layers" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/Nascondi riquadri nella colonna destra" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Imposta stile" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Varianti" +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "Riscontrati errori applicando le modifiche al database." diff --git a/view/it/strings.php b/view/it/strings.php index 3ccaba7f42..2e186c8b8f 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -5,281 +5,123 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["%d contact edited."] = array( - 0 => "%d contatto modificato", - 1 => "%d contatti modificati", -); -$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; -$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; -$a->strings["Contact updated."] = "Contatto aggiornato."; -$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; -$a->strings["Permission denied."] = "Permesso negato."; -$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; -$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; -$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; -$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; -$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; -$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; -$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; -$a->strings["Yes"] = "Si"; -$a->strings["Cancel"] = "Annulla"; -$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; -$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; -$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; -$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; -$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; -$a->strings["Never"] = "Mai"; -$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"; -$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; -$a->strings["Suggest friends"] = "Suggerisci amici"; -$a->strings["Network type: %s"] = "Tipo di rete: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -$a->strings["View all contacts"] = "Vedi tutti i contatti"; -$a->strings["Unblock"] = "Sblocca"; -$a->strings["Block"] = "Blocca"; -$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; -$a->strings["Unignore"] = "Non ignorare"; -$a->strings["Ignore"] = "Ignora"; -$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; -$a->strings["Unarchive"] = "Dearchivia"; -$a->strings["Archive"] = "Archivia"; -$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; -$a->strings["Repair"] = "Ripara"; -$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; -$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; -$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; -$a->strings["Disabled"] = "Disabilitato"; -$a->strings["Fetch information"] = "Recupera informazioni"; -$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; -$a->strings["Contact Editor"] = "Editor dei Contatti"; -$a->strings["Submit"] = "Invia"; -$a->strings["Profile Visibility"] = "Visibilità del profilo"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; -$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; -$a->strings["Edit contact notes"] = "Modifica note contatto"; -$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; -$a->strings["Ignore contact"] = "Ignora il contatto"; -$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; -$a->strings["View conversations"] = "Vedi conversazioni"; -$a->strings["Delete contact"] = "Rimuovi contatto"; -$a->strings["Last update:"] = "Ultimo aggiornamento:"; -$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; -$a->strings["Update now"] = "Aggiorna adesso"; -$a->strings["Currently blocked"] = "Bloccato"; -$a->strings["Currently ignored"] = "Ignorato"; -$a->strings["Currently archived"] = "Al momento archiviato"; -$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; -$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi"; -$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto"; -$a->strings["Blacklisted keywords"] = "Parole chiave in blacklist"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato"; -$a->strings["Profile URL"] = "URL Profilo"; -$a->strings["Suggestions"] = "Suggerimenti"; -$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; -$a->strings["All Contacts"] = "Tutti i contatti"; -$a->strings["Show all contacts"] = "Mostra tutti i contatti"; -$a->strings["Unblocked"] = "Sbloccato"; -$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; -$a->strings["Blocked"] = "Bloccato"; -$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; -$a->strings["Ignored"] = "Ignorato"; -$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; -$a->strings["Archived"] = "Achiviato"; -$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; -$a->strings["Hidden"] = "Nascosto"; -$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; -$a->strings["Contacts"] = "Contatti"; -$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; -$a->strings["Finding: "] = "Ricerca: "; -$a->strings["Find"] = "Trova"; -$a->strings["Update"] = "Aggiorna"; +$a->strings["This entry was edited"] = "Questa voce è stata modificata"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["Edit"] = "Modifica"; +$a->strings["Select"] = "Seleziona"; $a->strings["Delete"] = "Rimuovi"; -$a->strings["Mutual Friendship"] = "Amicizia reciproca"; -$a->strings["is a fan of yours"] = "è un tuo fan"; -$a->strings["you are a fan of"] = "sei un fan di"; -$a->strings["Edit contact"] = "Modifca contatto"; -$a->strings["No profile"] = "Nessun profilo"; -$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; -$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; -$a->strings["Post successful."] = "Inviato!"; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; -$a->strings["Profile"] = "Profilo"; -$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$a->strings["Visible To"] = "Visibile a"; -$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Public access denied."] = "Accesso negato."; -$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; -$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; -$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; -$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; -$a->strings["Getting Started"] = "Come Iniziare"; -$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; -$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; -$a->strings["Profile Keywords"] = "Parole chiave del profilo"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; -$a->strings["Connecting"] = "Collegarsi"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; -$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; -$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; -$a->strings["Finding New People"] = "Trova nuove persone"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; -$a->strings["Groups"] = "Gruppi"; -$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; -$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; -$a->strings["Getting Help"] = "Ottenere Aiuto"; -$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; -$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; -$a->strings["Login failed."] = "Accesso fallito."; -$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Image exceeds size limit of %s"] = "La dimensione dell'immagine supera il limite di %s"; -$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; -$a->strings["Upload File:"] = "Carica un file:"; -$a->strings["Select a profile:"] = "Seleziona un profilo:"; -$a->strings["Upload"] = "Carica"; -$a->strings["or"] = "o"; -$a->strings["skip this step"] = "salta questo passaggio"; -$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -$a->strings["Crop Image"] = "Ritaglia immagine"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; -$a->strings["Done Editing"] = "Finito"; -$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; -$a->strings["Image upload failed."] = "Caricamento immagine fallito."; -$a->strings["photo"] = "foto"; -$a->strings["status"] = "stato"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Tag removed"] = "Tag rimosso"; -$a->strings["Remove Item Tag"] = "Rimuovi il tag"; -$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -$a->strings["Remove"] = "Rimuovi"; -$a->strings["Save to Folder:"] = "Salva nella Cartella:"; -$a->strings["- select -"] = "- seleziona -"; -$a->strings["Save"] = "Salva"; -$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; -$a->strings["Please answer the following:"] = "Rispondi:"; -$a->strings["Does %s know you?"] = "%s ti conosce?"; -$a->strings["No"] = "No"; -$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; -$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; -$a->strings["Submit Request"] = "Invia richiesta"; -$a->strings["Contact added"] = "Contatto aggiunto"; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; -$a->strings["Wall Photos"] = "Foto della bacheca"; -$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; -$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; -$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; -$a->strings["Group created."] = "Gruppo creato."; -$a->strings["Could not create group."] = "Impossibile creare il gruppo."; -$a->strings["Group not found."] = "Gruppo non trovato."; -$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; -$a->strings["Save Group"] = "Salva gruppo"; -$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; -$a->strings["Group Name: "] = "Nome del gruppo:"; -$a->strings["Group removed."] = "Gruppo rimosso."; -$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; -$a->strings["Group Editor"] = "Modifica gruppo"; -$a->strings["Members"] = "Membri"; +$a->strings["save to folder"] = "salva nella cartella"; +$a->strings["add star"] = "aggiungi a speciali"; +$a->strings["remove star"] = "rimuovi da speciali"; +$a->strings["toggle star status"] = "Inverti stato preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["ignore thread"] = "ignora la discussione"; +$a->strings["unignore thread"] = "non ignorare la discussione"; +$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; +$a->strings["ignored"] = "ignorato"; +$a->strings["add tag"] = "aggiungi tag"; +$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; +$a->strings["like"] = "mi piace"; +$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["Share this"] = "Condividi questo"; +$a->strings["share"] = "condividi"; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Archiviato in:"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["to"] = "a"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; +$a->strings["%s from %s"] = "%s da %s"; +$a->strings["Comment"] = "Commento"; +$a->strings["Please wait"] = "Attendi"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +$a->strings["comment"] = array( + 0 => "", + 1 => "commento", +); +$a->strings["show more"] = "mostra di più"; +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Submit"] = "Invia"; +$a->strings["Bold"] = "Grassetto"; +$a->strings["Italic"] = "Corsivo"; +$a->strings["Underline"] = "Sottolineato"; +$a->strings["Quote"] = "Citazione"; +$a->strings["Code"] = "Codice"; +$a->strings["Image"] = "Immagine"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Anteprima"; $a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; -$a->strings["Applications"] = "Applicazioni"; -$a->strings["No installed applications."] = "Nessuna applicazione installata."; -$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Not Found"] = "Non trovato"; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["toggle mobile"] = "commuta tema mobile"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; $a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; -$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; -$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; -$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; -$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; -$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; -$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; -$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; -$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; -$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; -$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; -$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; -$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; -$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; -$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; -$a->strings["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?"; -$a->strings["Delete Video"] = "Rimuovi video"; -$a->strings["No videos selected"] = "Nessun video selezionato"; -$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; -$a->strings["View Video"] = "Guarda Video"; -$a->strings["View Album"] = "Sfoglia l'album"; -$a->strings["Recent Videos"] = "Video Recenti"; -$a->strings["Upload New Videos"] = "Carica Nuovo Video"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; $a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; $a->strings["Suggest Friends"] = "Suggerisci amici"; $a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; -$a->strings["Invalid request."] = "Richiesta non valida."; -$a->strings["No valid account found."] = "Nessun account valido trovato."; -$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; -$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; -$a->strings["Password Reset"] = "Reimpostazione password"; -$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; -$a->strings["Your new password is"] = "La tua nuova password è"; -$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -$a->strings["click here to login"] = "clicca qui per entrare"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; -$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; -$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; -$a->strings["Nickname or Email: "] = "Nome utente o email: "; -$a->strings["Reset"] = "Reimposta"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; -$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; -$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; -$a->strings["No contacts."] = "Nessun contatto."; -$a->strings["View Contacts"] = "Visualizza i contatti"; +$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", + 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", +); +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; +$a->strings["Profile unavailable."] = "Profilo non disponibile."; +$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; +$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Indirizzo email non valido."; +$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; +$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; +$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; +$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; +$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; +$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; +$a->strings["Confirm"] = "Conferma"; +$a->strings["Hide this contact"] = "Nascondi questo contatto"; +$a->strings["Welcome home %s."] = "Bentornato a casa %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; +$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["Public access denied."] = "Accesso negato."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; +$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Rispondi:"; +$a->strings["Does %s know you?"] = "%s ti conosce?"; +$a->strings["No"] = "No"; +$a->strings["Yes"] = "Si"; +$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; +$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; +$a->strings["Submit Request"] = "Invia richiesta"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["View Video"] = "Guarda Video"; +$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; +$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; +$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; $a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; $a->strings["Discard"] = "Scarta"; +$a->strings["Ignore"] = "Ignora"; $a->strings["System"] = "Sistema"; $a->strings["Network"] = "Rete"; $a->strings["Personal"] = "Personale"; @@ -290,6 +132,7 @@ $a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; $a->strings["Notification type: "] = "Tipo di notifica: "; $a->strings["Friend Suggestion"] = "Amico suggerito"; $a->strings["suggested by %s"] = "sugerito da %s"; +$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; $a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; $a->strings["if applicable"] = "se applicabile"; $a->strings["Approve"] = "Approva"; @@ -322,6 +165,13 @@ $a->strings["No more personal notifications."] = "Nessuna nuova."; $a->strings["Personal Notifications"] = "Notifiche personali"; $a->strings["No more home notifications."] = "Nessuna nuova."; $a->strings["Home Notifications"] = "Notifiche bacheca"; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "stato"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; +$a->strings["Login failed."] = "Accesso fallito."; $a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; $a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; $a->strings["Source input: "] = "Sorgente:"; @@ -334,72 +184,6 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Sorgente (formato Diaspora):"; $a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Clear notifications"] = "Pulisci le notifiche"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; -$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; -$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; -$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; -$a->strings["Message sent."] = "Messaggio inviato."; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["Upload photo"] = "Carica foto"; -$a->strings["Insert web link"] = "Inserisci link"; -$a->strings["Please wait"] = "Attendi"; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = "%s e Tu"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["%d message"] = array( - 0 => "%d messaggio", - 1 => "%d messaggi", -); -$a->strings["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Contact settings applied."] = "Contatto modificato."; -$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; -$a->strings["Repair Contact Settings"] = "Ripara il contatto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; -$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["No mirroring"] = "Non duplicare"; -$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; -$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; -$a->strings["Refetch contact data"] = "Ricarica dati contatto"; -$a->strings["Name"] = "Nome"; -$a->strings["Account Nickname"] = "Nome utente"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; -$a->strings["Account URL"] = "URL dell'utente"; -$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; -$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; -$a->strings["Notification Endpoint URL"] = "URL Notifiche"; -$a->strings["Poll/Feed URL"] = "URL Feed"; -$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; -$a->strings["Remote Self"] = "Io remoto"; -$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; -$a->strings["Login"] = "Accedi"; -$a->strings["The post was created"] = "Il messaggio è stato creato"; -$a->strings["Access denied."] = "Accesso negato."; -$a->strings["People Search - %s"] = "Cerca persone - %s"; -$a->strings["Connect"] = "Connetti"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["Photos"] = "Foto"; -$a->strings["Files"] = "File"; -$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; $a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate."; $a->strings["Site"] = "Sito"; $a->strings["Users"] = "Utenti"; @@ -414,6 +198,7 @@ $a->strings["Admin"] = "Amministrazione"; $a->strings["Plugin Features"] = "Impostazioni Plugins"; $a->strings["diagnostics"] = "diagnostiche"; $a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; +$a->strings["Item not found."] = "Elemento non trovato."; $a->strings["Administration"] = "Amministrazione"; $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = "Nome Destinatario"; @@ -434,19 +219,22 @@ $a->strings["Pending registrations"] = "Registrazioni in attesa"; $a->strings["Version"] = "Versione"; $a->strings["Active plugins"] = "Plugin attivi"; $a->strings["Can not parse base url. Must have at least ://"] = "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]"; +$a->strings["RINO2 needs mcrypt php extension to work."] = ""; $a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; $a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili"; $a->strings["No community page"] = "Nessuna pagina Comunità"; $a->strings["Public postings from users of this site"] = "Messaggi pubblici dagli utenti di questo sito"; $a->strings["Global community page"] = "Pagina Comunità globale"; +$a->strings["Never"] = "Mai"; $a->strings["At post arrival"] = "All'arrivo di un messaggio"; $a->strings["Frequently"] = "Frequentemente"; $a->strings["Hourly"] = "Ogni ora"; $a->strings["Twice daily"] = "Due volte al dì"; $a->strings["Daily"] = "Giornalmente"; +$a->strings["Disabled"] = "Disabilitato"; $a->strings["Users, Global Contacts"] = "Utenti, Contatti Globali"; $a->strings["Users, Global Contacts/fallback"] = "Utenti, Contatti Globali/fallback"; -$a->strings["One month"] = "Un meso"; +$a->strings["One month"] = "Un mese"; $a->strings["Three months"] = "Tre mesi"; $a->strings["Half a year"] = "Sei mesi"; $a->strings["One year"] = "Un anno"; @@ -512,8 +300,8 @@ $a->strings["Block public"] = "Blocca pagine pubbliche"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."; $a->strings["Force publish"] = "Forza publicazione"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."; -$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."; +$a->strings["Global directory URL"] = "URL della directory globale"; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; $a->strings["Allow threaded items"] = "Permetti commenti nidificati"; $a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito."; $a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti"; @@ -562,6 +350,8 @@ $a->strings["Maximum Load Average (Frontend)"] = "Media Massimo Carico (Frontend $a->strings["Maximum system load before the frontend quits service - default 50."] = "Massimo carico di sistema prima che il frontend fermi il servizio - default 50."; $a->strings["Periodical check of global contacts"] = "Check periodico dei contatti globali"; $a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server."; +$a->strings["Days between requery"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; $a->strings["Discover contacts from other servers"] = "Trova contatti dagli altri server"; $a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"."; $a->strings["Timeframe for fetching global contacts"] = "Termine per il recupero contatti globali"; @@ -632,9 +422,12 @@ $a->strings["select all"] = "seleziona tutti"; $a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; $a->strings["User waiting for permanent deletion"] = "Utente in attesa di cancellazione definitiva"; $a->strings["Request date"] = "Data richiesta"; +$a->strings["Name"] = "Nome"; $a->strings["Email"] = "Email"; $a->strings["No registrations."] = "Nessuna registrazione."; $a->strings["Deny"] = "Nega"; +$a->strings["Block"] = "Blocca"; +$a->strings["Unblock"] = "Sblocca"; $a->strings["Site admin"] = "Amministrazione sito"; $a->strings["Account expired"] = "Account scaduto"; $a->strings["New User"] = "Nuovo Utente"; @@ -654,6 +447,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; $a->strings["Disable"] = "Disabilita"; $a->strings["Enable"] = "Abilita"; $a->strings["Toggle"] = "Inverti"; +$a->strings["Settings"] = "Impostazioni"; $a->strings["Author: "] = "Autore: "; $a->strings["Maintainer: "] = "Manutentore: "; $a->strings["No themes found."] = "Nessun tema trovato."; @@ -666,39 +460,83 @@ $a->strings["Enable Debugging"] = "Abilita Debugging"; $a->strings["Log file"] = "File di Log"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."; $a->strings["Log level"] = "Livello di Log"; +$a->strings["Update now"] = "Aggiorna adesso"; $a->strings["Close"] = "Chiudi"; $a->strings["FTP Host"] = "Indirizzo FTP"; $a->strings["FTP Path"] = "Percorso FTP"; $a->strings["FTP User"] = "Utente FTP"; $a->strings["FTP Password"] = "Pasword FTP"; -$a->strings["Search Results For: %s"] = "Risultato della ricerca per: %s"; -$a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["Saved Searches"] = "Ricerche salvate"; -$a->strings["add"] = "aggiungi"; -$a->strings["Commented Order"] = "Ordina per commento"; -$a->strings["Sort by Comment Date"] = "Ordina per data commento"; -$a->strings["Posted Order"] = "Ordina per invio"; -$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; -$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; -$a->strings["New"] = "Nuovo"; -$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; -$a->strings["Shared Links"] = "Links condivisi"; -$a->strings["Interesting Links"] = "Link Interessanti"; -$a->strings["Starred"] = "Preferiti"; -$a->strings["Favourite Posts"] = "Messaggi preferiti"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", - 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; +$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; +$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; +$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; +$a->strings["Message sent."] = "Messaggio inviato."; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; +$a->strings["Message deleted."] = "Messaggio eliminato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +$a->strings["Send Private Message"] = "Invia un messaggio privato"; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["Your message:"] = "Il tuo messaggio:"; +$a->strings["Upload photo"] = "Carica foto"; +$a->strings["Insert web link"] = "Inserisci link"; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; +$a->strings["You and %s"] = "Tu e %s"; +$a->strings["%s and You"] = "%s e Tu"; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["%d message"] = array( + 0 => "%d messaggio", + 1 => "%d messaggi", ); -$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; -$a->strings["No such group"] = "Nessun gruppo"; -$a->strings["Group is empty"] = "Il gruppo è vuoto"; -$a->strings["Group: %s"] = "Gruppo: %s"; -$a->strings["Contact: %s"] = "Contatto: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; -$a->strings["Invalid contact."] = "Contatto non valido."; -$a->strings["Friends of %s"] = "Amici di %s"; -$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$a->strings["Message not available."] = "Messaggio non disponibile."; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["Item not found"] = "Oggetto non trovato"; +$a->strings["Edit post"] = "Modifica messaggio"; +$a->strings["Save"] = "Salva"; +$a->strings["upload photo"] = "carica foto"; +$a->strings["Attach file"] = "Allega file"; +$a->strings["attach file"] = "allega file"; +$a->strings["web link"] = "link web"; +$a->strings["Insert video link"] = "Inserire collegamento video"; +$a->strings["video link"] = "link video"; +$a->strings["Insert audio link"] = "Inserisci collegamento audio"; +$a->strings["audio link"] = "link audio"; +$a->strings["Set your location"] = "La tua posizione"; +$a->strings["set location"] = "posizione"; +$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; +$a->strings["clear location"] = "canc. pos."; +$a->strings["Permission settings"] = "Impostazioni permessi"; +$a->strings["CC: email addresses"] = "CC: indirizzi email"; +$a->strings["Public post"] = "Messaggio pubblico"; +$a->strings["Set title"] = "Scegli un titolo"; +$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; +$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; +$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; +$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; +$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; +$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; +$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; +$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; +$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; +$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; +$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; +$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; $a->strings["Event can not end before it has started."] = "Un evento non puo' finire prima di iniziare."; $a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; $a->strings["l, F j"] = "l j F"; @@ -718,134 +556,306 @@ $a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di ch $a->strings["Description:"] = "Descrizione:"; $a->strings["Title:"] = "Titolo:"; $a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["Select"] = "Seleziona"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["%s from %s"] = "%s da %s"; -$a->strings["View in context"] = "Vedi nel contesto"; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", -); -$a->strings["comment"] = array( - 0 => "", - 1 => "commento", -); -$a->strings["show more"] = "mostra di più"; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; -$a->strings["like"] = "mi piace"; -$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi questo"; -$a->strings["share"] = "condividi"; -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Comment"] = "Commento"; -$a->strings["Bold"] = "Grassetto"; -$a->strings["Italic"] = "Corsivo"; -$a->strings["Underline"] = "Sottolineato"; -$a->strings["Quote"] = "Citazione"; -$a->strings["Code"] = "Codice"; -$a->strings["Image"] = "Immagine"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Edit"] = "Modifica"; -$a->strings["add star"] = "aggiungi a speciali"; -$a->strings["remove star"] = "rimuovi da speciali"; -$a->strings["toggle star status"] = "Inverti stato preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["add tag"] = "aggiungi tag"; -$a->strings["save to folder"] = "salva nella cartella"; -$a->strings["to"] = "a"; -$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; -$a->strings["Remove My Account"] = "Rimuovi il mio account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; -$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; -$a->strings["Could not create table."] = "Impossibile creare le tabelle."; -$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Database già in uso."; -$a->strings["System check"] = "Controllo sistema"; -$a->strings["Check again"] = "Controlla ancora"; -$a->strings["Database connection"] = "Connessione al database"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; -$a->strings["Database Server Name"] = "Nome del database server"; -$a->strings["Database Login Name"] = "Nome utente database"; -$a->strings["Database Login Password"] = "Password utente database"; -$a->strings["Database Name"] = "Nome database"; -$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; -$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; -$a->strings["Site settings"] = "Impostazioni sito"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; -$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. See 'Activating scheduled tasks'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; -$a->strings["Command line PHP"] = "PHP da riga di comando"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"; -$a->strings["Found PHP version: "] = "Versione PHP:"; -$a->strings["PHP cli binary"] = "Binario PHP cli"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; -$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"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; -$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; -$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; -$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; -$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; -$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; -$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; -$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; -$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; -$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."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; -$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."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; -$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; -$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."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; -$a->strings["

What next

"] = "

Cosa fare ora

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; +$a->strings["Photos"] = "Foto"; +$a->strings["Files"] = "File"; +$a->strings["Welcome to %s"] = "Benvenuto su %s"; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; $a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine."; $a->strings["No recipient."] = "Nessun destinatario."; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; +$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; +$a->strings["Edit contact"] = "Modifca contatto"; +$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; +$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; +$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; +$a->strings["the bugtracker at github"] = "il bugtracker su github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; +$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; +$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; +$a->strings["Remove My Account"] = "Rimuovi il mio account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Invalid request."] = "Richiesta non valida."; +$a->strings["Image exceeds size limit of %s"] = "La dimensione dell'immagine supera il limite di %s"; +$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; +$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; +$a->strings["Please login to continue."] = "Effettua il login per continuare."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +$a->strings["Contact Photos"] = "Foto dei contatti"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["everybody"] = "tutti"; +$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Album not found."] = "Album non trovato."; +$a->strings["Delete Album"] = "Rimuovi album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; +$a->strings["Delete Photo"] = "Rimuovi foto"; +$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; +$a->strings["a photo"] = "una foto"; +$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; +$a->strings["Upload Photos"] = "Carica foto"; +$a->strings["New album name: "] = "Nome nuovo album: "; +$a->strings["or existing album name: "] = "o nome di un album esistente: "; +$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Show to Groups"] = "Mostra ai gruppi"; +$a->strings["Show to Contacts"] = "Mostra ai contatti"; +$a->strings["Private Photo"] = "Foto privata"; +$a->strings["Public Photo"] = "Foto pubblica"; +$a->strings["Edit Album"] = "Modifica album"; +$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; +$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; +$a->strings["View Photo"] = "Vedi foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; +$a->strings["Photo not available"] = "Foto non disponibile"; +$a->strings["View photo"] = "Vedi foto"; +$a->strings["Edit photo"] = "Modifica foto"; +$a->strings["Use as profile photo"] = "Usa come foto del profilo"; +$a->strings["View Full Size"] = "Vedi dimensione intera"; +$a->strings["Tags: "] = "Tag: "; +$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; +$a->strings["New album name"] = "Nuovo nome dell'album"; +$a->strings["Caption"] = "Titolo"; +$a->strings["Add a Tag"] = "Aggiungi tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Non ruotare"; +$a->strings["Rotate CW (right)"] = "Ruota a destra"; +$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; +$a->strings["Private photo"] = "Foto privata"; +$a->strings["Public photo"] = "Foto pubblica"; +$a->strings["Share"] = "Condividi"; +$a->strings["View Album"] = "Sfoglia l'album"; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Si è verificato un errore inviando l'email. I dettagli del tuo account:
login: %s
password: %s

Puoi cambiare la password dopo il login."; +$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; +$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; +$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; +$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; +$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; +$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; +$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; +$a->strings["New Password:"] = "Nuova password:"; +$a->strings["Leave empty for an auto generated password."] = "Lascia vuoto per generare automaticamente una password."; +$a->strings["Confirm:"] = "Conferma:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; +$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; +$a->strings["Register"] = "Registrati"; +$a->strings["Import"] = "Importa"; +$a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; +$a->strings["No valid account found."] = "Nessun account valido trovato."; +$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; +$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; +$a->strings["Password Reset"] = "Reimpostazione password"; +$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; +$a->strings["Your new password is"] = "La tua nuova password è"; +$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +$a->strings["click here to login"] = "clicca qui per entrare"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; +$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; +$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; +$a->strings["Nickname or Email: "] = "Nome utente o email: "; +$a->strings["Reset"] = "Reimposta"; +$a->strings["System down for maintenance"] = "Sistema in manutenzione"; +$a->strings["Item not available."] = "Oggetto non disponibile."; +$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; $a->strings["Help:"] = "Guida:"; $a->strings["Help"] = "Guida"; -$a->strings["Not Found"] = "Non trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; -$a->strings["Welcome to %s"] = "Benvenuto su %s"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"; -$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; -$a->strings["File exceeds size limit of %s"] = "Il file supera la dimensione massima di %s"; -$a->strings["File upload failed."] = "Caricamento del file non riuscito."; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "è interessato a:"; -$a->strings["link"] = "collegamento"; -$a->strings["Not available."] = "Non disponibile."; -$a->strings["Community"] = "Comunità"; +$a->strings["%d contact edited."] = array( + 0 => "%d contatto modificato", + 1 => "%d contatti modificati", +); +$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; +$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; +$a->strings["Contact updated."] = "Contatto aggiornato."; +$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; +$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; +$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; +$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; +$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; +$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; +$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; +$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; +$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; +$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; +$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; +$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; +$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"; +$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; +$a->strings["Suggest friends"] = "Suggerisci amici"; +$a->strings["Network type: %s"] = "Tipo di rete: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +$a->strings["View all contacts"] = "Vedi tutti i contatti"; +$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; +$a->strings["Unignore"] = "Non ignorare"; +$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; +$a->strings["Unarchive"] = "Dearchivia"; +$a->strings["Archive"] = "Archivia"; +$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; +$a->strings["Repair"] = "Ripara"; +$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; +$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; +$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; +$a->strings["Fetch information"] = "Recupera informazioni"; +$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; +$a->strings["Contact Editor"] = "Editor dei Contatti"; +$a->strings["Profile Visibility"] = "Visibilità del profilo"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; +$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; +$a->strings["Edit contact notes"] = "Modifica note contatto"; +$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; +$a->strings["Ignore contact"] = "Ignora il contatto"; +$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; +$a->strings["View conversations"] = "Vedi conversazioni"; +$a->strings["Delete contact"] = "Rimuovi contatto"; +$a->strings["Last update:"] = "Ultimo aggiornamento:"; +$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; +$a->strings["Currently blocked"] = "Bloccato"; +$a->strings["Currently ignored"] = "Ignorato"; +$a->strings["Currently archived"] = "Al momento archiviato"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; +$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi"; +$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto"; +$a->strings["Blacklisted keywords"] = "Parole chiave in blacklist"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato"; +$a->strings["Profile URL"] = "URL Profilo"; +$a->strings["Suggestions"] = "Suggerimenti"; +$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; +$a->strings["All Contacts"] = "Tutti i contatti"; +$a->strings["Show all contacts"] = "Mostra tutti i contatti"; +$a->strings["Unblocked"] = "Sbloccato"; +$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; +$a->strings["Blocked"] = "Bloccato"; +$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; +$a->strings["Ignored"] = "Ignorato"; +$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; +$a->strings["Archived"] = "Achiviato"; +$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; +$a->strings["Hidden"] = "Nascosto"; +$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; +$a->strings["Contacts"] = "Contatti"; +$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; +$a->strings["Finding: "] = "Ricerca: "; +$a->strings["Find"] = "Trova"; +$a->strings["Update"] = "Aggiorna"; +$a->strings["Mutual Friendship"] = "Amicizia reciproca"; +$a->strings["is a fan of yours"] = "è un tuo fan"; +$a->strings["you are a fan of"] = "sei un fan di"; +$a->strings["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?"; +$a->strings["Delete Video"] = "Rimuovi video"; +$a->strings["No videos selected"] = "Nessun video selezionato"; +$a->strings["Recent Videos"] = "Video Recenti"; +$a->strings["Upload New Videos"] = "Carica Nuovo Video"; +$a->strings["Common Friends"] = "Amici in comune"; +$a->strings["No contacts in common."] = "Nessun contatto in comune."; +$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; +$a->strings["Contact added"] = "Contatto aggiunto"; +$a->strings["Login"] = "Accedi"; +$a->strings["The post was created"] = "Il messaggio è stato creato"; +$a->strings["Move account"] = "Muovi account"; +$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; +$a->strings["Account file"] = "File account"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["Friends of %s"] = "Amici di %s"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$a->strings["Tag removed"] = "Tag rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi il tag"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; +$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; +$a->strings["Getting Started"] = "Come Iniziare"; +$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; +$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; +$a->strings["Profile"] = "Profilo"; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; +$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; +$a->strings["Profile Keywords"] = "Parole chiave del profilo"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; +$a->strings["Connecting"] = "Collegarsi"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; +$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; +$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; +$a->strings["Finding New People"] = "Trova nuove persone"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; +$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; +$a->strings["Getting Help"] = "Ottenere Aiuto"; +$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["Search"] = "Cerca"; $a->strings["No results."] = "Nessun risultato."; -$a->strings["everybody"] = "tutti"; +$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; +$a->strings["Search results for: %s"] = "Risultato della ricerca per: %s"; +$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; +$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; +$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; +$a->strings["Send invitations"] = "Invia inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; $a->strings["Additional features"] = "Funzionalità aggiuntive"; $a->strings["Display"] = "Visualizzazione"; $a->strings["Social Networks"] = "Social Networks"; @@ -891,8 +901,10 @@ $a->strings["Disable intelligent shortening"] = "Disabilita accorciamento intell $a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica."; $a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Segui automanticamente chiunque da GNU Social (OStatus) ti segua o ti menzioni"; $a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto."; +$a->strings["Your legacy GNU Social account"] = ""; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["Repair OStatus subscriptions"] = ""; $a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; -$a->strings["Diaspora"] = "Diaspora"; $a->strings["enabled"] = "abilitato"; $a->strings["disabled"] = "disabilitato"; $a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; @@ -961,8 +973,6 @@ $a->strings["Expire photos:"] = "Fai scadere le foto:"; $a->strings["Only expire posts by others:"] = "Fai scadere solo i post degli altri:"; $a->strings["Account Settings"] = "Impostazioni account"; $a->strings["Password Settings"] = "Impostazioni password"; -$a->strings["New Password:"] = "Nuova password:"; -$a->strings["Confirm:"] = "Conferma:"; $a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password"; $a->strings["Current Password:"] = "Password Attuale:"; $a->strings["Your current password to confirm the changes"] = "La tua password attuale per confermare le modifiche"; @@ -978,8 +988,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di am $a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; $a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi"; $a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -$a->strings["Show to Groups"] = "Mostra ai gruppi"; -$a->strings["Show to Contacts"] = "Mostra ai contatti"; $a->strings["Default Private Post"] = "Default Post Privato"; $a->strings["Default Public Post"] = "Default Post Pubblico"; $a->strings["Default Permissions for New Posts"] = "Permessi predefiniti per i nuovi post"; @@ -1007,94 +1015,10 @@ $a->strings["Change the behaviour of this account for special situations"] = "Mo $a->strings["Relocate"] = "Trasloca"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone."; $a->strings["Resend relocate message to contacts"] = "Reinvia il messaggio di trasloco"; -$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", - 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; -$a->strings["Profile unavailable."] = "Profilo non disponibile."; -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; -$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Invalid email address."] = "Indirizzo email non valido."; -$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; -$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; -$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; -$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; -$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; -$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; -$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; -$a->strings["Confirm"] = "Conferma"; -$a->strings["Hide this contact"] = "Nascondi questo contatto"; -$a->strings["Welcome home %s."] = "Bentornato a casa %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; -$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Si è verificato un errore inviando l'email. I dettagli del tuo account:
login: %s
password: %s

Puoi cambiare la password dopo il login."; -$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; -$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; -$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; -$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; -$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; -$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; -$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; -$a->strings["Leave empty for an auto generated password."] = "Lascia vuoto per generare automaticamente una password."; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; -$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; -$a->strings["Register"] = "Registrati"; -$a->strings["Import"] = "Importa"; -$a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; -$a->strings["System down for maintenance"] = "Sistema in manutenzione"; -$a->strings["Search"] = "Cerca"; -$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; -$a->strings["Search results for: %s"] = "Risultato della ricerca per: %s"; -$a->strings["Global Directory"] = "Elenco globale"; -$a->strings["Find on this site"] = "Cerca nel sito"; -$a->strings["Site Directory"] = "Elenco del sito"; -$a->strings["Age: "] = "Età : "; -$a->strings["Gender: "] = "Genere:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; -$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; -$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; -$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; -$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; -$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; -$a->strings["Potential Delegates"] = "Delegati Potenziali"; -$a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessuna voce."; -$a->strings["Common Friends"] = "Amici in comune"; -$a->strings["No contacts in common."] = "Nessun contatto in comune."; -$a->strings["Export account"] = "Esporta account"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; -$a->strings["Export all"] = "Esporta tutto"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; -$a->strings["Mood"] = "Umore"; -$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; -$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; -$a->strings["Friend Suggestions"] = "Contatti suggeriti"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; -$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; +$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; +$a->strings["People Search - %s"] = "Cerca persone - %s"; +$a->strings["Connect"] = "Connetti"; +$a->strings["No matches"] = "Nessun risultato"; $a->strings["Profile deleted."] = "Profilo elminato."; $a->strings["Profile-"] = "Profilo-"; $a->strings["New profile created."] = "Il nuovo profilo è stato creato."; @@ -1169,47 +1093,78 @@ $a->strings["Love/romance"] = "Amore"; $a->strings["Work/employment"] = "Lavoro/impiego"; $a->strings["School/education"] = "Scuola/educazione"; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet."; +$a->strings["Age: "] = "Età : "; $a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili"; $a->strings["Change profile photo"] = "Cambia la foto del profilo"; $a->strings["Create New Profile"] = "Crea un nuovo profilo"; $a->strings["Profile Image"] = "Immagine del Profilo"; $a->strings["visible to everybody"] = "visibile a tutti"; $a->strings["Edit visibility"] = "Modifica visibilità"; -$a->strings["Item not found"] = "Oggetto non trovato"; -$a->strings["Edit post"] = "Modifica messaggio"; -$a->strings["upload photo"] = "carica foto"; -$a->strings["Attach file"] = "Allega file"; -$a->strings["attach file"] = "allega file"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserire collegamento video"; -$a->strings["video link"] = "link video"; -$a->strings["Insert audio link"] = "Inserisci collegamento audio"; -$a->strings["audio link"] = "link audio"; -$a->strings["Set your location"] = "La tua posizione"; -$a->strings["set location"] = "posizione"; -$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; -$a->strings["clear location"] = "canc. pos."; -$a->strings["Permission settings"] = "Impostazioni permessi"; -$a->strings["CC: email addresses"] = "CC: indirizzi email"; -$a->strings["Public post"] = "Messaggio pubblico"; -$a->strings["Set title"] = "Scegli un titolo"; -$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; -$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; -$a->strings["the bugtracker at github"] = "il bugtracker su github"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; -$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; -$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; -$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; -$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; -$a->strings["Please login to continue."] = "Effettua il login per continuare."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["link"] = "collegamento"; +$a->strings["Export account"] = "Esporta account"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; +$a->strings["Export all"] = "Esporta tutto"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; +$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; +$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; +$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; +$a->strings["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Clear notifications"] = "Pulisci le notifiche"; +$a->strings["Not available."] = "Non disponibile."; +$a->strings["Community"] = "Comunità"; +$a->strings["Save to Folder:"] = "Salva nella Cartella:"; +$a->strings["- select -"] = "- seleziona -"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"; +$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; +$a->strings["File exceeds size limit of %s"] = "Il file supera la dimensione massima di %s"; +$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; +$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +$a->strings["Visible To"] = "Visibile a"; +$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; +$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; +$a->strings["Friend Suggestions"] = "Contatti suggeriti"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; +$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; +$a->strings["Access denied."] = "Accesso negato."; +$a->strings["Resubsribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = ""; +$a->strings["Keep this window open until done."] = ""; +$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; +$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; +$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; +$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; +$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; +$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; +$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; +$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; +$a->strings["Potential Delegates"] = "Delegati Potenziali"; +$a->strings["Add"] = "Aggiungi"; +$a->strings["No entries."] = "Nessuna voce."; +$a->strings["No contacts."] = "Nessun contatto."; +$a->strings["View Contacts"] = "Visualizza i contatti"; $a->strings["Personal Notes"] = "Note personali"; +$a->strings["Poke/Prod"] = "Tocca/Pungola"; +$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; +$a->strings["Make this post private"] = "Rendi questo post privato"; +$a->strings["Global Directory"] = "Elenco globale"; +$a->strings["Find on this site"] = "Cerca nel sito"; +$a->strings["Site Directory"] = "Elenco del sito"; +$a->strings["Gender: "] = "Genere:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; +$a->strings["Subsribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["success"] = ""; +$a->strings["failed"] = ""; $a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; $a->strings["Time Conversion"] = "Conversione Ora"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."; @@ -1217,87 +1172,226 @@ $a->strings["UTC time: %s"] = "Ora UTC: %s"; $a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; $a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; $a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; -$a->strings["Poke/Prod"] = "Tocca/Pungola"; -$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; -$a->strings["Recipient"] = "Destinatario"; -$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; -$a->strings["Make this post private"] = "Rendi questo post privato"; -$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; -$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; -$a->strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; -$a->strings["Send invitations"] = "Invia inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["Photo Albums"] = "Album foto"; -$a->strings["Recent Photos"] = "Foto recenti"; -$a->strings["Upload New Photos"] = "Carica nuove foto"; -$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; -$a->strings["Album not found."] = "Album non trovato."; -$a->strings["Delete Album"] = "Rimuovi album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; -$a->strings["Delete Photo"] = "Rimuovi foto"; -$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; -$a->strings["a photo"] = "una foto"; -$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -$a->strings["No photos selected"] = "Nessuna foto selezionata"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; -$a->strings["Upload Photos"] = "Carica foto"; -$a->strings["New album name: "] = "Nome nuovo album: "; -$a->strings["or existing album name: "] = "o nome di un album esistente: "; -$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; -$a->strings["Permissions"] = "Permessi"; -$a->strings["Private Photo"] = "Foto privata"; -$a->strings["Public Photo"] = "Foto pubblica"; -$a->strings["Edit Album"] = "Modifica album"; -$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; -$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; -$a->strings["View Photo"] = "Vedi foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; -$a->strings["Photo not available"] = "Foto non disponibile"; -$a->strings["View photo"] = "Vedi foto"; -$a->strings["Edit photo"] = "Modifica foto"; -$a->strings["Use as profile photo"] = "Usa come foto del profilo"; -$a->strings["View Full Size"] = "Vedi dimensione intera"; -$a->strings["Tags: "] = "Tag: "; -$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; -$a->strings["New album name"] = "Nuovo nome dell'album"; -$a->strings["Caption"] = "Titolo"; -$a->strings["Add a Tag"] = "Aggiungi tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Non ruotare"; -$a->strings["Rotate CW (right)"] = "Ruota a destra"; -$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; -$a->strings["Private photo"] = "Foto privata"; -$a->strings["Public photo"] = "Foto pubblica"; -$a->strings["Share"] = "Condividi"; +$a->strings["Post successful."] = "Inviato!"; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Upload File:"] = "Carica un file:"; +$a->strings["Select a profile:"] = "Seleziona un profilo:"; +$a->strings["Upload"] = "Carica"; +$a->strings["or"] = "o"; +$a->strings["skip this step"] = "salta questo passaggio"; +$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +$a->strings["Crop Image"] = "Ritaglia immagine"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; +$a->strings["Done Editing"] = "Finito"; +$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; +$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; +$a->strings["Could not create table."] = "Impossibile creare le tabelle."; +$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Database già in uso."; +$a->strings["System check"] = "Controllo sistema"; +$a->strings["Check again"] = "Controlla ancora"; +$a->strings["Database connection"] = "Connessione al database"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; +$a->strings["Database Server Name"] = "Nome del database server"; +$a->strings["Database Login Name"] = "Nome utente database"; +$a->strings["Database Login Password"] = "Password utente database"; +$a->strings["Database Name"] = "Nome database"; +$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; +$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; +$a->strings["Site settings"] = "Impostazioni sito"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; +$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. See 'Activating scheduled tasks'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; +$a->strings["Command line PHP"] = "PHP da riga di comando"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"; +$a->strings["Found PHP version: "] = "Versione PHP:"; +$a->strings["PHP cli binary"] = "Binario PHP cli"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; +$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"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; +$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; +$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; +$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; +$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; +$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; +$a->strings["mcrypt PHP module"] = ""; +$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; +$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; +$a->strings["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."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; +$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."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; +$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; +$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."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; +$a->strings["

What next

"] = "

Cosa fare ora

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; $a->strings["Not Extended"] = "Not Extended"; +$a->strings["Group created."] = "Gruppo creato."; +$a->strings["Could not create group."] = "Impossibile creare il gruppo."; +$a->strings["Group not found."] = "Gruppo non trovato."; +$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; +$a->strings["Save Group"] = "Salva gruppo"; +$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; +$a->strings["Group Name: "] = "Nome del gruppo:"; +$a->strings["Group removed."] = "Gruppo rimosso."; +$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; +$a->strings["Group Editor"] = "Modifica gruppo"; +$a->strings["Members"] = "Membri"; +$a->strings["No such group"] = "Nessun gruppo"; +$a->strings["Group is empty"] = "Il gruppo è vuoto"; +$a->strings["Group: %s"] = "Gruppo: %s"; +$a->strings["View in context"] = "Vedi nel contesto"; $a->strings["Account approved."] = "Account approvato."; $a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; $a->strings["Please login."] = "Accedi."; -$a->strings["Move account"] = "Muovi account"; -$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; -$a->strings["Account file"] = "File account"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; -$a->strings["Item not available."] = "Oggetto non disponibile."; -$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; +$a->strings["is interested in:"] = "è interessato a:"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; +$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; +$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; +$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; +$a->strings["Mood"] = "Umore"; +$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; +$a->strings["Search Results For: %s"] = "Risultato della ricerca per: %s"; +$a->strings["add"] = "aggiungi"; +$a->strings["Commented Order"] = "Ordina per commento"; +$a->strings["Sort by Comment Date"] = "Ordina per data commento"; +$a->strings["Posted Order"] = "Ordina per invio"; +$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; +$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; +$a->strings["New"] = "Nuovo"; +$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; +$a->strings["Shared Links"] = "Links condivisi"; +$a->strings["Interesting Links"] = "Link Interessanti"; +$a->strings["Starred"] = "Preferiti"; +$a->strings["Favourite Posts"] = "Messaggi preferiti"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", + 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; +$a->strings["Contact: %s"] = "Contatto: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; +$a->strings["Invalid contact."] = "Contatto non valido."; +$a->strings["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Repair Contact Settings"] = "Ripara il contatto"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; +$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; +$a->strings["No mirroring"] = "Non duplicare"; +$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; +$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; +$a->strings["Refetch contact data"] = "Ricarica dati contatto"; +$a->strings["Account Nickname"] = "Nome utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; +$a->strings["Account URL"] = "URL dell'utente"; +$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; +$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; +$a->strings["Notification Endpoint URL"] = "URL Notifiche"; +$a->strings["Poll/Feed URL"] = "URL Feed"; +$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; +$a->strings["Remote Self"] = "Io remoto"; +$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; +$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; +$a->strings["Your profile page"] = "Pagina del tuo profilo"; +$a->strings["Your contacts"] = "I tuoi contatti"; +$a->strings["Your photos"] = "Le tue foto"; +$a->strings["Your events"] = "I tuoi eventi"; +$a->strings["Personal notes"] = "Note personali"; +$a->strings["Your personal photos"] = "Le tue foto personali"; +$a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Community Profiles"] = "Profili Comunità"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$a->strings["event"] = "l'evento"; +$a->strings["Last photos"] = "Ultime foto"; +$a->strings["Find Friends"] = "Trova Amici"; +$a->strings["Local Directory"] = "Elenco Locale"; +$a->strings["Similar Interests"] = "Interessi simili"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; +$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; +$a->strings["Connect Services"] = "Servizi di conessione"; +$a->strings["don't show"] = "non mostrare"; +$a->strings["show"] = "mostra"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; +$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; +$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; +$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; +$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; +$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; +$a->strings["Set style"] = "Imposta stile"; +$a->strings["Set colour scheme"] = "Imposta schema colori"; +$a->strings["default"] = "default"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Varianti"; +$a->strings["Alignment"] = "Allineamento"; +$a->strings["Left"] = "Sinistra"; +$a->strings["Center"] = "Centrato"; +$a->strings["Color scheme"] = "Schema colori"; +$a->strings["Posts font size"] = "Dimensione caratteri post"; +$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; +$a->strings["Set theme width"] = "Imposta la larghezza del tema"; +$a->strings["Click here to download"] = ""; +$a->strings["Create new pull request"] = ""; +$a->strings["Reload active plugins"] = ""; +$a->strings["Drop contact"] = ""; +$a->strings["Public projects on this node"] = ""; +$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = ""; +$a->strings["Visibility"] = ""; +$a->strings["Create"] = ""; +$a->strings["No pull requests to show"] = ""; +$a->strings["opened by"] = ""; +$a->strings["closed"] = ""; +$a->strings["merged"] = ""; +$a->strings["Projects"] = ""; +$a->strings["add new"] = ""; +$a->strings["delete"] = ""; +$a->strings["Clone this project:"] = ""; +$a->strings["New pull request"] = ""; +$a->strings["Can't show you the diff at the moment. Sorry"] = ""; $a->strings["Delete this item?"] = "Cancellare questo elemento?"; $a->strings["show fewer"] = "mostra di meno"; $a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore."; @@ -1312,40 +1406,6 @@ $a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web " $a->strings["terms of service"] = "condizioni del servizio"; $a->strings["Website Privacy Policy"] = "Politiche di privacy del sito"; $a->strings["privacy policy"] = "politiche di privacy"; -$a->strings["This entry was edited"] = "Questa voce è stata modificata"; -$a->strings["ignore thread"] = "ignora la discussione"; -$a->strings["unignore thread"] = "non ignorare la discussione"; -$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; -$a->strings["ignored"] = "ignorato"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Archiviato in:"; -$a->strings["via"] = "via"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; -$a->strings["The error message was:"] = "Il messaggio riportato era:"; -$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; -$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Find People"] = "Trova persone"; -$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Random Profile"] = "Profilo causale"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Networks"] = "Reti"; -$a->strings["All Networks"] = "Tutte le Reti"; -$a->strings["Saved Folders"] = "Cartelle Salvate"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; $a->strings["General Features"] = "Funzionalità generali"; $a->strings["Multiple Profiles"] = "Profili multipli"; $a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli"; @@ -1380,6 +1440,7 @@ $a->strings["Tagging"] = "Aggiunta tag"; $a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; $a->strings["Post Categories"] = "Cateorie post"; $a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; +$a->strings["Saved Folders"] = "Cartelle Salvate"; $a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; $a->strings["Dislike Posts"] = "Non mi piace"; $a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; @@ -1387,126 +1448,13 @@ $a->strings["Star Posts"] = "Post preferiti"; $a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella"; $a->strings["Mute Post Notifications"] = "Silenzia le notifiche di nuovi post"; $a->strings["Ability to mute notifications for a thread"] = "Permette di silenziare le notifiche di nuovi post in una discussione"; -$a->strings["Connect URL missing."] = "URL di connessione mancante."; -$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; -$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; -$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; -$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; -$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; -$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; -$a->strings["following"] = "segue"; -$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."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["edit"] = "modifica"; -$a->strings["Edit group"] = "Modifica gruppo"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; -$a->strings["Miscellaneous"] = "Varie"; -$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "meno di un secondo fa"; -$a->strings["year"] = "anno"; -$a->strings["years"] = "anni"; -$a->strings["month"] = "mese"; -$a->strings["months"] = "mesi"; -$a->strings["week"] = "settimana"; -$a->strings["weeks"] = "settimane"; -$a->strings["day"] = "giorno"; -$a->strings["days"] = "giorni"; -$a->strings["hour"] = "ora"; -$a->strings["hours"] = "ore"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minuti"; -$a->strings["second"] = "secondo"; -$a->strings["seconds"] = "secondi"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -$a->strings["%s's birthday"] = "Compleanno di %s"; -$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; -$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Message"] = "Messaggio"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Network:"] = "Rete:"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Compleanno:"; -$a->strings["Age:"] = "Età:"; -$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -$a->strings["Religion:"] = "Religione:"; -$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; -$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; -$a->strings["Musical interests:"] = "Interessi musicali:"; -$a->strings["Books, literature:"] = "Libri, letteratura:"; -$a->strings["Television:"] = "Televisione:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; -$a->strings["Love/Romance:"] = "Amore:"; -$a->strings["Work/employment:"] = "Lavoro:"; -$a->strings["School/education:"] = "Scuola:"; -$a->strings["Status"] = "Stato"; -$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Videos"] = "Video"; -$a->strings["Events and Calendar"] = "Eventi e calendario"; -$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; -$a->strings["Post to Email"] = "Invia a email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["show"] = "mostra"; -$a->strings["don't show"] = "non mostrare"; +$a->strings["Logged out."] = "Uscita effettuata."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; +$a->strings["The error message was:"] = "Il messaggio riportato era:"; +$a->strings["Starts:"] = "Inizia:"; +$a->strings["Finishes:"] = "Finisce:"; $a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings["stopped following"] = "tolto dai seguiti"; -$a->strings["Poke"] = "Stuzzica"; -$a->strings["View Status"] = "Visualizza stato"; -$a->strings["View Profile"] = "Visualizza profilo"; -$a->strings["View Photos"] = "Visualizza foto"; -$a->strings["Network Posts"] = "Post della Rete"; -$a->strings["Edit Contact"] = "Modifica contatti"; -$a->strings["Drop Contact"] = "Rimuovi contatto"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Welcome "] = "Ciao"; -$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; -$a->strings["Welcome back "] = "Ciao "; -$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; -$a->strings["event"] = "l'evento"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; -$a->strings["post/item"] = "post/elemento"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; -$a->strings["remove"] = "rimuovi"; -$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; -$a->strings["Follow Thread"] = "Segui la discussione"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; -$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = "e altre %d persone"; -$a->strings["%s like this."] = "Piace a %s."; -$a->strings["%s don't like this."] = "Non piace a %s."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; -$a->strings["permissions"] = "permessi"; -$a->strings["Post to Groups"] = "Invia ai Gruppi"; -$a->strings["Post to Contacts"] = "Invia ai Contatti"; -$a->strings["Private post"] = "Post privato"; -$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings[" on Last.fm"] = "su Last.fm"; $a->strings["newer"] = "nuovi"; $a->strings["older"] = "vecchi"; $a->strings["prev"] = "prec"; @@ -1578,84 +1526,10 @@ $a->strings["bytes"] = "bytes"; $a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; $a->strings["View on separate page"] = "Vedi in una pagina separata"; $a->strings["view on separate page"] = "vedi in una pagina separata"; -$a->strings["default"] = "default"; $a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; $a->strings["activity"] = "attività"; $a->strings["post"] = "messaggio"; $a->strings["Item filed"] = "Messaggio salvato"; -$a->strings["Image/photo"] = "Immagine/foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Encrypted content"] = "Contenuto criptato"; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings["noreply"] = "nessuna risposta"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; -$a->strings["Block immediately"] = "Blocca immediatamente"; -$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; -$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; -$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; -$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; -$a->strings["Weekly"] = "Settimanalmente"; -$a->strings["Monthly"] = "Mensilmente"; -$a->strings["OStatus"] = "Ostatus"; -$a->strings["RSS/Atom"] = "RSS / Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Connettore Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$a->strings["Redmatrix"] = "Redmatrix"; -$a->strings[" on Last.fm"] = "su Last.fm"; -$a->strings["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; -$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; -$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; -$a->strings["End this session"] = "Finisci questa sessione"; -$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; -$a->strings["Your profile page"] = "Pagina del tuo profilo"; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Your videos"] = "I tuoi video"; -$a->strings["Your events"] = "I tuoi eventi"; -$a->strings["Personal notes"] = "Note personali"; -$a->strings["Your personal notes"] = "Le tue note personali"; -$a->strings["Sign in"] = "Entra"; -$a->strings["Home Page"] = "Home Page"; -$a->strings["Create an account"] = "Crea un account"; -$a->strings["Help and documentation"] = "Guida e documentazione"; -$a->strings["Apps"] = "Applicazioni"; -$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; -$a->strings["Search site content"] = "Cerca nel contenuto del sito"; -$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; -$a->strings["Conversations on the network"] = "Conversazioni nella rete"; -$a->strings["Directory"] = "Elenco"; -$a->strings["People directory"] = "Elenco delle persone"; -$a->strings["Information"] = "Informazioni"; -$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica"; -$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; -$a->strings["Network Reset"] = "Reset pagina Rete"; -$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro"; -$a->strings["Friend Requests"] = "Richieste di amicizia"; -$a->strings["See all notifications"] = "Vedi tutte le notifiche"; -$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; -$a->strings["Private mail"] = "Posta privata"; -$a->strings["Inbox"] = "In arrivo"; -$a->strings["Outbox"] = "Inviati"; -$a->strings["Manage"] = "Gestisci"; -$a->strings["Manage other pages"] = "Gestisci altre pagine"; -$a->strings["Account settings"] = "Parametri account"; -$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; -$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; -$a->strings["Site setup and configuration"] = "Configurazione del sito"; -$a->strings["Navigation"] = "Navigazione"; -$a->strings["Site map"] = "Mappa del sito"; $a->strings["User not found."] = "Utente non trovato."; $a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato"; $a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato"; @@ -1665,29 +1539,66 @@ $a->strings["There is no conversation with this id."] = "Non c'è nessuna conver $a->strings["Invalid item."] = "Elemento non valido."; $a->strings["Invalid action. "] = "Azione non valida."; $a->strings["DB error"] = "Errore database"; -$a->strings["An invitation is required."] = "E' richiesto un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; -$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Please use a shorter name."] = "Usa un nome più corto."; -$a->strings["Name too short."] = "Il nome è troppo corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; -$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; -$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"."; -$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; -$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; -$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; -$a->strings["Friends"] = "Amici"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; -$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; -$a->strings["Attachments:"] = "Allegati:"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["%s's birthday"] = "Compleanno di %s"; +$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; $a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; $a->strings["Archives"] = "Archivi"; +$a->strings["(no subject)"] = "(nessun oggetto)"; +$a->strings["noreply"] = "nessuna risposta"; +$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; +$a->strings["Edit profile"] = "Modifica il profilo"; +$a->strings["Message"] = "Messaggio"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["Network:"] = "Rete:"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Birthday Reminders"] = "Promemoria compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["Age:"] = "Età:"; +$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +$a->strings["Religion:"] = "Religione:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; +$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; +$a->strings["Musical interests:"] = "Interessi musicali:"; +$a->strings["Books, literature:"] = "Libri, letteratura:"; +$a->strings["Television:"] = "Televisione:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; +$a->strings["Love/Romance:"] = "Amore:"; +$a->strings["Work/employment:"] = "Lavoro:"; +$a->strings["School/education:"] = "Scuola:"; +$a->strings["Status"] = "Stato"; +$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["Videos"] = "Video"; +$a->strings["Events and Calendar"] = "Eventi e calendario"; +$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; +$a->strings["Connect URL missing."] = "URL di connessione mancante."; +$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; +$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; +$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; +$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; +$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; +$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; +$a->strings["following"] = "segue"; +$a->strings["Welcome "] = "Ciao"; +$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; +$a->strings["Welcome back "] = "Ciao "; +$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; $a->strings["Male"] = "Maschio"; $a->strings["Female"] = "Femmina"; $a->strings["Currently Male"] = "Al momento maschio"; @@ -1724,6 +1635,7 @@ $a->strings["Infatuated"] = "infatuato/a"; $a->strings["Dating"] = "Disponibile a un incontro"; $a->strings["Unfaithful"] = "Infedele"; $a->strings["Sex Addict"] = "Sesso-dipendente"; +$a->strings["Friends"] = "Amici"; $a->strings["Friends/Benefits"] = "Amici con benefici"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Impegnato"; @@ -1745,6 +1657,121 @@ $a->strings["Uncertain"] = "Incerto"; $a->strings["It's complicated"] = "E' complicato"; $a->strings["Don't care"] = "Non interessa"; $a->strings["Ask me"] = "Chiedimelo"; +$a->strings["Error decoding account file"] = "Errore decodificando il file account"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; +$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; +$a->strings["User creation error"] = "Errore creando l'utente"; +$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contatto non importato", + 1 => "%d contatti non importati", +); +$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; +$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; +$a->strings["post/item"] = "post/elemento"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; +$a->strings["remove"] = "rimuovi"; +$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; +$a->strings["Follow Thread"] = "Segui la discussione"; +$a->strings["View Status"] = "Visualizza stato"; +$a->strings["View Profile"] = "Visualizza profilo"; +$a->strings["View Photos"] = "Visualizza foto"; +$a->strings["Network Posts"] = "Post della Rete"; +$a->strings["Edit Contact"] = "Modifica contatti"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$a->strings["Poke"] = "Stuzzica"; +$a->strings["%s likes this."] = "Piace a %s."; +$a->strings["%s doesn't like this."] = "Non piace a %s."; +$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; +$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = "e altre %d persone"; +$a->strings["%s like this."] = "Piace a %s."; +$a->strings["%s don't like this."] = "Non piace a %s."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; +$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Where are you right now?"] = "Dove sei ora?"; +$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; +$a->strings["permissions"] = "permessi"; +$a->strings["Post to Groups"] = "Invia ai Gruppi"; +$a->strings["Post to Contacts"] = "Invia ai Contatti"; +$a->strings["Private post"] = "Post privato"; +$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; +$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Find People"] = "Trova persone"; +$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; +$a->strings["Connect/Follow"] = "Connetti/segui"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; +$a->strings["Random Profile"] = "Profilo causale"; +$a->strings["Networks"] = "Reti"; +$a->strings["All Networks"] = "Tutte le Reti"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Categories"] = "Categorie"; +$a->strings["End this session"] = "Finisci questa sessione"; +$a->strings["Your videos"] = "I tuoi video"; +$a->strings["Your personal notes"] = "Le tue note personali"; +$a->strings["Sign in"] = "Entra"; +$a->strings["Home Page"] = "Home Page"; +$a->strings["Create an account"] = "Crea un account"; +$a->strings["Help and documentation"] = "Guida e documentazione"; +$a->strings["Apps"] = "Applicazioni"; +$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; +$a->strings["Search site content"] = "Cerca nel contenuto del sito"; +$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; +$a->strings["Conversations on the network"] = "Conversazioni nella rete"; +$a->strings["Directory"] = "Elenco"; +$a->strings["People directory"] = "Elenco delle persone"; +$a->strings["Information"] = "Informazioni"; +$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica"; +$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; +$a->strings["Network Reset"] = "Reset pagina Rete"; +$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro"; +$a->strings["Friend Requests"] = "Richieste di amicizia"; +$a->strings["See all notifications"] = "Vedi tutte le notifiche"; +$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; +$a->strings["Private mail"] = "Posta privata"; +$a->strings["Inbox"] = "In arrivo"; +$a->strings["Outbox"] = "Inviati"; +$a->strings["Manage"] = "Gestisci"; +$a->strings["Manage other pages"] = "Gestisci altre pagine"; +$a->strings["Account settings"] = "Parametri account"; +$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; +$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; +$a->strings["Site setup and configuration"] = "Configurazione del sito"; +$a->strings["Navigation"] = "Navigazione"; +$a->strings["Site map"] = "Mappa del sito"; +$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; +$a->strings["Block immediately"] = "Blocca immediatamente"; +$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; +$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; +$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; +$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; +$a->strings["Weekly"] = "Settimanalmente"; +$a->strings["Monthly"] = "Mensilmente"; +$a->strings["OStatus"] = "Ostatus"; +$a->strings["RSS/Atom"] = "RSS / Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Connettore Diaspora"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = "App.net"; +$a->strings["Redmatrix"] = "Redmatrix"; $a->strings["Friendica Notification"] = "Notifica Friendica"; $a->strings["Thank You,"] = "Grazie,"; $a->strings["%s Administrator"] = "Amministratore %s"; @@ -1802,55 +1829,64 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "H $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s."; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)"; $a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta."; +$a->strings["An invitation is required."] = "E' richiesto un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; +$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Please use a shorter name."] = "Usa un nome più corto."; +$a->strings["Name too short."] = "Il nome è troppo corto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; +$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; +$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"."; +$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; +$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; +$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; +$a->strings["Post to Email"] = "Invia a email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["Image/photo"] = "Immagine/foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; +$a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Encrypted content"] = "Contenuto criptato"; $a->strings["Embedded content"] = "Contenuto incorporato"; $a->strings["Embedding disabled"] = "Embed disabilitato"; -$a->strings["Error decoding account file"] = "Errore decodificando il file account"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; -$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; -$a->strings["User creation error"] = "Errore creando l'utente"; -$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contatto non importato", - 1 => "%d contatti non importati", -); -$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; -$a->strings["toggle mobile"] = "commuta tema mobile"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; -$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; -$a->strings["Set theme width"] = "Imposta la larghezza del tema"; -$a->strings["Color scheme"] = "Schema colori"; -$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; -$a->strings["Set colour scheme"] = "Imposta schema colori"; -$a->strings["Alignment"] = "Allineamento"; -$a->strings["Left"] = "Sinistra"; -$a->strings["Center"] = "Centrato"; -$a->strings["Posts font size"] = "Dimensione caratteri post"; -$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; -$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; -$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; -$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; -$a->strings["Community Pages"] = "Pagine Comunitarie"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Profili Comunità"; -$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$a->strings["Connect Services"] = "Servizi di conessione"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Last photos"] = "Ultime foto"; -$a->strings["Last likes"] = "Ultimi \"mi piace\""; -$a->strings["Your contacts"] = "I tuoi contatti"; -$a->strings["Your personal photos"] = "Le tue foto personali"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; -$a->strings["Set style"] = "Imposta stile"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Varianti"; +$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."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["edit"] = "modifica"; +$a->strings["Edit group"] = "Modifica gruppo"; +$a->strings["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; +$a->strings["stopped following"] = "tolto dai seguiti"; +$a->strings["Drop Contact"] = "Rimuovi contatto"; +$a->strings["Miscellaneous"] = "Varie"; +$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; +$a->strings["never"] = "mai"; +$a->strings["less than a second ago"] = "meno di un secondo fa"; +$a->strings["year"] = "anno"; +$a->strings["years"] = "anni"; +$a->strings["month"] = "mese"; +$a->strings["months"] = "mesi"; +$a->strings["week"] = "settimana"; +$a->strings["weeks"] = "settimane"; +$a->strings["day"] = "giorno"; +$a->strings["days"] = "giorni"; +$a->strings["hour"] = "ora"; +$a->strings["hours"] = "ore"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minuti"; +$a->strings["second"] = "secondo"; +$a->strings["seconds"] = "secondi"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; +$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; From 1f0b759e2f6df7af4bc55571168bad3e3acbcd76 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 7 Oct 2015 08:25:10 +0200 Subject: [PATCH 39/47] Added resize possibility to proxy function --- include/acl_selectors.php | 6 ++--- include/bbcode.php | 2 +- include/conversation.php | 4 +-- include/text.php | 2 +- mod/contacts.php | 6 ++--- mod/content.php | 12 ++++----- mod/directory.php | 2 +- mod/dirfind.php | 2 +- mod/display.php | 6 ++--- mod/follow.php | 2 +- mod/match.php | 3 ++- mod/notifications.php | 14 +++++------ mod/ping.php | 2 +- mod/proxy.php | 51 ++++++++++++++++++++++++++++++--------- mod/suggest.php | 4 +-- mod/viewcontacts.php | 2 +- object/Item.php | 4 +-- view/theme/vier/theme.php | 2 +- 18 files changed, 77 insertions(+), 49 deletions(-) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index f628b97309..05856bd217 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -545,7 +545,7 @@ function acl_lookup(&$a, $out_type = 'json') { $x['data'] = array(); if(count($r)) { foreach($r as $g) { - $x['photos'][] = proxy_url($g['micro']); + $x['photos'][] = proxy_url($g['micro'], false, PROXY_SIZE_MICRO); $x['links'][] = $g['url']; $x['suggestions'][] = $g['name']; $x['data'][] = intval($g['id']); @@ -559,7 +559,7 @@ function acl_lookup(&$a, $out_type = 'json') { foreach($r as $g){ $contacts[] = array( "type" => "c", - "photo" => proxy_url($g['micro']), + "photo" => proxy_url($g['micro'], false, PROXY_SIZE_MICRO), "name" => $g['name'], "id" => intval($g['id']), "network" => $g['network'], @@ -604,7 +604,7 @@ function acl_lookup(&$a, $out_type = 'json') { // /nickname $unknow_contacts[] = array( "type" => "c", - "photo" => proxy_url($row['author-avatar']), + "photo" => proxy_url($row['author-avatar'], false, PROXY_SIZE_MICRO), "name" => $row['author-name'], "id" => '', "network" => "unknown", diff --git a/include/bbcode.php b/include/bbcode.php index a4ad09ccf5..2fcf6c3247 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -601,7 +601,7 @@ function bb_ShareAttributes($share, $simplehtml) { default: $headline = trim($share[1]).'
'; if ($avatar != "") - $headline .= ''; + $headline .= ''; $headline .= sprintf(t('%s wrote the following post'.$reldate.':'), $profile, $author, $link); $headline .= "
"; diff --git a/include/conversation.php b/include/conversation.php index 0a33740555..2397014141 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -656,7 +656,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { 'name' => $profile_name_e, 'sparkle' => $sparkle, 'lock' => $lock, - 'thumb' => proxy_url($profile_avatar), + 'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB), 'title' => $item['title_e'], 'body' => $body_e, 'tags' => $tags_e, @@ -675,7 +675,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { 'indent' => '', 'owner_name' => $owner_name_e, 'owner_url' => $owner_url, - 'owner_photo' => proxy_url($owner_photo), + 'owner_photo' => proxy_url($owner_photo, false, PROXY_SIZE_THUMB), 'plink' => get_plink($item), 'edpost' => false, 'isstarred' => $isstarred, diff --git a/include/text.php b/include/text.php index c5b28b508e..4ce634b603 100644 --- a/include/text.php +++ b/include/text.php @@ -970,7 +970,7 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) { . (($click) ? ' fakelink' : '') . '" ' . (($redir) ? ' target="redir" ' : '') . (($url) ? ' href="' . $url . '"' : '') . $click . ' >' . $contact['name']
+			. proxy_url($contact['micro'], false, PROXY_SIZE_THUMB) . '
' . "\r\n"; } }} diff --git a/mod/contacts.php b/mod/contacts.php index 92463cd8de..25b22658f2 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -832,8 +832,8 @@ function _contact_detail_for_template($rr){ $url = $rr['url']; $sparkle = ''; } - - + + return array( 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']), 'edit_hover' => t('Edit contact'), @@ -841,7 +841,7 @@ function _contact_detail_for_template($rr){ 'id' => $rr['id'], 'alt_text' => $alt_text, 'dir_icon' => $dir_icon, - 'thumb' => proxy_url($rr['thumb']), + 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB), 'name' => $rr['name'], 'username' => $rr['name'], 'sparkle' => $sparkle, diff --git a/mod/content.php b/mod/content.php index cec23a9142..c5a5556116 100644 --- a/mod/content.php +++ b/mod/content.php @@ -11,8 +11,8 @@ // There is no "pagination query", but we will manage the "current page" on the client // and provide a link to fetch the next page - until there are no pages left to fetch. -// With the exception of complex tag and text searches, this prototype is incredibly -// fast - e.g. one or two milliseconds to fetch parent items for the current content, +// With the exception of complex tag and text searches, this prototype is incredibly +// fast - e.g. one or two milliseconds to fetch parent items for the current content, // and 10-20 milliseconds to fetch all the child items. @@ -476,7 +476,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'name' => $name_e, 'sparkle' => $sparkle, 'lock' => $lock, - 'thumb' => proxy_url($profile_avatar), + 'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB), 'title' => $title_e, 'body' => $body_e, 'text' => $text_e, @@ -485,7 +485,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'indent' => '', 'owner_name' => $owner_name_e, 'owner_url' => $owner_url, - 'owner_photo' => proxy_url($owner_photo), + 'owner_photo' => proxy_url($owner_photo, false, PROXY_SIZE_THUMB), 'plink' => get_plink($item), 'edpost' => false, 'isstarred' => $isstarred, @@ -859,7 +859,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'profile_url' => $profile_link, 'item_photo_menu' => item_photo_menu($item), 'name' => $name_e, - 'thumb' => proxy_url($profile_avatar), + 'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB), 'osparkle' => $osparkle, 'sparkle' => $sparkle, 'title' => $title_e, @@ -869,7 +869,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'indent' => $indent, 'shiny' => $shiny, 'owner_url' => $owner_url, - 'owner_photo' => proxy_url($owner_photo), + 'owner_photo' => proxy_url($owner_photo, false, PROXY_SIZE_THUMB), 'owner_name' => $owner_name_e, 'plink' => get_plink($item), 'edpost' => $edpost, diff --git a/mod/directory.php b/mod/directory.php index fa3a89e45a..6fd99256f0 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -171,7 +171,7 @@ function directory_content(&$a) { $entry = replace_macros($tpl,array( '$id' => $rr['id'], '$profile_link' => $profile_link, - '$photo' => proxy_url($a->get_cached_avatar_image($rr[$photo])), + '$photo' => proxy_url($a->get_cached_avatar_image($rr[$photo]), false, PROXY_SIZE_THUMB), '$alt_text' => $rr['name'], '$name' => $rr['name'], '$details' => $pdesc . $details, diff --git a/mod/dirfind.php b/mod/dirfind.php index 488e10fa16..4156d3b1cf 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -140,7 +140,7 @@ function dirfind_content(&$a, $prefix = "") { $o .= replace_macros($tpl,array( '$url' => zrl($jj->url), '$name' => $jj->name, - '$photo' => proxy_url($jj->photo), + '$photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), '$tags' => $jj->tags, '$conntxt' => $conntxt, '$connlnk' => $connlnk, diff --git a/mod/display.php b/mod/display.php index 46574bd064..6b345e6302 100644 --- a/mod/display.php +++ b/mod/display.php @@ -97,7 +97,7 @@ function display_fetchauthor($a, $item) { $profiledata["nickname"] = $item["author-name"]; $profiledata["name"] = $item["author-name"]; $profiledata["picdate"] = ""; - $profiledata["photo"] = proxy_url($item["author-avatar"]); + $profiledata["photo"] = proxy_url($item["author-avatar"], false, PROXY_SIZE_SMALL); $profiledata["url"] = $item["author-link"]; $profiledata["network"] = $item["network"]; @@ -174,7 +174,7 @@ function display_fetchauthor($a, $item) { $r[0]["about"] = ""; } - $profiledata["photo"] = proxy_url($r[0]["photo"]); + $profiledata["photo"] = proxy_url($r[0]["photo"], false, PROXY_SIZE_SMALL); $profiledata["address"] = bbcode($r[0]["location"]); $profiledata["about"] = bbcode($r[0]["about"]); if ($r[0]["nick"] != "") @@ -185,7 +185,7 @@ function display_fetchauthor($a, $item) { $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); if (count($r)) { if ($profiledata["photo"] == "") - $profiledata["photo"] = proxy_url($r[0]["avatar"]); + $profiledata["photo"] = proxy_url($r[0]["avatar"], false, PROXY_SIZE_SMALL); if (($profiledata["address"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) $profiledata["address"] = bbcode($r[0]["location"]); if (($profiledata["about"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) diff --git a/mod/follow.php b/mod/follow.php index 352a8988b5..54c20e5093 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -81,7 +81,7 @@ function follow_content(&$a) { $o = replace_macros($tpl,array( '$header' => htmlentities($header), - '$photo' => proxy_url($ret["photo"]), + '$photo' => proxy_url($ret["photo"], false, PROXY_SIZE_SMALL), '$desc' => "", '$pls_answer' => t('Please answer the following:'), '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))), diff --git a/mod/match.php b/mod/match.php index 74f83a6cc9..f31b0f67a4 100644 --- a/mod/match.php +++ b/mod/match.php @@ -2,6 +2,7 @@ include_once('include/text.php'); require_once('include/socgraph.php'); require_once('include/contact_widgets.php'); +require_once('mod/proxy.php'); function match_content(&$a) { @@ -65,7 +66,7 @@ function match_content(&$a) { $o .= replace_macros($tpl,array( '$url' => zrl($jj->url), '$name' => $jj->name, - '$photo' => proxy_url($jj->photo), + '$photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), '$inttxt' => ' ' . t('is interested in:'), '$conntxt' => t('Connect'), '$connlnk' => $connlnk, diff --git a/mod/notifications.php b/mod/notifications.php index fadd1e94e5..a267b7c958 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -166,7 +166,7 @@ function notifications_content(&$a) { '$intro_id' => $rr['intro_id'], '$madeby' => sprintf( t('suggested by %s'),$rr['name']), '$contact_id' => $rr['contact-id'], - '$photo' => ((x($rr,'fphoto')) ? proxy_url($rr['fphoto']) : "images/person-175.jpg"), + '$photo' => ((x($rr,'fphoto')) ? proxy_url($rr['fphoto'], false, PROXY_SIZE_SMALL) : "images/person-175.jpg"), '$fullname' => $rr['fname'], '$url' => zrl($rr['furl']), '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), @@ -238,7 +238,7 @@ function notifications_content(&$a) { '$uid' => $_SESSION['uid'], '$intro_id' => $rr['intro_id'], '$contact_id' => $rr['contact-id'], - '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo']) : "images/person-175.jpg"), + '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo'], false, PROXY_SIZE_SMALL) : "images/person-175.jpg"), '$fullname' => $rr['name'], '$location' => bbcode($rr['glocation'], false, false), '$location_label' => t('Location:'), @@ -303,7 +303,7 @@ function notifications_content(&$a) { $notif_content .= replace_macros($tpl_item_likes,array( //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'], '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'], - '$item_image' => $it['author-avatar'], + '$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO), '$item_text' => sprintf( t("%s liked %s's post"), $it['author-name'], $it['pname']), '$item_when' => relative_date($it['created']) )); @@ -313,7 +313,7 @@ function notifications_content(&$a) { $notif_content .= replace_macros($tpl_item_dislikes,array( //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'], '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'], - '$item_image' => $it['author-avatar'], + '$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO), '$item_text' => sprintf( t("%s disliked %s's post"), $it['author-name'], $it['pname']), '$item_when' => relative_date($it['created']) )); @@ -328,7 +328,7 @@ function notifications_content(&$a) { $notif_content .= replace_macros($tpl_item_friends,array( //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'], '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'], - '$item_image' => $it['author-avatar'], + '$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO), '$item_text' => sprintf( t("%s is now friends with %s"), $it['author-name'], $it['fname']), '$item_when' => relative_date($it['created']) )); @@ -343,7 +343,7 @@ function notifications_content(&$a) { $notif_content .= replace_macros($tpl,array( //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'], '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'], - '$item_image' => $it['author-avatar'], + '$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO), '$item_text' => $item_text, '$item_when' => relative_date($it['created']) )); @@ -376,7 +376,7 @@ function notifications_content(&$a) { foreach ($r as $it) { $notif_content .= replace_macros($not_tpl,array( '$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'], - '$item_image' => proxy_url($it['photo']), + '$item_image' => proxy_url($it['photo'], false, PROXY_SIZE_MICRO), '$item_text' => strip_tags(bbcode($it['msg'])), '$item_when' => relative_date($it['date']) )); diff --git a/mod/ping.php b/mod/ping.php index e87ed98553..791ceed351 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -173,7 +173,7 @@ function ping_init(&$a) { * 'message' => notification message. "{0}" will be replaced by subject name **/ function xmlize($n){ - $n['photo'] = proxy_url($n['photo']); + $n['photo'] = proxy_url($n['photo'], false, PROXY_SIZE_MICRO); $n['message'] = html_entity_decode($n['message'], ENT_COMPAT | ENT_HTML401, "UTF-8"); $n['name'] = html_entity_decode($n['name'], ENT_COMPAT | ENT_HTML401, "UTF-8"); diff --git a/mod/proxy.php b/mod/proxy.php index d82d334cec..d26967dddf 100644 --- a/mod/proxy.php +++ b/mod/proxy.php @@ -3,6 +3,12 @@ define("PROXY_DEFAULT_TIME", 86400); // 1 Day +define("PROXY_SIZE_MICRO", "micro"); +define("PROXY_SIZE_THUMB", "thumb"); +define("PROXY_SIZE_SMALL", "small"); +define("PROXY_SIZE_MEDIUM", "medium"); +define("PROXY_SIZE_LARGE", "large"); + require_once('include/security.php'); require_once("include/Photo.php"); @@ -37,6 +43,7 @@ function proxy_init() { $thumb = false; $size = 1024; + $sizetype = ""; // If the cache path isn't there, try to create it if (!is_dir($_SERVER["DOCUMENT_ROOT"]."/proxy")) @@ -59,14 +66,27 @@ function proxy_init() { $size = 200; // thumb, small, medium and large. - if (substr($url, -6) == ":thumb") - $size = 150; - if (substr($url, -6) == ":small") - $size = 340; - if (substr($url, -7) == ":medium") + if (substr($url, -6) == ":micro") { + $size = 48; + $sizetype = ":micro"; + $url = substr($url, 0, -6); + } elseif (substr($url, -6) == ":thumb") { + $size = 80; + $sizetype = ":thumb"; + $url = substr($url, 0, -6); + } elseif (substr($url, -6) == ":small") { + $size = 175; + $url = substr($url, 0, -6); + $sizetype = ":small"; + } elseif (substr($url, -7) == ":medium") { $size = 600; - if (substr($url, -6) == ":large") + $url = substr($url, 0, -7); + $sizetype = ":medium"; + } elseif (substr($url, -6) == ":large") { $size = 1024; + $url = substr($url, 0, -6); + $sizetype = ":large"; + } $pos = strrpos($url, "=."); if ($pos) @@ -176,6 +196,8 @@ function proxy_init() { } } + $img_str_orig = $img_str; + // reduce quality - if it isn't a GIF if ($mime != "image/gif") { $img = new Photo($img_str, $mime); @@ -188,10 +210,12 @@ function proxy_init() { // If there is a real existing directory then put the cache file there // advantage: real file access is really fast // Otherwise write in cachefile - if ($valid AND $direct_cache) - file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true), $img_str); - elseif ($cachefile != '') - file_put_contents($cachefile, $img_str); + if ($valid AND $direct_cache) { + file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true), $img_str_orig); + if ($sizetype <> '') + file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true).$sizetype, $img_str); + } elseif ($cachefile != '') + file_put_contents($cachefile, $img_str_orig); header("Content-type: $mime"); @@ -208,7 +232,7 @@ function proxy_init() { killme(); } -function proxy_url($url, $writemode = false) { +function proxy_url($url, $writemode = false, $size = "") { global $_SERVER; $a = get_app(); @@ -251,6 +275,9 @@ function proxy_url($url, $writemode = false) { $proxypath = $a->get_baseurl()."/proxy/".$path; + if ($size != "") + $size = ":".$size; + // Too long files aren't supported by Apache // Writemode in combination with long files shouldn't be possible if ((strlen($proxypath) > 250) AND $writemode) @@ -260,7 +287,7 @@ function proxy_url($url, $writemode = false) { elseif ($writemode) return ($path); else - return ($proxypath); + return ($proxypath.$size); } /** diff --git a/mod/suggest.php b/mod/suggest.php index e07e933114..8bf31ca8e5 100644 --- a/mod/suggest.php +++ b/mod/suggest.php @@ -81,12 +81,12 @@ function suggest_content(&$a) { foreach($r as $rr) { - $connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']); + $connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']); $o .= replace_macros($tpl,array( '$url' => zrl($rr['url']), '$name' => $rr['name'], - '$photo' => proxy_url($rr['photo']), + '$photo' => proxy_url($rr['photo'], false, PROXY_SIZE_THUMB), '$ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['id'], '$ignid' => $rr['id'], '$conntxt' => t('Connect'), diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index b84856701d..19bf0415c7 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -62,7 +62,7 @@ function viewcontacts_content(&$a) { $contacts[] = array( 'id' => $rr['id'], 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'), $rr['name'], $rr['url']), - 'thumb' => proxy_url($rr['thumb']), + 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB), 'name' => substr($rr['name'],0,20), 'username' => $rr['name'], 'url' => $url, diff --git a/object/Item.php b/object/Item.php index c7a025861f..0dc4f41985 100644 --- a/object/Item.php +++ b/object/Item.php @@ -334,7 +334,7 @@ class Item extends BaseObject { 'profile_url' => $profile_link, 'item_photo_menu' => item_photo_menu($item), 'name' => $name_e, - 'thumb' => proxy_url($profile_avatar), + 'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB), 'osparkle' => $osparkle, 'sparkle' => $sparkle, 'title' => $title_e, @@ -347,7 +347,7 @@ class Item extends BaseObject { 'indent' => $indent, 'shiny' => $shiny, 'owner_url' => $this->get_owner_url(), - 'owner_photo' => proxy_url($this->get_owner_photo()), + 'owner_photo' => proxy_url($this->get_owner_photo(), false, PROXY_SIZE_THUMB), 'owner_name' => $owner_name_e, 'plink' => get_plink($item), 'edpost' => ((feature_enabled($conv->get_profile_owner(),'edit_posts')) ? $edpost : ''), diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index 6d3ac1caf6..ff06b63030 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -132,7 +132,7 @@ function vier_community_info() { '$id' => $rr['id'], //'$profile_link' => zrl($rr['url']), '$profile_link' => $a->get_baseurl().'/follow/?url='.urlencode($rr['url']), - '$photo' => proxy_url($rr['photo']), + '$photo' => proxy_url($rr['photo'], false, PROXY_SIZE_MICRO), '$alt_text' => $rr['name'], )); $aside['$comunity_profiles_items'][] = $entry; From 61c3ce7a212156a06ee88285c3a76c823d761f1e Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 8 Oct 2015 00:25:55 +0200 Subject: [PATCH 40/47] Bugfix: The contact names had to be escaped --- include/conversation.php | 30 +++++++++++++++--------------- include/diaspora.php | 8 +++++++- include/items.php | 17 +++++++++++++++-- mod/allfriends.php | 8 ++++---- mod/common.php | 10 +++++----- mod/contacts.php | 12 ++++++------ mod/crepair.php | 6 +++--- mod/network.php | 8 ++++---- mod/viewcontacts.php | 4 ++-- object/Item.php | 2 +- view/theme/vier/theme.php | 3 ++- 11 files changed, 64 insertions(+), 44 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index 2397014141..bbb0b921a3 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -396,25 +396,25 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $page_writeable = true; 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). $live_update_div = '
' . "\r\n" - . "\r\n"; } @@ -431,7 +431,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { // because browser prefetching might change it on us. We have to deliver it with the page. $live_update_div = '
' . "\r\n" - . "\r\n"; } } @@ -441,7 +441,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $page_writeable = true; if(!$update) { $live_update_div = '
' . "\r\n" - . "\r\n"; } } diff --git a/include/diaspora.php b/include/diaspora.php index 3145c52ea3..61a0dfc3cf 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -110,6 +110,9 @@ function diaspora_dispatch($importer,$msg,$attempt=1) { elseif($xmlbase->message) { $ret = diaspora_message($importer,$xmlbase->message,$msg); } + elseif($xmlbase->participation) { + $ret = diaspora_participation($importer,$xmlbase->participation); + } else { logger('diaspora_dispatch: unknown message type: ' . print_r($xmlbase,true)); } @@ -1834,7 +1837,7 @@ function diaspora_message($importer,$xml,$msg) { $author_signature = base64_decode($msg_author_signature); - $person = find_diaspora_person_by_handle($msg_diaspora_handle); + $person = find_diaspora_person_by_handle($msg_diaspora_handle); if(is_array($person) && x($person,'pubkey')) $key = $person['pubkey']; else { @@ -1881,6 +1884,9 @@ function diaspora_message($importer,$xml,$msg) { return; } +function diaspora_participation($importer,$xml) { + logger("Unsupported message type 'participation' ".print_r($xml, true)); +} function diaspora_photo($importer,$xml,$msg,$attempt=1) { diff --git a/include/items.php b/include/items.php index 0d442e3170..8691ccca49 100644 --- a/include/items.php +++ b/include/items.php @@ -1287,11 +1287,24 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa } if ($arr['network'] == "") { - $r = q("SELECT `network` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", - intval($arr['contact-id']), + $r = q("SELECT `network` FROM `contact` WHERE `network` IN ('%s', '%s', '%s') AND `nurl` = '%s' AND `uid` = %d LIMIT 1", + dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS), + dbesc(normalise_link($arr['author-link'])), intval($arr['uid']) ); + if(!count($r)) + $r = q("SELECT `network` FROM `gcontact` WHERE `network` IN ('%s', '%s', '%s') AND `nurl` = '%s' LIMIT 1", + dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS), + dbesc(normalise_link($arr['author-link'])) + ); + + if(!count($r)) + $r = q("SELECT `network` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($arr['contact-id']), + intval($arr['uid']) + ); + if(count($r)) $arr['network'] = $r[0]["network"]; diff --git a/mod/allfriends.php b/mod/allfriends.php index 1a45775fb2..784dfb8771 100644 --- a/mod/allfriends.php +++ b/mod/allfriends.php @@ -21,7 +21,7 @@ function allfriends_content(&$a) { ); $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array( - '$name' => $c[0]['name'], + '$name' => htmlentities($c[0]['name']), '$photo' => $c[0]['photo'], 'url' => z_root() . '/contacts/' . $cid )); @@ -34,7 +34,7 @@ function allfriends_content(&$a) { return; $o .= replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => sprintf( t('Friends of %s'), $c[0]['name']) + '$title' => sprintf( t('Friends of %s'), htmlentities($c[0]['name'])) )); @@ -48,10 +48,10 @@ function allfriends_content(&$a) { $tpl = get_markup_template('common_friends.tpl'); foreach($r as $rr) { - + $o .= replace_macros($tpl,array( '$url' => $rr['url'], - '$name' => $rr['name'], + '$name' => htmlentities($rr['name']), '$photo' => $rr['photo'], '$tags' => '' )); diff --git a/mod/common.php b/mod/common.php index 3118d12479..1e65137ac6 100644 --- a/mod/common.php +++ b/mod/common.php @@ -16,7 +16,7 @@ function common_content(&$a) { if(! $uid) return; - if($cmd === 'loc' && $cid) { + if($cmd === 'loc' && $cid) { $c = q("select name, url, photo from contact where id = %d and uid = %d limit 1", intval($cid), intval($uid) @@ -26,10 +26,10 @@ function common_content(&$a) { $c = q("select name, url, photo from contact where self = 1 and uid = %d limit 1", intval($uid) ); - } + } $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array( - '$name' => $c[0]['name'], + '$name' => htmlentities($c[0]['name']), '$photo' => $c[0]['photo'], 'url' => z_root() . '/contacts/' . $cid )); @@ -97,10 +97,10 @@ function common_content(&$a) { $tpl = get_markup_template('common_friends.tpl'); foreach($r as $rr) { - + $o .= replace_macros($tpl,array( '$url' => $rr['url'], - '$name' => $rr['name'], + '$name' => htmlentities($rr['name']), '$photo' => $rr['photo'], '$tags' => '' )); diff --git a/mod/contacts.php b/mod/contacts.php index 25b22658f2..ee62bf3c9e 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -33,7 +33,7 @@ function contacts_init(&$a) { if($contact_id) { $a->data['contact'] = $r[0]; $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array( - '$name' => $a->data['contact']['name'], + '$name' => htmlentities($a->data['contact']['name']), '$photo' => $a->data['contact']['photo'], '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url'] )); @@ -432,7 +432,7 @@ function contacts_content(&$a) { } $a->page['aside'] = ''; - + return replace_macros(get_markup_template('contact_drop_confirm.tpl'), array( '$contact' => _contact_detail_for_template($orig_record[0]), '$method' => 'get', @@ -509,7 +509,7 @@ function contacts_content(&$a) { if(!in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) $relation_text = ""; - $relation_text = sprintf($relation_text,$contact['name']); + $relation_text = sprintf($relation_text,htmlentities($contact['name'])); if(($contact['network'] === NETWORK_DFRN) && ($contact['rel'])) { $url = "redir/{$contact['id']}"; @@ -632,7 +632,7 @@ function contacts_content(&$a) { '$ffi_keyword_blacklist' => $contact['ffi_keyword_blacklist'], '$ffi_keyword_blacklist' => array('ffi_keyword_blacklist', t('Blacklisted keywords'), $contact['ffi_keyword_blacklist'], t('Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected')), '$photo' => $contact['photo'], - '$name' => $contact['name'], + '$name' => htmlentities($contact['name']), '$dir_icon' => $dir_icon, '$alt_text' => $alt_text, '$sparkle' => $sparkle, @@ -842,8 +842,8 @@ function _contact_detail_for_template($rr){ 'alt_text' => $alt_text, 'dir_icon' => $dir_icon, 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB), - 'name' => $rr['name'], - 'username' => $rr['name'], + 'name' => htmlentities($rr['name']), + 'username' => htmlentities($rr['name']), 'sparkle' => $sparkle, 'itemurl' => $rr['url'], 'url' => $url, diff --git a/mod/crepair.php b/mod/crepair.php index 457a06685d..686be3948f 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -24,7 +24,7 @@ function crepair_init(&$a) { $a->data['contact'] = $r[0]; $tpl = get_markup_template("vcard-widget.tpl"); $vcard_widget .= replace_macros($tpl, array( - '$name' => $a->data['contact']['name'], + '$name' => htmlentities($a->data['contact']['name']), '$photo' => $a->data['contact']['photo'] )); $a->page['aside'] .= $vcard_widget; @@ -179,8 +179,8 @@ function crepair_content(&$a) { '$label_remote_self' => t('Remote Self'), '$allow_remote_self' => $allow_remote_self, '$remote_self' => array('remote_self', t('Mirror postings from this contact'), $contact['remote_self'], t('Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'), $remote_self_options), - '$contact_name' => $contact['name'], - '$contact_nick' => $contact['nick'], + '$contact_name' => htmlentities($contact['name']), + '$contact_nick' => htmlentities($contact['nick']), '$contact_id' => $contact['id'], '$contact_url' => $contact['url'], '$request' => $contact['request'], diff --git a/mod/network.php b/mod/network.php index a92e0c691b..3d14455cdf 100644 --- a/mod/network.php +++ b/mod/network.php @@ -568,14 +568,14 @@ function network_content(&$a, $update = 0) { intval($cid) ); if(count($r)) { - $sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item` - WHERE 1 $sql_options AND `contact-id` = ".intval($cid)." and deleted = 0 - ORDER BY `item`.`received` DESC) AS `temp1` + $sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item` + WHERE 1 $sql_options AND `contact-id` = ".intval($cid)." and deleted = 0 + ORDER BY `item`.`received` DESC) AS `temp1` ON $sql_table.$sql_parent = `temp1`.`parent` "; $sql_extra = ""; $o = replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => sprintf( t('Contact: %s'), $r[0]['name']) + '$title' => sprintf( t('Contact: %s'), htmlentities($r[0]['name'])) )) . $o; if($r[0]['network'] === NETWORK_OSTATUS && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) { diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index 19bf0415c7..a6bf74b288 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -63,8 +63,8 @@ function viewcontacts_content(&$a) { 'id' => $rr['id'], 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'), $rr['name'], $rr['url']), 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB), - 'name' => substr($rr['name'],0,20), - 'username' => $rr['name'], + 'name' => htmlentities(substr($rr['name'],0,20)), + 'username' => htmlentities($rr['name']), 'url' => $url, 'sparkle' => '', 'itemurl' => $rr['url'], diff --git a/object/Item.php b/object/Item.php index 0dc4f41985..cc6d08ec2b 100644 --- a/object/Item.php +++ b/object/Item.php @@ -134,7 +134,7 @@ class Item extends BaseObject { $filer = (($conv->get_profile_owner() == local_user()) ? t("save to folder") : false); $diff_author = ((link_compare($item['url'],$item['author-link'])) ? false : true); - $profile_name = (((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']); + $profile_name = htmlentities(((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']); if($item['author-link'] && (! $item['author-name'])) $profile_name = $item['author-link']; diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index ff06b63030..e1a75b9512 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -84,7 +84,8 @@ function cmtBbClose(id) { EOT; // Hide the left menu bar - if (($a->page['aside'] == "") AND in_array($a->argv[0], array("community", "events", "help", "manage", "notifications", "probe", "webfinger", "login"))) + if (($a->page['aside'] == "") AND in_array($a->argv[0], array("community", "events", "help", "manage", "notifications", + "probe", "webfinger", "login", "invite"))) $a->page['htmlhead'] .= ""; } From 16da708e071bb2a41024c4268d963938f850dfb9 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 9 Oct 2015 07:39:38 +0200 Subject: [PATCH 41/47] Contact names with ">" and "<" are a problem ... --- include/conversation.php | 4 ++-- include/items.php | 8 ++++---- mod/dirfind.php | 2 +- object/Item.php | 14 ++++++++++---- 4 files changed, 17 insertions(+), 11 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index bbb0b921a3..cdcc560108 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -942,7 +942,7 @@ function like_puller($a,$item,&$arr,$mode) { $arr[$item['thr-parent']] = 1; else $arr[$item['thr-parent']] ++; - $arr[$item['thr-parent'] . '-l'][] = '' . $item['author-name'] . ''; + $arr[$item['thr-parent'] . '-l'][] = '' . htmlentities($item['author-name']) . ''; } return; }} @@ -958,7 +958,7 @@ if(! function_exists('format_like')) { function format_like($cnt,$arr,$type,$id) { $o = ''; if($cnt == 1) - $o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ; + $o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL; else { $spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\""; switch($type) { diff --git a/include/items.php b/include/items.php index 8691ccca49..04a0ed8cf1 100644 --- a/include/items.php +++ b/include/items.php @@ -1239,10 +1239,10 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr['guid'] = ((x($arr,'guid')) ? notags(trim($arr['guid'])) : get_guid(32, $guid_prefix)); $arr['uri'] = ((x($arr,'uri')) ? notags(trim($arr['uri'])) : $arr['guid']); $arr['extid'] = ((x($arr,'extid')) ? notags(trim($arr['extid'])) : ''); - $arr['author-name'] = ((x($arr,'author-name')) ? notags(trim($arr['author-name'])) : ''); + $arr['author-name'] = ((x($arr,'author-name')) ? trim($arr['author-name']) : ''); $arr['author-link'] = ((x($arr,'author-link')) ? notags(trim($arr['author-link'])) : ''); $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : ''); - $arr['owner-name'] = ((x($arr,'owner-name')) ? notags(trim($arr['owner-name'])) : ''); + $arr['owner-name'] = ((x($arr,'owner-name')) ? trim($arr['owner-name']) : ''); $arr['owner-link'] = ((x($arr,'owner-link')) ? notags(trim($arr['owner-link'])) : ''); $arr['owner-avatar'] = ((x($arr,'owner-avatar')) ? notags(trim($arr['owner-avatar'])) : ''); $arr['created'] = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert()); @@ -1250,8 +1250,8 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr['commented'] = ((x($arr,'commented') !== false) ? datetime_convert('UTC','UTC',$arr['commented']) : datetime_convert()); $arr['received'] = ((x($arr,'received') !== false) ? datetime_convert('UTC','UTC',$arr['received']) : datetime_convert()); $arr['changed'] = ((x($arr,'changed') !== false) ? datetime_convert('UTC','UTC',$arr['changed']) : datetime_convert()); - $arr['title'] = ((x($arr,'title')) ? notags(trim($arr['title'])) : ''); - $arr['location'] = ((x($arr,'location')) ? notags(trim($arr['location'])) : ''); + $arr['title'] = ((x($arr,'title')) ? trim($arr['title']) : ''); + $arr['location'] = ((x($arr,'location')) ? trim($arr['location']) : ''); $arr['coord'] = ((x($arr,'coord')) ? notags(trim($arr['coord'])) : ''); $arr['last-child'] = ((x($arr,'last-child')) ? intval($arr['last-child']) : 0 ); $arr['visible'] = ((x($arr,'visible') !== false) ? intval($arr['visible']) : 1 ); diff --git a/mod/dirfind.php b/mod/dirfind.php index 4156d3b1cf..0c2505361e 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -139,7 +139,7 @@ function dirfind_content(&$a, $prefix = "") { $o .= replace_macros($tpl,array( '$url' => zrl($jj->url), - '$name' => $jj->name, + '$name' => htmlentities($jj->name), '$photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), '$tags' => $jj->tags, '$conntxt' => $conntxt, diff --git a/object/Item.php b/object/Item.php index cc6d08ec2b..63fa43d3e2 100644 --- a/object/Item.php +++ b/object/Item.php @@ -235,6 +235,8 @@ class Item extends BaseObject { if ($shareable) $buttons['share'] = array( t('Share this'), t('share')); } + $comment = $this->get_comment_box($indent); + if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0){ $shiny = 'shiny'; } @@ -304,6 +306,10 @@ class Item extends BaseObject { !diaspora_is_redmatrix($item["owner-link"]) AND isset($buttons["like"])) unset($buttons["like"]); + // Diaspora doesn't has multithreaded comments + if (($item["item_network"] == NETWORK_DIASPORA) AND ($indent == 'comment')) + unset($comment); + // Facebook can like comments - but it isn't programmed in the connector yet. if (($item["item_network"] == NETWORK_FACEBOOK) AND ($indent == 'comment') AND isset($buttons["like"])) unset($buttons["like"]); @@ -326,7 +332,7 @@ class Item extends BaseObject { 'id' => $this->get_id(), 'guid' => urlencode($item['guid']), 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])), - 'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $this->get_owner_name(), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])), + 'olinktitle' => sprintf( t('View %s\'s profile @ %s'), htmlentities($this->get_owner_name()), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])), 'to' => t('to'), 'via' => t('via'), 'wall' => t('Wall-to-Wall'), @@ -348,7 +354,7 @@ class Item extends BaseObject { 'shiny' => $shiny, 'owner_url' => $this->get_owner_url(), 'owner_photo' => proxy_url($this->get_owner_photo(), false, PROXY_SIZE_THUMB), - 'owner_name' => $owner_name_e, + 'owner_name' => htmlentities($owner_name_e), 'plink' => get_plink($item), 'edpost' => ((feature_enabled($conv->get_profile_owner(),'edit_posts')) ? $edpost : ''), 'isstarred' => $isstarred, @@ -361,7 +367,7 @@ class Item extends BaseObject { 'like' => $like, 'dislike' => $dislike, 'switchcomment' => t('Comment'), - 'comment' => $this->get_comment_box($indent), + 'comment' => $comment, 'previewing' => ($conv->is_preview() ? ' preview ' : ''), 'wait' => t('Please wait'), 'thread_level' => $thread_level, @@ -523,7 +529,7 @@ class Item extends BaseObject { */ public function set_conversation($conv) { $previous_mode = ($this->conversation ? $this->conversation->get_mode() : ''); - + $this->conversation = $conv; // Set it on our children too From 1c21401751d28d1f6cbcae0611cf072cf1a5de50 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 9 Oct 2015 23:27:00 +0200 Subject: [PATCH 42/47] acl lookup now works fine as well. --- include/acl_selectors.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 05856bd217..a1154399a7 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -392,7 +392,6 @@ function acl_lookup(&$a, $out_type = 'json') { if(!local_user()) return ""; - $start = (x($_REQUEST,'start')?$_REQUEST['start']:0); $count = (x($_REQUEST,'count')?$_REQUEST['count']:100); $search = (x($_REQUEST,'search')?$_REQUEST['search']:""); @@ -492,7 +491,7 @@ function acl_lookup(&$a, $out_type = 'json') { $groups[] = array( "type" => "g", "photo" => "images/twopeople.png", - "name" => $g['name'], + "name" => htmlentities($g['name']), "id" => intval($g['id']), "uids" => array_map("intval", explode(",",$g['uids'])), "link" => '', @@ -547,7 +546,7 @@ function acl_lookup(&$a, $out_type = 'json') { foreach($r as $g) { $x['photos'][] = proxy_url($g['micro'], false, PROXY_SIZE_MICRO); $x['links'][] = $g['url']; - $x['suggestions'][] = $g['name']; + $x['suggestions'][] = htmlentities($g['name']); $x['data'][] = intval($g['id']); } } @@ -560,11 +559,11 @@ function acl_lookup(&$a, $out_type = 'json') { $contacts[] = array( "type" => "c", "photo" => proxy_url($g['micro'], false, PROXY_SIZE_MICRO), - "name" => $g['name'], + "name" => htmlentities($g['name']), "id" => intval($g['id']), "network" => $g['network'], "link" => $g['url'], - "nick" => ($g['attag']) ? $g['attag'] : $g['nick'], + "nick" => htmlentities(($g['attag']) ? $g['attag'] : $g['nick']), "forum" => $g['forum'] ); } @@ -605,11 +604,11 @@ function acl_lookup(&$a, $out_type = 'json') { $unknow_contacts[] = array( "type" => "c", "photo" => proxy_url($row['author-avatar'], false, PROXY_SIZE_MICRO), - "name" => $row['author-name'], + "name" => htmlentities($row['author-name']), "id" => '', "network" => "unknown", "link" => $row['author-link'], - "nick" => $nick, + "nick" => htmlentities($nick), "forum" => false ); } From ab0fbc3a65594880450f90b1dc5131e1d94577ce Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 10 Oct 2015 04:56:40 +0200 Subject: [PATCH 43/47] Bugfix: Unidirectional Diaspora connect request have to be followers - not sharers --- mod/dfrn_confirm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 1cc258853b..d5dbab951e 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -382,7 +382,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { if($duplex) $new_relation = CONTACT_IS_FRIEND; else - $new_relation = CONTACT_IS_SHARING; + $new_relation = CONTACT_IS_FOLLOWER; if($new_relation != CONTACT_IS_FOLLOWER) $writable = 1; From efbdb57f926dc840a162ac960f5a1f3b0fdf0353 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 10 Oct 2015 11:06:18 +0200 Subject: [PATCH 44/47] Reworked contact relations between Friendica and Diaspora --- include/conversation.php | 3 ++- include/diaspora.php | 4 ++-- include/follow.php | 10 ++-------- mod/contacts.php | 6 ++++++ view/templates/contact_edit.tpl | 3 +++ 5 files changed, 15 insertions(+), 11 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index bbb0b921a3..92afcaa1f6 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -897,7 +897,8 @@ function item_photo_menu($item){ if ($a->contacts[$clean_url]['network'] === NETWORK_DFRN) $menu[t("Poke")] = $poke_link; - if (($cid == 0) AND in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) + if (($cid == 0) AND + in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) $menu[t("Connect/Follow")] = $a->get_baseurl($ssl_state)."/follow?url=".urlencode($item['author-link']); $args = array('item' => $item, 'menu' => $menu); diff --git a/include/diaspora.php b/include/diaspora.php index 61a0dfc3cf..757cf1a6ba 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -592,7 +592,7 @@ function diaspora_request($importer,$xml) { // perhaps we were already sharing with this person. Now they're sharing with us. // That makes us friends. - if($contact['rel'] == CONTACT_IS_FOLLOWER && !in_array($importer['page-flags'], array(PAGE_COMMUNITY, PAGE_SOAPBOX))) { + if($contact['rel'] == CONTACT_IS_FOLLOWER && in_array($importer['page-flags'], array(PAGE_FREELOVE))) { q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d", intval(CONTACT_IS_FRIEND), intval($contact['id']), @@ -774,7 +774,7 @@ function diaspora_post_allow($importer,$contact, $is_comment = false) { // perhaps we were already sharing with this person. Now they're sharing with us. // That makes us friends. // Normally this should have handled by getting a request - but this could get lost - if($contact['rel'] == CONTACT_IS_FOLLOWER && !in_array($importer['page-flags'], array(PAGE_COMMUNITY, PAGE_SOAPBOX))) { + if($contact['rel'] == CONTACT_IS_FOLLOWER && in_array($importer['page-flags'], array(PAGE_FREELOVE))) { q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d", intval(CONTACT_IS_FRIEND), intval($contact['id']), diff --git a/include/follow.php b/include/follow.php index ca0228cc0f..21c05c8f3e 100644 --- a/include/follow.php +++ b/include/follow.php @@ -154,11 +154,7 @@ function new_contact($uid,$url,$interactive = false) { $hidden = (($ret['network'] === NETWORK_MAIL) ? 1 : 0); - if($ret['network'] === NETWORK_MAIL) { - $writeable = 1; - - } - if($ret['network'] === NETWORK_DIASPORA) + if(in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA))) $writeable = 1; // check if we already have a contact @@ -215,9 +211,7 @@ function new_contact($uid,$url,$interactive = false) { return $result; } - $new_relation = (($ret['network'] === NETWORK_MAIL) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING); - if($ret['network'] === NETWORK_DIASPORA) - $new_relation = CONTACT_IS_FOLLOWER; + $new_relation = ((in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA))) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING); // create contact record $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `name`, `nick`, `network`, `pubkey`, `rel`, `priority`, diff --git a/mod/contacts.php b/mod/contacts.php index ee62bf3c9e..c562c9822d 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -590,6 +590,10 @@ function contacts_content(&$a) { if ($contact['network'] == NETWORK_DFRN) $profile_select = contact_profile_assign($contact['profile-id'],(($contact['network'] !== NETWORK_DFRN) ? true : false)); + if (in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_OSTATUS)) AND + ($contact['rel'] == CONTACT_IS_FOLLOWER)) + $follow = $a->get_baseurl(true)."/follow?url=".urlencode($contact["url"]); + $o .= replace_macros($tpl, array( '$header' => t('Contact Editor'), '$tab_str' => $tab_str, @@ -617,6 +621,8 @@ function contacts_content(&$a) { '$updpub' => t('Update public posts'), '$last_update' => $last_update, '$udnow' => t('Update now'), + '$follow' => $follow, + '$follow_text' => t("Connect/Follow"), '$profile_select' => $profile_select, '$contact_id' => $contact['id'], '$block_text' => (($contact['blocked']) ? t('Unblock') : t('Block') ), diff --git a/view/templates/contact_edit.tpl b/view/templates/contact_edit.tpl index 06141081cb..95e8e5d29a 100644 --- a/view/templates/contact_edit.tpl +++ b/view/templates/contact_edit.tpl @@ -51,6 +51,9 @@ {{if $lblsuggest}}
  • {{$lblsuggest}}
  • {{/if}} + {{if $follow}} +
  • + {{/if}}
    From ba06d659f17c8ea38fd4d4b90f73684670a12bad Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 10 Oct 2015 14:26:07 +0200 Subject: [PATCH 45/47] Bugfix: Feeds weren't imported if a post with the same URI existed. --- include/feed.php | 4 ++-- include/items.php | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/include/feed.php b/include/feed.php index dd360a07b5..f11bb52a1b 100644 --- a/include/feed.php +++ b/include/feed.php @@ -201,8 +201,8 @@ function feed_import($xml,$importer,&$contact, &$hub) { //$item["object"] = $xml; - $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'", - intval($importer["uid"]), dbesc($item["uri"])); + $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` = '%s'", + intval($importer["uid"]), dbesc($item["uri"]), dbesc(NETWORK_FEED)); if ($r) { logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG); continue; diff --git a/include/items.php b/include/items.php index 8691ccca49..1506e737ba 100644 --- a/include/items.php +++ b/include/items.php @@ -1489,9 +1489,10 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr = $unescaped; // find the item we just created - $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC ", + $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `network` = '%s' ORDER BY `id` ASC ", dbesc($arr['uri']), - intval($arr['uid']) + intval($arr['uid']), + dbesc($arr['network']) ); if(count($r)) { From bb0dff2c755a49717a56bf69473b526c1d7871b5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 10 Oct 2015 16:23:20 +0200 Subject: [PATCH 46/47] Improved contact menu --- boot.php | 2 +- include/conversation.php | 30 +++++++++++++++++------------- mod/dirfind.php | 8 +++++++- 3 files changed, 25 insertions(+), 15 deletions(-) diff --git a/boot.php b/boot.php index b395d3423a..497a87ce9e 100644 --- a/boot.php +++ b/boot.php @@ -1658,7 +1658,7 @@ if(! function_exists('load_contact_links')) { if(! $uid || x($a->contacts,'empty')) return; - $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `thumb` != ''", + $r = q("SELECT `id`,`network`,`url`,`thumb`, `rel` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `thumb` != ''", intval($uid) ); if(count($r)) { diff --git a/include/conversation.php b/include/conversation.php index bbb0b921a3..1edf794257 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -884,21 +884,25 @@ function item_photo_menu($item){ } - $menu = Array( - t("Follow Thread") => $sub_link, - t("View Status") => $status_link, - t("View Profile") => $profile_link, - t("View Photos") => $photos_link, - t("Network Posts") => $posts_link, - t("Edit Contact") => $contact_url, - t("Send PM") => $pm_url - ); + if (local_user()) { + $menu = Array( + t("Follow Thread") => $sub_link, + t("View Status") => $status_link, + t("View Profile") => $profile_link, + t("View Photos") => $photos_link, + t("Network Posts") => $posts_link, + t("Edit Contact") => $contact_url, + t("Send PM") => $pm_url + ); - if ($a->contacts[$clean_url]['network'] === NETWORK_DFRN) - $menu[t("Poke")] = $poke_link; + if ($a->contacts[$clean_url]['network'] === NETWORK_DFRN) + $menu[t("Poke")] = $poke_link; - if (($cid == 0) AND in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) - $menu[t("Connect/Follow")] = $a->get_baseurl($ssl_state)."/follow?url=".urlencode($item['author-link']); + if ((($cid == 0) OR ($a->contacts[$clean_url]['rel'] == CONTACT_IS_FOLLOWER)) AND + in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) + $menu[t("Connect/Follow")] = $a->get_baseurl($ssl_state)."/follow?url=".urlencode($item['author-link']); + } else + $menu = array(t("View Profile") => $item['author-link']); $args = array('item' => $item, 'menu' => $menu); diff --git a/mod/dirfind.php b/mod/dirfind.php index 4156d3b1cf..1e4f5539fb 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -5,6 +5,11 @@ require_once('include/Contact.php'); function dirfind_init(&$a) { + if(! local_user()) { + notice( t('Permission denied.') . EOL ); + return; + } + if(! x($a->page,'aside')) $a->page['aside'] = ''; @@ -132,7 +137,8 @@ function dirfind_content(&$a, $prefix = "") { } else { $connlnk = $a->get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url); $conntxt = t('Connect'); - $photo_menu = array(array(t("Connect/Follow"), $connlnk)); + $photo_menu = array(array(t("View Profile"), zrl($jj->url))); + $photo_menu[] = array(t("Connect/Follow"), $connlnk); } $jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo); From 199bcdb7a097cb21376f614cb9fb489b0101ba11 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 11 Oct 2015 10:38:05 +0200 Subject: [PATCH 47/47] regenerated messages.po file --- util/messages.po | 10879 +++++++++++++++++++++++---------------------- 1 file changed, 5462 insertions(+), 5417 deletions(-) diff --git a/util/messages.po b/util/messages.po index a6792943bd..ac852f66db 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.4.1\n" +"Project-Id-Version: 3.4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-22 09:58+0200\n" +"POT-Creation-Date: 2015-10-11 10:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,270 +18,1181 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "" - -#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 -msgid "Private Message" -msgstr "" - -#: object/Item.php:121 mod/settings.php:694 mod/content.php:730 -msgid "Edit" -msgstr "" - -#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 -#: mod/content.php:742 include/conversation.php:612 -msgid "Select" -msgstr "" - -#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673 -#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171 -#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 -msgid "Delete" -msgstr "" - -#: object/Item.php:134 mod/content.php:765 -msgid "save to folder" -msgstr "" - -#: object/Item.php:196 mod/content.php:755 -msgid "add star" -msgstr "" - -#: object/Item.php:197 mod/content.php:756 -msgid "remove star" -msgstr "" - -#: object/Item.php:198 mod/content.php:757 -msgid "toggle star status" -msgstr "" - -#: object/Item.php:201 mod/content.php:760 -msgid "starred" -msgstr "" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "" - -#: object/Item.php:214 mod/ostatus_subscribe.php:69 -msgid "ignored" -msgstr "" - -#: object/Item.php:221 mod/content.php:761 -msgid "add tag" -msgstr "" - -#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 -msgid "I like this (toggle)" -msgstr "" - -#: object/Item.php:232 mod/content.php:686 -msgid "like" -msgstr "" - -#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 -msgid "I don't like this (toggle)" -msgstr "" - -#: object/Item.php:233 mod/content.php:687 -msgid "dislike" -msgstr "" - -#: object/Item.php:235 mod/content.php:689 -msgid "Share this" -msgstr "" - -#: object/Item.php:235 mod/content.php:689 -msgid "share" -msgstr "" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "" - -#: object/Item.php:328 object/Item.php:329 mod/content.php:473 -#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 +#: mod/contacts.php:114 #, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: object/Item.php:330 mod/content.php:856 -msgid "to" -msgstr "" - -#: object/Item.php:331 -msgid "via" -msgstr "" - -#: object/Item.php:332 mod/content.php:857 -msgid "Wall-to-Wall" -msgstr "" - -#: object/Item.php:333 mod/content.php:858 -msgid "via Wall-To-Wall:" -msgstr "" - -#: object/Item.php:342 mod/content.php:483 mod/content.php:866 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "" - -#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583 -#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764 -msgid "Comment" -msgstr "" - -#: object/Item.php:366 mod/message.php:335 mod/message.php:566 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 -#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "" - -#: object/Item.php:389 mod/content.php:605 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" +msgid "%d contact edited." +msgid_plural "%d contacts edited" msgstr[0] "" msgstr[1] "" -#: object/Item.php:391 object/Item.php:404 mod/content.php:607 -#: include/text.php:2038 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" - -#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147 -#: include/contact_widgets.php:205 -msgid "show more" +#: mod/contacts.php:145 mod/contacts.php:368 +msgid "Could not access contact record." msgstr "" -#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 mod/content.php:709 -msgid "This is you" +#: mod/contacts.php:159 +msgid "Could not locate selected profile." msgstr "" -#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336 -#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104 -#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 -#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596 -#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199 -#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 -#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 -#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/cleanzero/config.php:80 -msgid "Submit" +#: mod/contacts.php:192 +msgid "Contact updated." msgstr "" -#: object/Item.php:681 mod/content.php:713 -msgid "Bold" +#: mod/contacts.php:194 mod/dfrn_request.php:576 +msgid "Failed to update contact record." msgstr "" -#: object/Item.php:682 mod/content.php:714 -msgid "Italic" -msgstr "" - -#: object/Item.php:683 mod/content.php:715 -msgid "Underline" -msgstr "" - -#: object/Item.php:684 mod/content.php:716 -msgid "Quote" -msgstr "" - -#: object/Item.php:685 mod/content.php:717 -msgid "Code" -msgstr "" - -#: object/Item.php:686 mod/content.php:718 -msgid "Image" -msgstr "" - -#: object/Item.php:687 mod/content.php:719 -msgid "Link" -msgstr "" - -#: object/Item.php:688 mod/content.php:720 -msgid "Video" -msgstr "" - -#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: mod/content.php:721 include/conversation.php:1089 -msgid "Preview" -msgstr "" - -#: index.php:225 mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "" - -#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 -msgid "Not Found" -msgstr "" - -#: index.php:272 mod/help.php:45 -msgid "Page not found." -msgstr "" - -#: index.php:381 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" -msgstr "" - -#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70 -#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156 -#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33 -#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83 -#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15 -#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116 -#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165 -#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61 -#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96 -#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20 -#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19 -#: mod/profile_photo.php:169 mod/profile_photo.php:180 -#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110 -#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4 -#: mod/crepair.php:120 include/items.php:5036 +#: mod/contacts.php:350 mod/manage.php:96 mod/display.php:496 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 mod/profile_photo.php:180 +#: mod/profile_photo.php:193 mod/ostatus_subscribe.php:9 mod/follow.php:10 +#: mod/follow.php:54 mod/follow.php:119 mod/item.php:169 mod/item.php:185 +#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 +#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 +#: mod/notifications.php:69 mod/message.php:39 mod/message.php:175 +#: mod/crepair.php:120 mod/dirfind.php:9 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:621 mod/register.php:42 +#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 mod/profiles.php:165 +#: mod/profiles.php:615 mod/editpost.php:10 mod/api.php:26 mod/api.php:31 +#: mod/notes.php:22 mod/poke.php:135 mod/repair_ostatus.php:9 mod/invite.php:15 +#: mod/invite.php:101 mod/photos.php:163 mod/photos.php:1097 mod/regmod.php:110 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5075 index.php:382 msgid "Permission denied." msgstr "" -#: index.php:441 -msgid "toggle mobile" +#: mod/contacts.php:389 +msgid "Contact has been blocked" msgstr "" -#: mod/update_notes.php:37 mod/update_profile.php:41 -#: mod/update_community.php:18 mod/update_network.php:25 -#: mod/update_display.php:22 -msgid "[Embedded content - reload page to view]" +#: mod/contacts.php:389 +msgid "Contact has been unblocked" msgstr "" -#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "" + +#: mod/contacts.php:439 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "" + +#: mod/contacts.php:441 mod/follow.php:87 mod/message.php:210 +#: mod/settings.php:1076 mod/settings.php:1082 mod/settings.php:1090 +#: mod/settings.php:1094 mod/settings.php:1099 mod/settings.php:1105 +#: mod/settings.php:1111 mod/settings.php:1117 mod/settings.php:1143 +#: mod/settings.php:1144 mod/settings.php:1145 mod/settings.php:1146 +#: mod/settings.php:1147 mod/dfrn_request.php:848 mod/register.php:235 +#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 mod/api.php:105 +#: include/items.php:4907 +msgid "Yes" +msgstr "" + +#: mod/contacts.php:444 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:98 +#: mod/videos.php:123 mod/message.php:213 mod/fbrowser.php:89 +#: mod/fbrowser.php:125 mod/settings.php:635 mod/settings.php:661 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1115 +#: include/items.php:4910 +msgid "Cancel" +msgstr "" + +#: mod/contacts.php:456 +msgid "Contact has been removed." +msgstr "" + +#: mod/contacts.php:494 +#, php-format +msgid "You are mutual friends with %s" +msgstr "" + +#: mod/contacts.php:498 +#, php-format +msgid "You are sharing with %s" +msgstr "" + +#: mod/contacts.php:503 +#, php-format +msgid "%s is sharing with you" +msgstr "" + +#: mod/contacts.php:523 +msgid "Private communications are not available for this contact." +msgstr "" + +#: mod/contacts.php:526 mod/admin.php:623 +msgid "Never" +msgstr "" + +#: mod/contacts.php:530 +msgid "(Update was successful)" +msgstr "" + +#: mod/contacts.php:530 +msgid "(Update was not successful)" +msgstr "" + +#: mod/contacts.php:532 +msgid "Suggest friends" +msgstr "" + +#: mod/contacts.php:536 +#, php-format +msgid "Network type: %s" +msgstr "" + +#: mod/contacts.php:539 include/contact_widgets.php:200 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:544 +msgid "View all contacts" +msgstr "" + +#: mod/contacts.php:549 mod/contacts.php:628 mod/contacts.php:804 +#: mod/admin.php:1089 +msgid "Unblock" +msgstr "" + +#: mod/contacts.php:549 mod/contacts.php:628 mod/contacts.php:804 +#: mod/admin.php:1088 +msgid "Block" +msgstr "" + +#: mod/contacts.php:552 +msgid "Toggle Blocked status" +msgstr "" + +#: mod/contacts.php:556 mod/contacts.php:629 mod/contacts.php:805 +msgid "Unignore" +msgstr "" + +#: mod/contacts.php:556 mod/contacts.php:629 mod/contacts.php:805 +#: mod/notifications.php:54 mod/notifications.php:179 mod/notifications.php:259 +msgid "Ignore" +msgstr "" + +#: mod/contacts.php:559 +msgid "Toggle Ignored status" +msgstr "" + +#: mod/contacts.php:564 mod/contacts.php:806 +msgid "Unarchive" +msgstr "" + +#: mod/contacts.php:564 mod/contacts.php:806 +msgid "Archive" +msgstr "" + +#: mod/contacts.php:567 +msgid "Toggle Archive status" +msgstr "" + +#: mod/contacts.php:571 +msgid "Repair" +msgstr "" + +#: mod/contacts.php:574 +msgid "Advanced Contact Settings" +msgstr "" + +#: mod/contacts.php:581 +msgid "Communications lost with this contact!" +msgstr "" + +#: mod/contacts.php:584 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:585 mod/admin.php:632 +msgid "Disabled" +msgstr "" + +#: mod/contacts.php:585 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:585 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:598 +msgid "Contact Editor" +msgstr "" + +#: mod/contacts.php:600 mod/manage.php:110 mod/fsuggest.php:107 +#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 +#: mod/events.php:566 mod/content.php:712 mod/install.php:250 +#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 +#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 mod/photos.php:1129 +#: mod/photos.php:1253 mod/photos.php:1571 mod/photos.php:1622 +#: mod/photos.php:1666 mod/photos.php:1754 object/Item.php:686 +#: view/theme/cleanzero/config.php:80 view/theme/dispy/config.php:70 +#: view/theme/quattro/config.php:64 view/theme/diabook/config.php:148 +#: view/theme/diabook/theme.php:633 view/theme/vier/config.php:107 +#: view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "" + +#: mod/contacts.php:601 +msgid "Profile Visibility" +msgstr "" + +#: mod/contacts.php:602 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: mod/contacts.php:603 +msgid "Contact Information / Notes" +msgstr "" + +#: mod/contacts.php:604 +msgid "Edit contact notes" +msgstr "" + +#: mod/contacts.php:609 mod/contacts.php:844 mod/viewcontacts.php:64 +#: mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: mod/contacts.php:610 +msgid "Block/Unblock contact" +msgstr "" + +#: mod/contacts.php:611 +msgid "Ignore contact" +msgstr "" + +#: mod/contacts.php:612 +msgid "Repair URL settings" +msgstr "" + +#: mod/contacts.php:613 +msgid "View conversations" +msgstr "" + +#: mod/contacts.php:615 +msgid "Delete contact" +msgstr "" + +#: mod/contacts.php:619 +msgid "Last update:" +msgstr "" + +#: mod/contacts.php:621 +msgid "Update public posts" +msgstr "" + +#: mod/contacts.php:623 mod/admin.php:1590 +msgid "Update now" +msgstr "" + +#: mod/contacts.php:625 mod/dirfind.php:141 include/contact_widgets.php:32 +#: include/conversation.php:903 +msgid "Connect/Follow" +msgstr "" + +#: mod/contacts.php:632 +msgid "Currently blocked" +msgstr "" + +#: mod/contacts.php:633 +msgid "Currently ignored" +msgstr "" + +#: mod/contacts.php:634 +msgid "Currently archived" +msgstr "" + +#: mod/contacts.php:635 mod/notifications.php:172 mod/notifications.php:251 +msgid "Hide this contact from others" +msgstr "" + +#: mod/contacts.php:635 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: mod/contacts.php:636 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:636 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:639 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:639 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:646 mod/follow.php:103 mod/notifications.php:255 +msgid "Profile URL" +msgstr "" + +#: mod/contacts.php:692 +msgid "Suggestions" +msgstr "" + +#: mod/contacts.php:695 +msgid "Suggest potential friends" +msgstr "" + +#: mod/contacts.php:699 mod/group.php:192 +msgid "All Contacts" +msgstr "" + +#: mod/contacts.php:702 +msgid "Show all contacts" +msgstr "" + +#: mod/contacts.php:706 +msgid "Unblocked" +msgstr "" + +#: mod/contacts.php:709 +msgid "Only show unblocked contacts" +msgstr "" + +#: mod/contacts.php:714 +msgid "Blocked" +msgstr "" + +#: mod/contacts.php:717 +msgid "Only show blocked contacts" +msgstr "" + +#: mod/contacts.php:722 +msgid "Ignored" +msgstr "" + +#: mod/contacts.php:725 +msgid "Only show ignored contacts" +msgstr "" + +#: mod/contacts.php:730 +msgid "Archived" +msgstr "" + +#: mod/contacts.php:733 +msgid "Only show archived contacts" +msgstr "" + +#: mod/contacts.php:738 +msgid "Hidden" +msgstr "" + +#: mod/contacts.php:741 +msgid "Only show hidden contacts" +msgstr "" + +#: mod/contacts.php:792 include/text.php:1005 include/nav.php:124 +#: include/nav.php:188 view/theme/diabook/theme.php:125 +msgid "Contacts" +msgstr "" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "" + +#: mod/contacts.php:797 mod/directory.php:63 +msgid "Finding: " +msgstr "" + +#: mod/contacts.php:798 mod/directory.php:65 include/contact_widgets.php:34 +msgid "Find" +msgstr "" + +#: mod/contacts.php:803 mod/settings.php:146 mod/settings.php:660 +msgid "Update" +msgstr "" + +#: mod/contacts.php:807 mod/group.php:171 mod/admin.php:1087 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:697 +#: mod/photos.php:1711 object/Item.php:131 include/conversation.php:613 +msgid "Delete" +msgstr "" + +#: mod/contacts.php:820 +msgid "Mutual Friendship" +msgstr "" + +#: mod/contacts.php:824 +msgid "is a fan of yours" +msgstr "" + +#: mod/contacts.php:828 +msgid "you are a fan of" +msgstr "" + +#: mod/contacts.php:845 mod/nogroup.php:41 +msgid "Edit contact" +msgstr "" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "" + +#: mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "" + +#: mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "" + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "" + +#: mod/profperm.php:19 mod/group.php:72 index.php:381 +msgid "Permission denied" +msgstr "" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "" + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "" + +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:530 +#: include/identity.php:611 include/identity.php:641 include/nav.php:77 +#: view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "" + +#: mod/profperm.php:106 mod/group.php:222 +msgid "Click on a contact to add or remove." +msgstr "" + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "" + +#: mod/display.php:82 mod/display.php:283 mod/display.php:500 +#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 +#: mod/notice.php:15 include/items.php:4866 +msgid "Item not found." +msgstr "" + +#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/search.php:99 mod/directory.php:35 mod/photos.php:968 +msgid "Public access denied." +msgstr "" + +#: mod/display.php:331 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "" + +#: mod/display.php:493 +msgid "Item has been removed." +msgstr "" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "" + +#: mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "" + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to " +"join." +msgstr "" + +#: mod/newmember.php:22 mod/admin.php:1184 mod/admin.php:1412 +#: mod/settings.php:99 include/nav.php:183 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "" + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "" + +#: mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished " +"directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "" + +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 +msgid "Upload Profile Photo" +msgstr "" + +#: mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make " +"friends than people who do not." +msgstr "" + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "" + +#: mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown " +"visitors." +msgstr "" + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "" + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "" + +#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 +msgid "Facebook" +msgstr "" + +#: mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "" + +#: mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "" + +#: mod/newmember.php:56 +msgid "Importing Emails" +msgstr "" + +#: mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "" + +#: mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "" + +#: mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "" + +#: mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "" + +#: mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "" + +#: mod/newmember.php:62 +msgid "Finding New People" +msgstr "" + +#: mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand " +"new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "" + +#: mod/newmember.php:66 include/group.php:270 +msgid "Groups" +msgstr "" + +#: mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "" + +#: mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with " +"each group privately on your Network page." +msgstr "" + +#: mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to " +"people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "" + +#: mod/newmember.php:78 +msgid "Getting Help" +msgstr "" + +#: mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "" + +#: mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program " +"features and resources." +msgstr "" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:204 mod/profile_photo.php:296 +#: mod/profile_photo.php:305 mod/photos.php:70 mod/photos.php:184 +#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 +#: mod/photos.php:1843 include/user.php:343 include/user.php:350 +#: include/user.php:357 view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "" + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "" + +#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:803 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:843 +msgid "Unable to process image." +msgstr "" + +#: mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "" + +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "" + +#: mod/profile_photo.php:245 +msgid "Upload" +msgstr "" + +#: mod/profile_photo.php:248 +msgid "or" +msgstr "" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "" + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "" + +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "" + +#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:870 +msgid "Image upload failed." +msgstr "" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 +#: include/conversation.php:126 include/conversation.php:253 +#: include/text.php:2031 include/diaspora.php:2140 +#: view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 +#: include/conversation.php:121 include/conversation.php:130 +#: include/conversation.php:248 include/conversation.php:257 +#: include/diaspora.php:2140 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "" + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "" + +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44 +msgid "Done" +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:69 object/Item.php:214 +msgid "ignored" +msgstr "" + +#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50 +msgid "Keep this window open until done." +msgstr "" + +#: mod/filer.php:30 include/conversation.php:1027 include/conversation.php:1045 +msgid "Save to Folder:" +msgstr "" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "" + +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 include/text.php:997 +msgid "Save" +msgstr "" + +#: mod/follow.php:27 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:35 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:86 mod/dfrn_request.php:847 +msgid "Please answer the following:" +msgstr "" + +#: mod/follow.php:87 mod/dfrn_request.php:848 +#, php-format +msgid "Does %s know you?" +msgstr "" + +#: mod/follow.php:87 mod/settings.php:1076 mod/settings.php:1082 +#: mod/settings.php:1090 mod/settings.php:1094 mod/settings.php:1099 +#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1117 +#: mod/settings.php:1143 mod/settings.php:1144 mod/settings.php:1145 +#: mod/settings.php:1146 mod/settings.php:1147 mod/dfrn_request.php:848 +#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/api.php:106 +msgid "No" +msgstr "" + +#: mod/follow.php:88 mod/dfrn_request.php:852 +msgid "Add a personal note:" +msgstr "" + +#: mod/follow.php:94 mod/dfrn_request.php:858 +msgid "Your Identity Address:" +msgstr "" + +#: mod/follow.php:97 mod/dfrn_request.php:861 +msgid "Submit Request" +msgstr "" + +#: mod/follow.php:107 mod/notifications.php:244 mod/events.php:558 +#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:42 +msgid "Location:" +msgstr "" + +#: mod/follow.php:109 mod/notifications.php:246 mod/directory.php:160 +#: include/identity.php:277 include/identity.php:582 +msgid "About:" +msgstr "" + +#: mod/follow.php:111 mod/notifications.php:248 include/identity.php:576 +msgid "Tags:" +msgstr "" + +#: mod/follow.php:144 +msgid "Contact added" +msgstr "" + +#: mod/item.php:114 +msgid "Unable to locate original post." +msgstr "" + +#: mod/item.php:322 +msgid "Empty post discarded." +msgstr "" + +#: mod/item.php:461 mod/wall_upload.php:199 mod/wall_upload.php:213 +#: mod/wall_upload.php:220 include/Photo.php:954 include/Photo.php:969 +#: include/Photo.php:976 include/Photo.php:998 include/message.php:145 +msgid "Wall Photos" +msgstr "" + +#: mod/item.php:835 +msgid "System error. Post not saved." +msgstr "" + +#: mod/item.php:964 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social network." +msgstr "" + +#: mod/item.php:966 +#, php-format +msgid "You may visit them online at %s" +msgstr "" + +#: mod/item.php:967 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "" + +#: mod/item.php:971 +#, php-format +msgid "%s posted an update." +msgstr "" + +#: mod/group.php:29 +msgid "Group created." +msgstr "" + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "" + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "" + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "" + +#: mod/group.php:87 +msgid "Save Group" +msgstr "" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "" + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "" + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "" + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "" + +#: mod/group.php:190 +msgid "Members" +msgstr "" + +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "" + +#: mod/apps.php:11 +msgid "Applications" +msgstr "" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "" + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 +msgid "Profile not found." +msgstr "" + +#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 #: mod/crepair.php:134 msgid "Contact not found." msgstr "" +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it " +"has already been approved." +msgstr "" + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "" + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "" + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "" + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "" + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "" + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "" + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "" + +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:636 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "" + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4289 +msgid "[Name Withheld]" +msgstr "" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "" + +#: mod/videos.php:115 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:120 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:199 +msgid "No videos selected" +msgstr "" + +#: mod/videos.php:300 mod/photos.php:1079 +msgid "Access to this item is restricted." +msgstr "" + +#: mod/videos.php:375 include/text.php:1457 +msgid "View Video" +msgstr "" + +#: mod/videos.php:382 mod/photos.php:1871 +msgid "View Album" +msgstr "" + +#: mod/videos.php:391 +msgid "Recent Videos" +msgstr "" + +#: mod/videos.php:393 +msgid "Upload New Videos" +msgstr "" + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + #: mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "" @@ -295,468 +1206,144 @@ msgstr "" msgid "Suggest a friend for %s" msgstr "" -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." +#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 +#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 +#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +msgid "Invalid request." msgstr "" -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." +#: mod/lostpass.php:19 +msgid "No valid account found." msgstr "" -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." msgstr "" -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "" - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "" -msgstr[1] "" - -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "" - -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "" - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "" - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "" - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "" - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "" - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "" - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "" - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "" - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "" - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "" - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "" - -#: mod/dfrn_request.php:507 include/follow.php:70 -msgid "Disallowed profile URL." -msgstr "" - -#: mod/dfrn_request.php:576 mod/contacts.php:194 -msgid "Failed to update contact record." -msgstr "" - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "" - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "" - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to this profile." -msgstr "" - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "" - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "" - -#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250 -msgid "[Name Withheld]" -msgstr "" - -#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 -#: mod/search.php:93 mod/search.php:98 mod/display.php:223 -#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35 -msgid "Public access denied." -msgstr "" - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "" - -#: mod/dfrn_request.php:840 +#: mod/lostpass.php:42 #, php-format msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today." +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the " +"verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." msgstr "" -#: mod/dfrn_request.php:845 -msgid "Friend/Connection Request" -msgstr "" - -#: mod/dfrn_request.php:846 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "" - -#: mod/dfrn_request.php:847 mod/follow.php:58 -msgid "Please answer the following:" -msgstr "" - -#: mod/dfrn_request.php:848 mod/follow.php:59 -#, php-format -msgid "Does %s know you?" -msgstr "" - -#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236 -#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074 -#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091 -#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109 -#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137 -#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658 -#: mod/profiles.php:662 -msgid "No" -msgstr "" - -#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105 -#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59 -#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082 -#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097 -#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135 -#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138 -#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661 -#: mod/suggest.php:29 include/items.php:4868 -msgid "Yes" -msgstr "" - -#: mod/dfrn_request.php:852 mod/follow.php:60 -msgid "Add a personal note:" -msgstr "" - -#: mod/dfrn_request.php:854 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "" - -#: mod/dfrn_request.php:855 -msgid "StatusNet/Federated Social Web" -msgstr "" - -#: mod/dfrn_request.php:856 mod/settings.php:793 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "" - -#: mod/dfrn_request.php:857 +#: mod/lostpass.php:53 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search " -"bar." +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after " +"logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" msgstr "" -#: mod/dfrn_request.php:858 mod/follow.php:66 -msgid "Your Identity Address:" -msgstr "" - -#: mod/dfrn_request.php:861 mod/follow.php:69 -msgid "Submit Request" -msgstr "" - -#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148 -#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225 -#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121 -#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633 -#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871 -#: include/conversation.php:1093 -msgid "Cancel" -msgstr "" - -#: mod/files.php:156 mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "" - -#: mod/profile.php:155 mod/display.php:343 -msgid "Access to this profile has been restricted." -msgstr "" - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "" - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "" - -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623 -#: mod/contacts.php:799 -msgid "Ignore" -msgstr "" - -#: mod/notifications.php:78 -msgid "System" -msgstr "" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "" - -#: mod/notifications.php:96 view/theme/diabook/theme.php:123 -#: include/nav.php:105 include/nav.php:156 -msgid "Home" -msgstr "" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "" - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "" - -#: mod/notifications.php:162 +#: mod/lostpass.php:72 #, php-format -msgid "suggested by %s" +msgid "Password reset requested at %s" msgstr "" -#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629 -msgid "Hide this contact from others" -msgstr "" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085 -msgid "Approve" -msgstr "" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "" - -#: mod/notifications.php:191 -msgid "yes" -msgstr "" - -#: mod/notifications.php:191 -msgid "no" -msgstr "" - -#: mod/notifications.php:192 +#: mod/lostpass.php:92 msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: mod/notifications.php:195 +#: mod/lostpass.php:109 boot.php:1288 +msgid "Password Reset" +msgstr "" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "" + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "" + +#: mod/lostpass.php:114 msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: mod/notifications.php:203 -msgid "Friend" -msgstr "" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "" - -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/event.php:42 include/identity.php:268 -#: include/bb2diaspora.php:170 -msgid "Location:" -msgstr "" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:582 -msgid "About:" -msgstr "" - -#: mod/notifications.php:224 include/identity.php:576 -msgid "Tags:" -msgstr "" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:541 -msgid "Gender:" -msgstr "" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "" - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 +#: mod/lostpass.php:125 #, php-format -msgid "%s liked %s's post" +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately " +"to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" msgstr "" -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 +#: mod/lostpass.php:131 #, php-format -msgid "%s disliked %s's post" +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after " +"logging in.\n" +"\t\t\t" msgstr "" -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 +#: mod/lostpass.php:147 #, php-format -msgid "%s is now friends with %s" +msgid "Your password has been changed at %s" msgstr "" -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" +#: mod/lostpass.php:159 +msgid "Forgot your Password?" msgstr "" -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: mod/notifications.php:329 -msgid "No more network notifications." +#: mod/lostpass.php:161 +msgid "Nickname or Email: " msgstr "" -#: mod/notifications.php:333 -msgid "Network Notifications" +#: mod/lostpass.php:162 +msgid "Reset" msgstr "" -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "" - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "" - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "" - -#: mod/notifications.php:547 -msgid "Home Notifications" -msgstr "" - -#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:471 include/text.php:2034 -#: include/diaspora.php:2134 include/conversation.php:126 -#: include/conversation.php:253 -msgid "photo" -msgstr "" - -#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -#: include/diaspora.php:2134 include/conversation.php:121 -#: include/conversation.php:130 include/conversation.php:248 -#: include/conversation.php:257 -msgid "status" -msgstr "" - -#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150 -#: include/conversation.php:137 +#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2156 +#: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" @@ -766,17 +1353,206 @@ msgstr "" msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." +#: mod/ping.php:233 +msgid "{0} wants to be your friend" msgstr "" -#: mod/openid.php:53 +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "" + +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "" + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "" + +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View Contacts" +msgstr "" + +#: mod/notifications.php:29 +msgid "Invalid request identifier." +msgstr "" + +#: mod/notifications.php:38 mod/notifications.php:180 mod/notifications.php:260 +msgid "Discard" +msgstr "" + +#: mod/notifications.php:81 +msgid "System" +msgstr "" + +#: mod/notifications.php:87 mod/admin.php:205 include/nav.php:155 +msgid "Network" +msgstr "" + +#: mod/notifications.php:93 mod/network.php:375 +msgid "Personal" +msgstr "" + +#: mod/notifications.php:99 include/nav.php:105 include/nav.php:158 +#: view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "" + +#: mod/notifications.php:105 include/nav.php:163 +msgid "Introductions" +msgstr "" + +#: mod/notifications.php:130 +msgid "Show Ignored Requests" +msgstr "" + +#: mod/notifications.php:130 +msgid "Hide Ignored Requests" +msgstr "" + +#: mod/notifications.php:164 mod/notifications.php:234 +msgid "Notification type: " +msgstr "" + +#: mod/notifications.php:165 +msgid "Friend Suggestion" +msgstr "" + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "Post a new friend activity" +msgstr "" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "if applicable" +msgstr "" + +#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1085 +msgid "Approve" +msgstr "" + +#: mod/notifications.php:196 +msgid "Claims to be known to you: " +msgstr "" + +#: mod/notifications.php:196 +msgid "yes" +msgstr "" + +#: mod/notifications.php:196 +msgid "no" +msgstr "" + +#: mod/notifications.php:197 msgid "" -"Account not found and OpenID registration is not permitted on this site." +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " msgstr "" -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." +#: mod/notifications.php:200 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "" + +#: mod/notifications.php:208 +msgid "Friend" +msgstr "" + +#: mod/notifications.php:209 +msgid "Sharer" +msgstr "" + +#: mod/notifications.php:209 +msgid "Fan/Admirer" +msgstr "" + +#: mod/notifications.php:235 +msgid "Friend/Connect Request" +msgstr "" + +#: mod/notifications.php:235 +msgid "New Follower" +msgstr "" + +#: mod/notifications.php:250 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:541 +msgid "Gender:" +msgstr "" + +#: mod/notifications.php:266 +msgid "No introductions." +msgstr "" + +#: mod/notifications.php:269 include/nav.php:166 +msgid "Notifications" +msgstr "" + +#: mod/notifications.php:307 mod/notifications.php:436 +#: mod/notifications.php:527 +#, php-format +msgid "%s liked %s's post" +msgstr "" + +#: mod/notifications.php:317 mod/notifications.php:446 +#: mod/notifications.php:537 +#, php-format +msgid "%s disliked %s's post" +msgstr "" + +#: mod/notifications.php:332 mod/notifications.php:461 +#: mod/notifications.php:552 +#, php-format +msgid "%s is now friends with %s" +msgstr "" + +#: mod/notifications.php:339 mod/notifications.php:468 +#, php-format +msgid "%s created a new post" +msgstr "" + +#: mod/notifications.php:340 mod/notifications.php:469 +#: mod/notifications.php:562 +#, php-format +msgid "%s commented on %s's post" +msgstr "" + +#: mod/notifications.php:355 +msgid "No more network notifications." +msgstr "" + +#: mod/notifications.php:359 +msgid "Network Notifications" +msgstr "" + +#: mod/notifications.php:385 mod/notify.php:72 +msgid "No more system notifications." +msgstr "" + +#: mod/notifications.php:389 mod/notify.php:76 +msgid "System Notifications" +msgstr "" + +#: mod/notifications.php:484 +msgid "No more personal notifications." +msgstr "" + +#: mod/notifications.php:488 +msgid "Personal Notifications" +msgstr "" + +#: mod/notifications.php:569 +msgid "No more home notifications." +msgstr "" + +#: mod/notifications.php:573 +msgid "Home Notifications" msgstr "" #: mod/babel.php:17 @@ -827,6 +1603,290 @@ msgstr "" msgid "diaspora2bb: " msgstr "" +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "" + +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "" + +#: mod/message.php:9 include/nav.php:175 +msgid "New Message" +msgstr "" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "" + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "" + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "" + +#: mod/message.php:74 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "" + +#: mod/message.php:77 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "" + +#: mod/message.php:183 include/nav.php:172 +msgid "Messages" +msgstr "" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "" + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "" + +#: mod/message.php:284 mod/message.php:292 mod/message.php:467 +#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1023 include/conversation.php:1041 +msgid "Please enter a link URL:" +msgstr "" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "" + +#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 +#: mod/editpost.php:110 include/conversation.php:1078 +msgid "Upload photo" +msgstr "" + +#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 +#: mod/editpost.php:114 include/conversation.php:1082 +msgid "Insert web link" +msgstr "" + +#: mod/message.php:335 mod/message.php:566 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 +#: mod/photos.php:1602 object/Item.php:372 include/conversation.php:691 +#: include/conversation.php:1096 +msgid "Please wait" +msgstr "" + +#: mod/message.php:372 +msgid "No messages." +msgstr "" + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "" + +#: mod/message.php:521 +msgid "Delete message" +msgstr "" + +#: mod/message.php:549 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: mod/message.php:553 +msgid "Send Reply" +msgstr "" + +#: mod/update_display.php:22 mod/update_community.php:18 +#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "" + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "" + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "" + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "" + +#: mod/crepair.php:142 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." +msgstr "" + +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "" + +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "" + +#: mod/crepair.php:170 mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 +#: mod/admin.php:1109 mod/settings.php:636 mod/settings.php:662 +msgid "Name" +msgstr "" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: mod/bookmarklet.php:12 boot.php:1274 include/nav.php:92 +msgid "Login" +msgstr "" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "" + +#: mod/dirfind.php:42 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:139 mod/match.php:71 mod/suggest.php:92 +#: include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "" + +#: mod/dirfind.php:140 include/Contact.php:237 include/conversation.php:891 +#: include/conversation.php:905 +msgid "View Profile" +msgstr "" + +#: mod/dirfind.php:159 mod/match.php:78 +msgid "No matches" +msgstr "" + +#: mod/fbrowser.php:32 include/identity.php:649 include/nav.php:78 +#: view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "" + +#: mod/fbrowser.php:122 +msgid "Files" +msgstr "" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "" + #: mod/admin.php:57 msgid "Theme settings updated." msgstr "" @@ -867,7 +1927,7 @@ msgstr "" msgid "check webfinger" msgstr "" -#: mod/admin.php:131 include/nav.php:193 +#: mod/admin.php:131 include/nav.php:195 msgid "Admin" msgstr "" @@ -883,12 +1943,6 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15 -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 include/items.php:4827 -msgid "Item not found." -msgstr "" - #: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077 #: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443 #: mod/admin.php:1530 @@ -982,7 +2036,7 @@ msgstr "" msgid "Site settings updated." msgstr "" -#: mod/admin.php:599 mod/settings.php:885 +#: mod/admin.php:599 mod/settings.php:887 msgid "No special theme for mobile devices" msgstr "" @@ -998,10 +2052,6 @@ msgstr "" msgid "Global community page" msgstr "" -#: mod/admin.php:623 mod/contacts.php:526 -msgid "Never" -msgstr "" - #: mod/admin.php:624 msgid "At post arrival" msgstr "" @@ -1022,10 +2072,6 @@ msgstr "" msgid "Daily" msgstr "" -#: mod/admin.php:632 mod/contacts.php:585 -msgid "Disabled" -msgstr "" - #: mod/admin.php:634 msgid "Users, Global Contacts" msgstr "" @@ -1079,8 +2125,8 @@ msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" #: mod/admin.php:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786 -#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167 +#: mod/settings.php:634 mod/settings.php:744 mod/settings.php:788 +#: mod/settings.php:857 mod/settings.php:943 mod/settings.php:1175 msgid "Save Settings" msgstr "" @@ -1918,11 +2964,6 @@ msgstr "" msgid "Request date" msgstr "" -#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109 -#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170 -msgid "Name" -msgstr "" - #: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111 #: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" @@ -1936,16 +2977,6 @@ msgstr "" msgid "Deny" msgstr "" -#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622 -#: mod/contacts.php:798 -msgid "Block" -msgstr "" - -#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622 -#: mod/contacts.php:798 -msgid "Unblock" -msgstr "" - #: mod/admin.php:1090 msgid "Site admin" msgstr "" @@ -2028,12 +3059,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22 -#: mod/settings.php:99 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 include/nav.php:181 -msgid "Settings" -msgstr "" - #: mod/admin.php:1191 mod/admin.php:1421 msgid "Author: " msgstr "" @@ -2084,10 +3109,6 @@ msgstr "" msgid "Log level" msgstr "" -#: mod/admin.php:1590 mod/contacts.php:619 -msgid "Update now" -msgstr "" - #: mod/admin.php:1591 include/acl_selectors.php:347 msgid "Close" msgstr "" @@ -2108,299 +3129,112 @@ msgstr "" msgid "FTP Password" msgstr "" -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "" - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "" - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "" - -#: mod/message.php:74 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "" - -#: mod/message.php:77 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "" - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "" - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "" - -#: mod/message.php:284 mod/message.php:292 mod/message.php:467 -#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "" - -#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110 -#: mod/wallmessage.php:154 include/conversation.php:1056 -msgid "Upload photo" -msgstr "" - -#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114 -#: mod/wallmessage.php:155 include/conversation.php:1060 -msgid "Insert web link" -msgstr "" - -#: mod/message.php:372 -msgid "No messages." -msgstr "" - -#: mod/message.php:379 +#: mod/network.php:143 #, php-format -msgid "Unknown sender - %s" +msgid "Search Results For: %s" msgstr "" -#: mod/message.php:382 +#: mod/network.php:187 mod/search.php:25 +msgid "Remove term" +msgstr "" + +#: mod/network.php:196 mod/search.php:34 include/features.php:43 +msgid "Saved Searches" +msgstr "" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "" + +#: mod/network.php:358 +msgid "Commented Order" +msgstr "" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "" + +#: mod/network.php:365 +msgid "Posted Order" +msgstr "" + +#: mod/network.php:368 +msgid "Sort by Post Date" +msgstr "" + +#: mod/network.php:378 +msgid "Posts that mention or involve you" +msgstr "" + +#: mod/network.php:385 +msgid "New" +msgstr "" + +#: mod/network.php:388 +msgid "Activity Stream - by date" +msgstr "" + +#: mod/network.php:395 +msgid "Shared Links" +msgstr "" + +#: mod/network.php:398 +msgid "Interesting Links" +msgstr "" + +#: mod/network.php:405 +msgid "Starred" +msgstr "" + +#: mod/network.php:408 +msgid "Favourite Posts" +msgstr "" + +#: mod/network.php:466 #, php-format -msgid "You and %s" -msgstr "" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." msgstr[0] "" msgstr[1] "" -#: mod/message.php:451 -msgid "Message not available." +#: mod/network.php:469 +msgid "Private messages to this group are at risk of public disclosure." msgstr "" -#: mod/message.php:521 -msgid "Delete message" +#: mod/network.php:532 mod/content.php:119 +msgid "No such group" msgstr "" -#: mod/message.php:549 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: mod/network.php:549 mod/content.php:130 +msgid "Group is empty" msgstr "" -#: mod/message.php:553 -msgid "Send Reply" -msgstr "" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "" - -#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997 -msgid "Save" -msgstr "" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "" - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:627 -msgid "Profile not found." -msgstr "" - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." -msgstr "" - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "" - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "" - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "" - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "" - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "" - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "" - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "" - -#: mod/dfrn_confirm.php:487 include/diaspora.php:633 -#: include/conversation.php:172 +#: mod/network.php:560 mod/content.php:135 #, php-format -msgid "%1$s is now friends with %2$s" +msgid "Group: %s" msgstr "" -#: mod/dfrn_confirm.php:572 +#: mod/network.php:578 #, php-format -msgid "No user record found for '%s' " +msgid "Contact: %s" msgstr "" -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." +#: mod/network.php:582 +msgid "Private messages to this person are at risk of public disclosure." msgstr "" -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." +#: mod/network.php:587 +msgid "Invalid contact." msgstr "" -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: mod/dfrn_confirm.php:628 +#: mod/allfriends.php:37 #, php-format -msgid "Site public key not available in contact record for URL %s." +msgid "Friends of %s" msgstr "" -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "" - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "" - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" +#: mod/allfriends.php:44 +msgid "No friends to display." msgstr "" #: mod/events.php:71 mod/events.php:73 @@ -2411,165 +3245,393 @@ msgstr "" msgid "Event title and start time are required." msgstr "" -#: mod/events.php:317 +#: mod/events.php:196 +msgid "Sun" +msgstr "" + +#: mod/events.php:197 +msgid "Mon" +msgstr "" + +#: mod/events.php:198 +msgid "Tue" +msgstr "" + +#: mod/events.php:199 +msgid "Wed" +msgstr "" + +#: mod/events.php:200 +msgid "Thu" +msgstr "" + +#: mod/events.php:201 +msgid "Fri" +msgstr "" + +#: mod/events.php:202 +msgid "Sat" +msgstr "" + +#: mod/events.php:203 mod/settings.php:922 include/text.php:1266 +msgid "Sunday" +msgstr "" + +#: mod/events.php:204 mod/settings.php:922 include/text.php:1266 +msgid "Monday" +msgstr "" + +#: mod/events.php:205 include/text.php:1266 +msgid "Tuesday" +msgstr "" + +#: mod/events.php:206 include/text.php:1266 +msgid "Wednesday" +msgstr "" + +#: mod/events.php:207 include/text.php:1266 +msgid "Thursday" +msgstr "" + +#: mod/events.php:208 include/text.php:1266 +msgid "Friday" +msgstr "" + +#: mod/events.php:209 include/text.php:1266 +msgid "Saturday" +msgstr "" + +#: mod/events.php:210 +msgid "Jan" +msgstr "" + +#: mod/events.php:211 +msgid "Feb" +msgstr "" + +#: mod/events.php:212 +msgid "Mar" +msgstr "" + +#: mod/events.php:213 +msgid "Apr" +msgstr "" + +#: mod/events.php:214 mod/events.php:226 include/text.php:1270 +msgid "May" +msgstr "" + +#: mod/events.php:215 +msgid "Jun" +msgstr "" + +#: mod/events.php:216 +msgid "Jul" +msgstr "" + +#: mod/events.php:217 +msgid "Aug" +msgstr "" + +#: mod/events.php:218 +msgid "Sept" +msgstr "" + +#: mod/events.php:219 +msgid "Oct" +msgstr "" + +#: mod/events.php:220 +msgid "Nov" +msgstr "" + +#: mod/events.php:221 +msgid "Dec" +msgstr "" + +#: mod/events.php:222 include/text.php:1270 +msgid "January" +msgstr "" + +#: mod/events.php:223 include/text.php:1270 +msgid "February" +msgstr "" + +#: mod/events.php:224 include/text.php:1270 +msgid "March" +msgstr "" + +#: mod/events.php:225 include/text.php:1270 +msgid "April" +msgstr "" + +#: mod/events.php:227 include/text.php:1270 +msgid "June" +msgstr "" + +#: mod/events.php:228 include/text.php:1270 +msgid "July" +msgstr "" + +#: mod/events.php:229 include/text.php:1270 +msgid "August" +msgstr "" + +#: mod/events.php:230 include/text.php:1270 +msgid "September" +msgstr "" + +#: mod/events.php:231 include/text.php:1270 +msgid "October" +msgstr "" + +#: mod/events.php:232 include/text.php:1270 +msgid "November" +msgstr "" + +#: mod/events.php:233 include/text.php:1270 +msgid "December" +msgstr "" + +#: mod/events.php:234 +msgid "today" +msgstr "" + +#: mod/events.php:235 include/datetime.php:273 +msgid "month" +msgstr "" + +#: mod/events.php:236 include/datetime.php:274 +msgid "week" +msgstr "" + +#: mod/events.php:237 include/datetime.php:275 +msgid "day" +msgstr "" + +#: mod/events.php:372 msgid "l, F j" msgstr "" -#: mod/events.php:339 +#: mod/events.php:394 msgid "Edit event" msgstr "" -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +#: mod/events.php:416 include/text.php:1713 include/text.php:1720 msgid "link to source" msgstr "" -#: mod/events.php:396 view/theme/diabook/theme.php:127 -#: include/identity.php:668 include/nav.php:80 +#: mod/events.php:451 include/identity.php:669 include/nav.php:80 +#: include/nav.php:141 view/theme/diabook/theme.php:127 msgid "Events" msgstr "" -#: mod/events.php:397 +#: mod/events.php:452 msgid "Create New Event" msgstr "" -#: mod/events.php:398 +#: mod/events.php:453 msgid "Previous" msgstr "" -#: mod/events.php:399 mod/install.php:209 +#: mod/events.php:454 mod/install.php:209 msgid "Next" msgstr "" -#: mod/events.php:491 +#: mod/events.php:546 msgid "Event details" msgstr "" -#: mod/events.php:492 +#: mod/events.php:547 msgid "Starting date and Title are required." msgstr "" -#: mod/events.php:493 +#: mod/events.php:548 msgid "Event Starts:" msgstr "" -#: mod/events.php:493 mod/events.php:505 +#: mod/events.php:548 mod/events.php:560 msgid "Required" msgstr "" -#: mod/events.php:495 +#: mod/events.php:550 msgid "Finish date/time is not known or not relevant" msgstr "" -#: mod/events.php:497 +#: mod/events.php:552 msgid "Event Finishes:" msgstr "" -#: mod/events.php:499 +#: mod/events.php:554 msgid "Adjust for viewer timezone" msgstr "" -#: mod/events.php:501 +#: mod/events.php:556 msgid "Description:" msgstr "" -#: mod/events.php:505 +#: mod/events.php:560 msgid "Title:" msgstr "" -#: mod/events.php:507 +#: mod/events.php:562 msgid "Share this event" msgstr "" -#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126 -#: include/identity.php:649 include/nav.php:78 -msgid "Photos" +#: mod/events.php:564 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1623 mod/photos.php:1667 mod/photos.php:1755 +#: object/Item.php:695 include/conversation.php:1111 +msgid "Preview" msgstr "" -#: mod/fbrowser.php:122 -msgid "Files" +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1710 +#: object/Item.php:130 include/conversation.php:612 +msgid "Select" msgstr "" -#: mod/home.php:35 +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:334 object/Item.php:335 include/conversation.php:653 #, php-format -msgid "Welcome to %s" +msgid "View %s's profile @ %s" msgstr "" -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "" - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#: mod/content.php:483 mod/content.php:866 object/Item.php:348 +#: include/conversation.php:673 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." +msgid "%s from %s" msgstr "" -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" msgstr "" -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "" - -#: mod/wallmessage.php:143 +#: mod/content.php:605 object/Item.php:395 #, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: mod/content.php:607 object/Item.php:397 object/Item.php:410 +#: include/text.php:2035 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: mod/content.php:608 boot.php:766 object/Item.php:398 +#: include/contact_widgets.php:205 include/items.php:5186 +msgid "show more" msgstr "" -#: mod/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838 -#: mod/viewcontacts.php:64 -#, php-format -msgid "Visit %s's profile [%s]" +#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 +msgid "Private Message" msgstr "" -#: mod/nogroup.php:41 mod/contacts.php:839 -msgid "Edit contact" +#: mod/content.php:686 mod/photos.php:1599 object/Item.php:232 +msgid "I like this (toggle)" msgstr "" -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" +#: mod/content.php:686 object/Item.php:232 +msgid "like" msgstr "" -#: mod/friendica.php:59 -msgid "This is Friendica, version" +#: mod/content.php:687 mod/photos.php:1600 object/Item.php:233 +msgid "I don't like this (toggle)" msgstr "" -#: mod/friendica.php:60 -msgid "running at web location" +#: mod/content.php:687 object/Item.php:233 +msgid "dislike" msgstr "" -#: mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." +#: mod/content.php:689 object/Item.php:235 +msgid "Share this" msgstr "" -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" +#: mod/content.php:689 object/Item.php:235 +msgid "share" msgstr "" -#: mod/friendica.php:64 -msgid "the bugtracker at github" +#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1663 +#: mod/photos.php:1751 object/Item.php:683 +msgid "This is you" msgstr "" -#: mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" +#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1665 +#: mod/photos.php:1753 boot.php:765 object/Item.php:369 object/Item.php:685 +msgid "Comment" msgstr "" -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" +#: mod/content.php:713 object/Item.php:687 +msgid "Bold" msgstr "" -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" +#: mod/content.php:714 object/Item.php:688 +msgid "Italic" +msgstr "" + +#: mod/content.php:715 object/Item.php:689 +msgid "Underline" +msgstr "" + +#: mod/content.php:716 object/Item.php:690 +msgid "Quote" +msgstr "" + +#: mod/content.php:717 object/Item.php:691 +msgid "Code" +msgstr "" + +#: mod/content.php:718 object/Item.php:692 +msgid "Image" +msgstr "" + +#: mod/content.php:719 object/Item.php:693 +msgid "Link" +msgstr "" + +#: mod/content.php:720 object/Item.php:694 +msgid "Video" +msgstr "" + +#: mod/content.php:730 mod/settings.php:696 object/Item.php:121 +msgid "Edit" +msgstr "" + +#: mod/content.php:755 object/Item.php:196 +msgid "add star" +msgstr "" + +#: mod/content.php:756 object/Item.php:197 +msgid "remove star" +msgstr "" + +#: mod/content.php:757 object/Item.php:198 +msgid "toggle star status" +msgstr "" + +#: mod/content.php:760 object/Item.php:201 +msgid "starred" +msgstr "" + +#: mod/content.php:761 object/Item.php:221 +msgid "add tag" +msgstr "" + +#: mod/content.php:765 object/Item.php:134 +msgid "save to folder" +msgstr "" + +#: mod/content.php:856 object/Item.php:336 +msgid "to" +msgstr "" + +#: mod/content.php:857 object/Item.php:338 +msgid "Wall-to-Wall" +msgstr "" + +#: mod/content.php:858 object/Item.php:339 +msgid "via Wall-To-Wall:" msgstr "" #: mod/removeme.php:46 mod/removeme.php:49 @@ -2586,2645 +3648,6 @@ msgstr "" msgid "Please enter your password for verification:" msgstr "" -#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 -#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 -#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 -msgid "Invalid request." -msgstr "" - -#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "" - -#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220 -#: mod/item.php:486 include/message.php:145 include/Photo.php:951 -#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 -msgid "Wall Photos" -msgstr "" - -#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301 -msgid "Image upload failed." -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/tagger.php:95 include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "" - -#: mod/photos.php:84 include/identity.php:652 -msgid "Photo Albums" -msgstr "" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "" - -#: mod/photos.php:102 mod/settings.php:34 -msgid "everybody" -msgstr "" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "" - -#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 -#: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81 -#: mod/profile_photo.php:88 mod/profile_photo.php:204 -#: mod/profile_photo.php:296 mod/profile_photo.php:305 -#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350 -#: include/user.php:357 -msgid "Profile Photos" -msgstr "" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "" - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "" - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "" - -#: mod/photos.php:1053 mod/videos.php:298 -msgid "Access to this item is restricted." -msgstr "" - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "" - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "" - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "" - -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202 -msgid "Show to Groups" -msgstr "" - -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203 -msgid "Show to Contacts" -msgstr "" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "" - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "" - -#: mod/photos.php:1522 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "" - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "" - -#: mod/photos.php:1827 mod/videos.php:380 -msgid "View Album" -msgstr "" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "" - -#: mod/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "" - -#: mod/register.php:97 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
    login: %s
    " -"password: %s

    You can change your password after login." -msgstr "" - -#: mod/register.php:107 -msgid "Your registration can not be processed." -msgstr "" - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: mod/register.php:188 mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: mod/register.php:216 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" - -#: mod/register.php:217 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" - -#: mod/register.php:218 -msgid "Your OpenID (optional): " -msgstr "" - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "" - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "" - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "" - -#: mod/register.php:271 mod/settings.php:1174 -msgid "New Password:" -msgstr "" - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:272 mod/settings.php:1175 -msgid "Confirm:" -msgstr "" - -#: mod/register.php:273 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@$sitename'." -msgstr "" - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "" - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "" - -#: mod/register.php:283 mod/uimport.php:64 -msgid "Import" -msgstr "" - -#: mod/register.php:284 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "" - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the " -"verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after " -"logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: mod/lostpass.php:109 boot.php:1287 -msgid "Password Reset" -msgstr "" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "" - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately " -"to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "" - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after " -"logging in.\n" -"\t\t\t" -msgstr "" - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "" - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "" - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "" - -#: mod/apps.php:11 -msgid "Applications" -msgstr "" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "" - -#: mod/help.php:31 -msgid "Help:" -msgstr "" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "" - -#: mod/contacts.php:114 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" - -#: mod/contacts.php:145 mod/contacts.php:368 -msgid "Could not access contact record." -msgstr "" - -#: mod/contacts.php:159 -msgid "Could not locate selected profile." -msgstr "" - -#: mod/contacts.php:192 -msgid "Contact updated." -msgstr "" - -#: mod/contacts.php:389 -msgid "Contact has been blocked" -msgstr "" - -#: mod/contacts.php:389 -msgid "Contact has been unblocked" -msgstr "" - -#: mod/contacts.php:400 -msgid "Contact has been ignored" -msgstr "" - -#: mod/contacts.php:400 -msgid "Contact has been unignored" -msgstr "" - -#: mod/contacts.php:412 -msgid "Contact has been archived" -msgstr "" - -#: mod/contacts.php:412 -msgid "Contact has been unarchived" -msgstr "" - -#: mod/contacts.php:439 mod/contacts.php:795 -msgid "Do you really want to delete this contact?" -msgstr "" - -#: mod/contacts.php:456 -msgid "Contact has been removed." -msgstr "" - -#: mod/contacts.php:494 -#, php-format -msgid "You are mutual friends with %s" -msgstr "" - -#: mod/contacts.php:498 -#, php-format -msgid "You are sharing with %s" -msgstr "" - -#: mod/contacts.php:503 -#, php-format -msgid "%s is sharing with you" -msgstr "" - -#: mod/contacts.php:523 -msgid "Private communications are not available for this contact." -msgstr "" - -#: mod/contacts.php:530 -msgid "(Update was successful)" -msgstr "" - -#: mod/contacts.php:530 -msgid "(Update was not successful)" -msgstr "" - -#: mod/contacts.php:532 -msgid "Suggest friends" -msgstr "" - -#: mod/contacts.php:536 -#, php-format -msgid "Network type: %s" -msgstr "" - -#: mod/contacts.php:539 include/contact_widgets.php:200 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "" -msgstr[1] "" - -#: mod/contacts.php:544 -msgid "View all contacts" -msgstr "" - -#: mod/contacts.php:552 -msgid "Toggle Blocked status" -msgstr "" - -#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 -msgid "Unignore" -msgstr "" - -#: mod/contacts.php:559 -msgid "Toggle Ignored status" -msgstr "" - -#: mod/contacts.php:564 mod/contacts.php:800 -msgid "Unarchive" -msgstr "" - -#: mod/contacts.php:564 mod/contacts.php:800 -msgid "Archive" -msgstr "" - -#: mod/contacts.php:567 -msgid "Toggle Archive status" -msgstr "" - -#: mod/contacts.php:571 -msgid "Repair" -msgstr "" - -#: mod/contacts.php:574 -msgid "Advanced Contact Settings" -msgstr "" - -#: mod/contacts.php:581 -msgid "Communications lost with this contact!" -msgstr "" - -#: mod/contacts.php:584 -msgid "Fetch further information for feeds" -msgstr "" - -#: mod/contacts.php:585 -msgid "Fetch information" -msgstr "" - -#: mod/contacts.php:585 -msgid "Fetch information and keywords" -msgstr "" - -#: mod/contacts.php:594 -msgid "Contact Editor" -msgstr "" - -#: mod/contacts.php:597 -msgid "Profile Visibility" -msgstr "" - -#: mod/contacts.php:598 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: mod/contacts.php:599 -msgid "Contact Information / Notes" -msgstr "" - -#: mod/contacts.php:600 -msgid "Edit contact notes" -msgstr "" - -#: mod/contacts.php:606 -msgid "Block/Unblock contact" -msgstr "" - -#: mod/contacts.php:607 -msgid "Ignore contact" -msgstr "" - -#: mod/contacts.php:608 -msgid "Repair URL settings" -msgstr "" - -#: mod/contacts.php:609 -msgid "View conversations" -msgstr "" - -#: mod/contacts.php:611 -msgid "Delete contact" -msgstr "" - -#: mod/contacts.php:615 -msgid "Last update:" -msgstr "" - -#: mod/contacts.php:617 -msgid "Update public posts" -msgstr "" - -#: mod/contacts.php:626 -msgid "Currently blocked" -msgstr "" - -#: mod/contacts.php:627 -msgid "Currently ignored" -msgstr "" - -#: mod/contacts.php:628 -msgid "Currently archived" -msgstr "" - -#: mod/contacts.php:629 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" - -#: mod/contacts.php:630 -msgid "Notification for new posts" -msgstr "" - -#: mod/contacts.php:630 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: mod/contacts.php:633 -msgid "Blacklisted keywords" -msgstr "" - -#: mod/contacts.php:633 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:640 -msgid "Profile URL" -msgstr "" - -#: mod/contacts.php:686 -msgid "Suggestions" -msgstr "" - -#: mod/contacts.php:689 -msgid "Suggest potential friends" -msgstr "" - -#: mod/contacts.php:693 mod/group.php:192 -msgid "All Contacts" -msgstr "" - -#: mod/contacts.php:696 -msgid "Show all contacts" -msgstr "" - -#: mod/contacts.php:700 -msgid "Unblocked" -msgstr "" - -#: mod/contacts.php:703 -msgid "Only show unblocked contacts" -msgstr "" - -#: mod/contacts.php:708 -msgid "Blocked" -msgstr "" - -#: mod/contacts.php:711 -msgid "Only show blocked contacts" -msgstr "" - -#: mod/contacts.php:716 -msgid "Ignored" -msgstr "" - -#: mod/contacts.php:719 -msgid "Only show ignored contacts" -msgstr "" - -#: mod/contacts.php:724 -msgid "Archived" -msgstr "" - -#: mod/contacts.php:727 -msgid "Only show archived contacts" -msgstr "" - -#: mod/contacts.php:732 -msgid "Hidden" -msgstr "" - -#: mod/contacts.php:735 -msgid "Only show hidden contacts" -msgstr "" - -#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 -#: include/nav.php:124 include/nav.php:186 -msgid "Contacts" -msgstr "" - -#: mod/contacts.php:790 -msgid "Search your contacts" -msgstr "" - -#: mod/contacts.php:791 mod/directory.php:63 -msgid "Finding: " -msgstr "" - -#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 -msgid "Find" -msgstr "" - -#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 -msgid "Update" -msgstr "" - -#: mod/contacts.php:814 -msgid "Mutual Friendship" -msgstr "" - -#: mod/contacts.php:818 -msgid "is a fan of yours" -msgstr "" - -#: mod/contacts.php:822 -msgid "you are a fan of" -msgstr "" - -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "" - -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "" - -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "" - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "" - -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:108 -msgid "Contact added" -msgstr "" - -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "" - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also " -"to inform your friends that you moved here." -msgstr "" - -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "" - -#: mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "" - -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "" - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "" - -#: mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "" - -#: mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "" - -#: mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "" - -#: mod/newmember.php:14 -msgid "Getting Started" -msgstr "" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to " -"join." -msgstr "" - -#: mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "" - -#: mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "" - -#: mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished " -"directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "" - -#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 -#: include/identity.php:530 include/identity.php:611 include/identity.php:641 -#: include/nav.php:77 -msgid "Profile" -msgstr "" - -#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "" - -#: mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make " -"friends than people who do not." -msgstr "" - -#: mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "" - -#: mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown " -"visitors." -msgstr "" - -#: mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "" - -#: mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "" - -#: mod/newmember.php:44 -msgid "Connecting" -msgstr "" - -#: mod/newmember.php:49 mod/newmember.php:51 include/contact_selectors.php:81 -msgid "Facebook" -msgstr "" - -#: mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "" - -#: mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "" - -#: mod/newmember.php:56 -msgid "Importing Emails" -msgstr "" - -#: mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "" - -#: mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "" - -#: mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "" - -#: mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "" - -#: mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "" - -#: mod/newmember.php:62 -msgid "Finding New People" -msgstr "" - -#: mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand " -"new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "" - -#: mod/newmember.php:66 include/group.php:270 -msgid "Groups" -msgstr "" - -#: mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "" - -#: mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with " -"each group privately on your Network page." -msgstr "" - -#: mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "" - -#: mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to " -"people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "" - -#: mod/newmember.php:78 -msgid "Getting Help" -msgstr "" - -#: mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "" - -#: mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program " -"features and resources." -msgstr "" - -#: mod/search.php:25 mod/network.php:187 -msgid "Remove term" -msgstr "" - -#: mod/search.php:34 mod/network.php:196 include/features.php:42 -msgid "Saved Searches" -msgstr "" - -#: mod/search.php:107 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "" - -#: mod/search.php:199 mod/community.php:62 mod/community.php:71 -msgid "No results." -msgstr "" - -#: mod/search.php:205 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: mod/search.php:207 -#, php-format -msgid "Search results for: %s" -msgstr "" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "" - -#: mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "" - -#: mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many " -"other social networks." -msgstr "" - -#: mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" - -#: mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "" - -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other " -"public sites or invite members." -msgstr "" - -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" - -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "" - -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "" - -#: mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "" - -#: mod/settings.php:47 -msgid "Additional features" -msgstr "" - -#: mod/settings.php:53 -msgid "Display" -msgstr "" - -#: mod/settings.php:60 mod/settings.php:837 -msgid "Social Networks" -msgstr "" - -#: mod/settings.php:72 include/nav.php:179 -msgid "Delegations" -msgstr "" - -#: mod/settings.php:78 -msgid "Connected apps" -msgstr "" - -#: mod/settings.php:84 mod/uexport.php:85 -msgid "Export personal data" -msgstr "" - -#: mod/settings.php:90 -msgid "Remove account" -msgstr "" - -#: mod/settings.php:143 -msgid "Missing some important data!" -msgstr "" - -#: mod/settings.php:256 -msgid "Failed to connect with email account using the settings provided." -msgstr "" - -#: mod/settings.php:261 -msgid "Email settings updated." -msgstr "" - -#: mod/settings.php:276 -msgid "Features updated" -msgstr "" - -#: mod/settings.php:339 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: mod/settings.php:353 include/user.php:39 -msgid "Passwords do not match. Password unchanged." -msgstr "" - -#: mod/settings.php:358 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: mod/settings.php:366 -msgid "Wrong password." -msgstr "" - -#: mod/settings.php:377 -msgid "Password changed." -msgstr "" - -#: mod/settings.php:379 -msgid "Password update failed. Please try again." -msgstr "" - -#: mod/settings.php:446 -msgid " Please use a shorter name." -msgstr "" - -#: mod/settings.php:448 -msgid " Name too short." -msgstr "" - -#: mod/settings.php:457 -msgid "Wrong Password" -msgstr "" - -#: mod/settings.php:462 -msgid " Not valid email." -msgstr "" - -#: mod/settings.php:468 -msgid " Cannot change to that email." -msgstr "" - -#: mod/settings.php:524 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: mod/settings.php:528 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: mod/settings.php:558 -msgid "Settings updated." -msgstr "" - -#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 -msgid "Add application" -msgstr "" - -#: mod/settings.php:635 mod/settings.php:661 -msgid "Consumer Key" -msgstr "" - -#: mod/settings.php:636 mod/settings.php:662 -msgid "Consumer Secret" -msgstr "" - -#: mod/settings.php:637 mod/settings.php:663 -msgid "Redirect" -msgstr "" - -#: mod/settings.php:638 mod/settings.php:664 -msgid "Icon url" -msgstr "" - -#: mod/settings.php:649 -msgid "You can't edit this application." -msgstr "" - -#: mod/settings.php:692 -msgid "Connected Apps" -msgstr "" - -#: mod/settings.php:696 -msgid "Client key starts with" -msgstr "" - -#: mod/settings.php:697 -msgid "No name" -msgstr "" - -#: mod/settings.php:698 -msgid "Remove authorization" -msgstr "" - -#: mod/settings.php:710 -msgid "No Plugin settings configured" -msgstr "" - -#: mod/settings.php:718 -msgid "Plugin Settings" -msgstr "" - -#: mod/settings.php:732 -msgid "Off" -msgstr "" - -#: mod/settings.php:732 -msgid "On" -msgstr "" - -#: mod/settings.php:740 -msgid "Additional Features" -msgstr "" - -#: mod/settings.php:750 mod/settings.php:754 -msgid "General Social Media Settings" -msgstr "" - -#: mod/settings.php:760 -msgid "Disable intelligent shortening" -msgstr "" - -#: mod/settings.php:762 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the " -"original friendica post." -msgstr "" - -#: mod/settings.php:768 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" - -#: mod/settings.php:770 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "" - -#: mod/settings.php:779 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:781 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "" - -#: mod/settings.php:784 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:793 mod/settings.php:794 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "" - -#: mod/settings.php:793 mod/settings.php:794 -msgid "enabled" -msgstr "" - -#: mod/settings.php:793 mod/settings.php:794 -msgid "disabled" -msgstr "" - -#: mod/settings.php:794 -msgid "GNU Social (OStatus)" -msgstr "" - -#: mod/settings.php:830 -msgid "Email access is disabled on this site." -msgstr "" - -#: mod/settings.php:842 -msgid "Email/Mailbox Setup" -msgstr "" - -#: mod/settings.php:843 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "" - -#: mod/settings.php:844 -msgid "Last successful email check:" -msgstr "" - -#: mod/settings.php:846 -msgid "IMAP server name:" -msgstr "" - -#: mod/settings.php:847 -msgid "IMAP port:" -msgstr "" - -#: mod/settings.php:848 -msgid "Security:" -msgstr "" - -#: mod/settings.php:848 mod/settings.php:853 -msgid "None" -msgstr "" - -#: mod/settings.php:849 -msgid "Email login name:" -msgstr "" - -#: mod/settings.php:850 -msgid "Email password:" -msgstr "" - -#: mod/settings.php:851 -msgid "Reply-to address:" -msgstr "" - -#: mod/settings.php:852 -msgid "Send public posts to all email contacts:" -msgstr "" - -#: mod/settings.php:853 -msgid "Action after import:" -msgstr "" - -#: mod/settings.php:853 -msgid "Mark as seen" -msgstr "" - -#: mod/settings.php:853 -msgid "Move to folder" -msgstr "" - -#: mod/settings.php:854 -msgid "Move to folder:" -msgstr "" - -#: mod/settings.php:935 -msgid "Display Settings" -msgstr "" - -#: mod/settings.php:941 mod/settings.php:957 -msgid "Display Theme:" -msgstr "" - -#: mod/settings.php:942 -msgid "Mobile Theme:" -msgstr "" - -#: mod/settings.php:943 -msgid "Update browser every xx seconds" -msgstr "" - -#: mod/settings.php:943 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: mod/settings.php:944 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:944 mod/settings.php:945 -msgid "Maximum of 100 items" -msgstr "" - -#: mod/settings.php:945 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:946 -msgid "Don't show emoticons" -msgstr "" - -#: mod/settings.php:947 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:948 -msgid "Infinite scroll" -msgstr "" - -#: mod/settings.php:949 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:951 view/theme/diabook/config.php:150 -#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 -#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 -#: view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "" - -#: mod/settings.php:1027 -msgid "User Types" -msgstr "" - -#: mod/settings.php:1028 -msgid "Community Types" -msgstr "" - -#: mod/settings.php:1029 -msgid "Normal Account Page" -msgstr "" - -#: mod/settings.php:1030 -msgid "This account is a normal personal profile" -msgstr "" - -#: mod/settings.php:1033 -msgid "Soapbox Page" -msgstr "" - -#: mod/settings.php:1034 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "" - -#: mod/settings.php:1037 -msgid "Community Forum/Celebrity Account" -msgstr "" - -#: mod/settings.php:1038 -msgid "Automatically approve all connection/friend requests as read-write fans" -msgstr "" - -#: mod/settings.php:1041 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/settings.php:1042 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "" - -#: mod/settings.php:1045 -msgid "Private Forum [Experimental]" -msgstr "" - -#: mod/settings.php:1046 -msgid "Private forum - approved members only" -msgstr "" - -#: mod/settings.php:1058 -msgid "OpenID:" -msgstr "" - -#: mod/settings.php:1058 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" - -#: mod/settings.php:1068 -msgid "Publish your default profile in your local site directory?" -msgstr "" - -#: mod/settings.php:1074 -msgid "Publish your default profile in the global social directory?" -msgstr "" - -#: mod/settings.php:1082 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" - -#: mod/settings.php:1086 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "" - -#: mod/settings.php:1086 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1091 -msgid "Allow friends to post to your profile page?" -msgstr "" - -#: mod/settings.php:1097 -msgid "Allow friends to tag your posts?" -msgstr "" - -#: mod/settings.php:1103 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: mod/settings.php:1109 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: mod/settings.php:1117 -msgid "Profile is not published." -msgstr "" - -#: mod/settings.php:1125 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:1132 -msgid "Automatically expire posts after this many days:" -msgstr "" - -#: mod/settings.php:1132 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "" - -#: mod/settings.php:1133 -msgid "Advanced expiration settings" -msgstr "" - -#: mod/settings.php:1134 -msgid "Advanced Expiration" -msgstr "" - -#: mod/settings.php:1135 -msgid "Expire posts:" -msgstr "" - -#: mod/settings.php:1136 -msgid "Expire personal notes:" -msgstr "" - -#: mod/settings.php:1137 -msgid "Expire starred posts:" -msgstr "" - -#: mod/settings.php:1138 -msgid "Expire photos:" -msgstr "" - -#: mod/settings.php:1139 -msgid "Only expire posts by others:" -msgstr "" - -#: mod/settings.php:1165 -msgid "Account Settings" -msgstr "" - -#: mod/settings.php:1173 -msgid "Password Settings" -msgstr "" - -#: mod/settings.php:1175 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: mod/settings.php:1176 -msgid "Current Password:" -msgstr "" - -#: mod/settings.php:1176 mod/settings.php:1177 -msgid "Your current password to confirm the changes" -msgstr "" - -#: mod/settings.php:1177 -msgid "Password:" -msgstr "" - -#: mod/settings.php:1181 -msgid "Basic Settings" -msgstr "" - -#: mod/settings.php:1182 include/identity.php:539 -msgid "Full Name:" -msgstr "" - -#: mod/settings.php:1183 -msgid "Email Address:" -msgstr "" - -#: mod/settings.php:1184 -msgid "Your Timezone:" -msgstr "" - -#: mod/settings.php:1185 -msgid "Default Post Location:" -msgstr "" - -#: mod/settings.php:1186 -msgid "Use Browser Location:" -msgstr "" - -#: mod/settings.php:1189 -msgid "Security and Privacy Settings" -msgstr "" - -#: mod/settings.php:1191 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: mod/settings.php:1191 mod/settings.php:1221 -msgid "(to prevent spam abuse)" -msgstr "" - -#: mod/settings.php:1192 -msgid "Default Post Permissions" -msgstr "" - -#: mod/settings.php:1193 -msgid "(click to open/close)" -msgstr "" - -#: mod/settings.php:1204 -msgid "Default Private Post" -msgstr "" - -#: mod/settings.php:1205 -msgid "Default Public Post" -msgstr "" - -#: mod/settings.php:1209 -msgid "Default Permissions for New Posts" -msgstr "" - -#: mod/settings.php:1221 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: mod/settings.php:1224 -msgid "Notification Settings" -msgstr "" - -#: mod/settings.php:1225 -msgid "By default post a status message when:" -msgstr "" - -#: mod/settings.php:1226 -msgid "accepting a friend request" -msgstr "" - -#: mod/settings.php:1227 -msgid "joining a forum/community" -msgstr "" - -#: mod/settings.php:1228 -msgid "making an interesting profile change" -msgstr "" - -#: mod/settings.php:1229 -msgid "Send a notification email when:" -msgstr "" - -#: mod/settings.php:1230 -msgid "You receive an introduction" -msgstr "" - -#: mod/settings.php:1231 -msgid "Your introductions are confirmed" -msgstr "" - -#: mod/settings.php:1232 -msgid "Someone writes on your profile wall" -msgstr "" - -#: mod/settings.php:1233 -msgid "Someone writes a followup comment" -msgstr "" - -#: mod/settings.php:1234 -msgid "You receive a private message" -msgstr "" - -#: mod/settings.php:1235 -msgid "You receive a friend suggestion" -msgstr "" - -#: mod/settings.php:1236 -msgid "You are tagged in a post" -msgstr "" - -#: mod/settings.php:1237 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:1239 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1239 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1241 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1243 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1245 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: mod/settings.php:1246 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1249 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:1250 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "" - -#: mod/settings.php:1251 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "" - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 -#: include/identity.php:188 include/contact_widgets.php:10 -msgid "Connect" -msgstr "" - -#: mod/dirfind.php:141 mod/match.php:77 -msgid "No matches" -msgstr "" - -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "" - -#: mod/profiles.php:55 mod/profiles.php:89 -msgid "Profile-" -msgstr "" - -#: mod/profiles.php:74 mod/profiles.php:117 -msgid "New profile created." -msgstr "" - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "" - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "" - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "" - -#: mod/profiles.php:344 -msgid "Likes" -msgstr "" - -#: mod/profiles.php:348 -msgid "Dislikes" -msgstr "" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "" - -#: mod/profiles.php:375 mod/profiles.php:695 -msgid "Interests" -msgstr "" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "" - -#: mod/profiles.php:386 mod/profiles.php:691 -msgid "Location" -msgstr "" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "" - -#: mod/profiles.php:565 -msgid " and " -msgstr "" - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "" - -#: mod/profiles.php:580 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: mod/profiles.php:655 -msgid "Hide contacts and friends:" -msgstr "" - -#: mod/profiles.php:660 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: mod/profiles.php:682 -msgid "Edit Profile Details" -msgstr "" - -#: mod/profiles.php:684 -msgid "Change Profile Photo" -msgstr "" - -#: mod/profiles.php:685 -msgid "View this profile" -msgstr "" - -#: mod/profiles.php:686 -msgid "Create a new profile using these settings" -msgstr "" - -#: mod/profiles.php:687 -msgid "Clone this profile" -msgstr "" - -#: mod/profiles.php:688 -msgid "Delete this profile" -msgstr "" - -#: mod/profiles.php:689 -msgid "Basic information" -msgstr "" - -#: mod/profiles.php:690 -msgid "Profile picture" -msgstr "" - -#: mod/profiles.php:692 -msgid "Preferences" -msgstr "" - -#: mod/profiles.php:693 -msgid "Status information" -msgstr "" - -#: mod/profiles.php:694 -msgid "Additional information" -msgstr "" - -#: mod/profiles.php:697 -msgid "Profile Name:" -msgstr "" - -#: mod/profiles.php:698 -msgid "Your Full Name:" -msgstr "" - -#: mod/profiles.php:699 -msgid "Title/Description:" -msgstr "" - -#: mod/profiles.php:700 -msgid "Your Gender:" -msgstr "" - -#: mod/profiles.php:701 -msgid "Birthday :" -msgstr "" - -#: mod/profiles.php:702 -msgid "Street Address:" -msgstr "" - -#: mod/profiles.php:703 -msgid "Locality/City:" -msgstr "" - -#: mod/profiles.php:704 -msgid "Postal/Zip Code:" -msgstr "" - -#: mod/profiles.php:705 -msgid "Country:" -msgstr "" - -#: mod/profiles.php:706 -msgid "Region/State:" -msgstr "" - -#: mod/profiles.php:707 -msgid " Marital Status:" -msgstr "" - -#: mod/profiles.php:708 -msgid "Who: (if applicable)" -msgstr "" - -#: mod/profiles.php:709 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: mod/profiles.php:710 -msgid "Since [date]:" -msgstr "" - -#: mod/profiles.php:711 include/identity.php:570 -msgid "Sexual Preference:" -msgstr "" - -#: mod/profiles.php:712 -msgid "Homepage URL:" -msgstr "" - -#: mod/profiles.php:713 include/identity.php:574 -msgid "Hometown:" -msgstr "" - -#: mod/profiles.php:714 include/identity.php:578 -msgid "Political Views:" -msgstr "" - -#: mod/profiles.php:715 -msgid "Religious Views:" -msgstr "" - -#: mod/profiles.php:716 -msgid "Public Keywords:" -msgstr "" - -#: mod/profiles.php:717 -msgid "Private Keywords:" -msgstr "" - -#: mod/profiles.php:718 include/identity.php:586 -msgid "Likes:" -msgstr "" - -#: mod/profiles.php:719 include/identity.php:588 -msgid "Dislikes:" -msgstr "" - -#: mod/profiles.php:720 -msgid "Example: fishing photography software" -msgstr "" - -#: mod/profiles.php:721 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" - -#: mod/profiles.php:722 -msgid "(Used for searching profiles, never shown to others)" -msgstr "" - -#: mod/profiles.php:723 -msgid "Tell us about yourself..." -msgstr "" - -#: mod/profiles.php:724 -msgid "Hobbies/Interests" -msgstr "" - -#: mod/profiles.php:725 -msgid "Contact information and Social Networks" -msgstr "" - -#: mod/profiles.php:726 -msgid "Musical interests" -msgstr "" - -#: mod/profiles.php:727 -msgid "Books, literature" -msgstr "" - -#: mod/profiles.php:728 -msgid "Television" -msgstr "" - -#: mod/profiles.php:729 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: mod/profiles.php:730 -msgid "Love/romance" -msgstr "" - -#: mod/profiles.php:731 -msgid "Work/employment" -msgstr "" - -#: mod/profiles.php:732 -msgid "School/education" -msgstr "" - -#: mod/profiles.php:737 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "" - -#: mod/profiles.php:747 mod/directory.php:129 -msgid "Age: " -msgstr "" - -#: mod/profiles.php:800 -msgid "Edit/Manage Profiles" -msgstr "" - -#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 -msgid "Change profile photo" -msgstr "" - -#: mod/profiles.php:802 include/identity.php:232 -msgid "Create New Profile" -msgstr "" - -#: mod/profiles.php:813 include/identity.php:242 -msgid "Profile Image" -msgstr "" - -#: mod/profiles.php:815 include/identity.php:245 -msgid "visible to everybody" -msgstr "" - -#: mod/profiles.php:816 include/identity.php:246 -msgid "Edit visibility" -msgstr "" - -#: mod/share.php:38 -msgid "link" -msgstr "" - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "" - -#: mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "" - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "" - -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "" - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "" - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "" - -#: mod/community.php:23 -msgid "Not available." -msgstr "" - -#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 -#: include/nav.php:139 -msgid "Community" -msgstr "" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "" - -#: mod/wall_attach.php:83 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: mod/wall_attach.php:83 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "" - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "" - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "" - -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "" - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: mod/suggest.php:69 view/theme/diabook/theme.php:527 -#: include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "" - -#: mod/suggest.php:76 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "" - -#: mod/repair_ostatus.php:14 -msgid "Resubsribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "" - -#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 -msgid "Done" -msgstr "" - -#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 -msgid "Keep this window open until done." -msgstr "" - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "" - -#: mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "" - -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "" - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "" - -#: mod/delegate.php:130 include/nav.php:179 -msgid "Delegate Page Management" -msgstr "" - -#: mod/delegate.php:132 -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:133 -msgid "Existing Page Managers" -msgstr "" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "" - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "" - -#: mod/notes.php:44 include/identity.php:676 -msgid "Personal Notes" -msgstr "" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "" - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 -msgid "Status:" -msgstr "" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 -msgid "Homepage:" -msgstr "" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: mod/ostatus_subscribe.php:14 -msgid "Subsribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "" - -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "" - -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "" - -#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "" - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "" - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "" - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "" - -#: mod/profile_photo.php:245 -#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 -msgid "Upload" -msgstr "" - -#: mod/profile_photo.php:248 -msgid "or" -msgstr "" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "" - #: mod/install.php:119 msgid "Friendica Communications Server - Setup" msgstr "" @@ -5526,128 +3949,1152 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: mod/p.php:9 -msgid "Not Extended" -msgstr "" - -#: mod/group.php:29 -msgid "Group created." -msgstr "" - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "" - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "" - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "" - -#: mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "" - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "" - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "" - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "" - -#: mod/group.php:190 -msgid "Members" -msgstr "" - -#: mod/content.php:119 mod/network.php:532 -msgid "No such group" -msgstr "" - -#: mod/content.php:130 mod/network.php:549 -msgid "Group is empty" -msgstr "" - -#: mod/content.php:135 mod/network.php:560 +#: mod/wallmessage.php:42 mod/wallmessage.php:112 #, php-format -msgid "Group: %s" +msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "" -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." msgstr "" -#: mod/regmod.php:55 -msgid "Account approved." +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." msgstr "" -#: mod/regmod.php:92 +#: mod/wallmessage.php:143 #, php-format -msgid "Registration revoked for %s" +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." msgstr "" -#: mod/regmod.php:104 -msgid "Please login." +#: mod/help.php:31 +msgid "Help:" msgstr "" -#: mod/match.php:18 +#: mod/help.php:36 include/nav.php:114 view/theme/vier/theme.php:259 +msgid "Help" +msgstr "" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." +msgstr "" + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: mod/wall_attach.php:83 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: mod/wall_attach.php:83 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: mod/wall_attach.php:94 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "" + +#: mod/wall_attach.php:145 mod/wall_attach.php:161 +msgid "File upload failed." +msgstr "" + +#: mod/match.php:19 msgid "Profile Match" msgstr "" -#: mod/match.php:27 +#: mod/match.php:28 msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: mod/match.php:69 +#: mod/match.php:70 msgid "is interested in:" msgstr "" -#: mod/item.php:115 -msgid "Unable to locate original post." +#: mod/share.php:38 +msgid "link" msgstr "" -#: mod/item.php:347 -msgid "Empty post discarded." +#: mod/community.php:23 +msgid "Not available." msgstr "" -#: mod/item.php:860 -msgid "System error. Post not saved." +#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: view/theme/diabook/theme.php:129 +msgid "Community" msgstr "" -#: mod/item.php:989 +#: mod/community.php:62 mod/community.php:71 mod/search.php:218 +msgid "No results." +msgstr "" + +#: mod/settings.php:34 mod/photos.php:109 +msgid "everybody" +msgstr "" + +#: mod/settings.php:47 +msgid "Additional features" +msgstr "" + +#: mod/settings.php:53 +msgid "Display" +msgstr "" + +#: mod/settings.php:60 mod/settings.php:839 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:72 include/nav.php:181 +msgid "Delegations" +msgstr "" + +#: mod/settings.php:78 +msgid "Connected apps" +msgstr "" + +#: mod/settings.php:84 mod/uexport.php:85 +msgid "Export personal data" +msgstr "" + +#: mod/settings.php:90 +msgid "Remove account" +msgstr "" + +#: mod/settings.php:143 +msgid "Missing some important data!" +msgstr "" + +#: mod/settings.php:256 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: mod/settings.php:261 +msgid "Email settings updated." +msgstr "" + +#: mod/settings.php:276 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:341 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:355 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: mod/settings.php:360 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: mod/settings.php:368 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:379 +msgid "Password changed." +msgstr "" + +#: mod/settings.php:381 +msgid "Password update failed. Please try again." +msgstr "" + +#: mod/settings.php:448 +msgid " Please use a shorter name." +msgstr "" + +#: mod/settings.php:450 +msgid " Name too short." +msgstr "" + +#: mod/settings.php:459 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:464 +msgid " Not valid email." +msgstr "" + +#: mod/settings.php:470 +msgid " Cannot change to that email." +msgstr "" + +#: mod/settings.php:526 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:530 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:560 +msgid "Settings updated." +msgstr "" + +#: mod/settings.php:633 mod/settings.php:659 mod/settings.php:695 +msgid "Add application" +msgstr "" + +#: mod/settings.php:637 mod/settings.php:663 +msgid "Consumer Key" +msgstr "" + +#: mod/settings.php:638 mod/settings.php:664 +msgid "Consumer Secret" +msgstr "" + +#: mod/settings.php:639 mod/settings.php:665 +msgid "Redirect" +msgstr "" + +#: mod/settings.php:640 mod/settings.php:666 +msgid "Icon url" +msgstr "" + +#: mod/settings.php:651 +msgid "You can't edit this application." +msgstr "" + +#: mod/settings.php:694 +msgid "Connected Apps" +msgstr "" + +#: mod/settings.php:698 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:699 +msgid "No name" +msgstr "" + +#: mod/settings.php:700 +msgid "Remove authorization" +msgstr "" + +#: mod/settings.php:712 +msgid "No Plugin settings configured" +msgstr "" + +#: mod/settings.php:720 +msgid "Plugin Settings" +msgstr "" + +#: mod/settings.php:734 +msgid "Off" +msgstr "" + +#: mod/settings.php:734 +msgid "On" +msgstr "" + +#: mod/settings.php:742 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:752 mod/settings.php:756 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:762 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:764 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the " +"original friendica post." +msgstr "" + +#: mod/settings.php:770 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:772 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "" + +#: mod/settings.php:781 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:783 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "" + +#: mod/settings.php:786 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:795 mod/settings.php:796 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: mod/settings.php:795 mod/dfrn_request.php:856 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "" + +#: mod/settings.php:795 mod/settings.php:796 +msgid "enabled" +msgstr "" + +#: mod/settings.php:795 mod/settings.php:796 +msgid "disabled" +msgstr "" + +#: mod/settings.php:796 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:832 +msgid "Email access is disabled on this site." +msgstr "" + +#: mod/settings.php:844 +msgid "Email/Mailbox Setup" +msgstr "" + +#: mod/settings.php:845 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "" + +#: mod/settings.php:846 +msgid "Last successful email check:" +msgstr "" + +#: mod/settings.php:848 +msgid "IMAP server name:" +msgstr "" + +#: mod/settings.php:849 +msgid "IMAP port:" +msgstr "" + +#: mod/settings.php:850 +msgid "Security:" +msgstr "" + +#: mod/settings.php:850 mod/settings.php:855 +msgid "None" +msgstr "" + +#: mod/settings.php:851 +msgid "Email login name:" +msgstr "" + +#: mod/settings.php:852 +msgid "Email password:" +msgstr "" + +#: mod/settings.php:853 +msgid "Reply-to address:" +msgstr "" + +#: mod/settings.php:854 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: mod/settings.php:855 +msgid "Action after import:" +msgstr "" + +#: mod/settings.php:855 +msgid "Mark as seen" +msgstr "" + +#: mod/settings.php:855 +msgid "Move to folder" +msgstr "" + +#: mod/settings.php:856 +msgid "Move to folder:" +msgstr "" + +#: mod/settings.php:941 +msgid "Display Settings" +msgstr "" + +#: mod/settings.php:947 mod/settings.php:965 +msgid "Display Theme:" +msgstr "" + +#: mod/settings.php:948 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:949 +msgid "Update browser every xx seconds" +msgstr "" + +#: mod/settings.php:949 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: mod/settings.php:950 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:950 mod/settings.php:951 +msgid "Maximum of 100 items" +msgstr "" + +#: mod/settings.php:951 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:952 +msgid "Don't show emoticons" +msgstr "" + +#: mod/settings.php:953 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:954 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:955 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:956 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:957 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:959 view/theme/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 +#: view/theme/diabook/config.php:150 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "" + +#: mod/settings.php:1035 +msgid "User Types" +msgstr "" + +#: mod/settings.php:1036 +msgid "Community Types" +msgstr "" + +#: mod/settings.php:1037 +msgid "Normal Account Page" +msgstr "" + +#: mod/settings.php:1038 +msgid "This account is a normal personal profile" +msgstr "" + +#: mod/settings.php:1041 +msgid "Soapbox Page" +msgstr "" + +#: mod/settings.php:1042 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "" + +#: mod/settings.php:1045 +msgid "Community Forum/Celebrity Account" +msgstr "" + +#: mod/settings.php:1046 +msgid "Automatically approve all connection/friend requests as read-write fans" +msgstr "" + +#: mod/settings.php:1049 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/settings.php:1050 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "" + +#: mod/settings.php:1053 +msgid "Private Forum [Experimental]" +msgstr "" + +#: mod/settings.php:1054 +msgid "Private forum - approved members only" +msgstr "" + +#: mod/settings.php:1066 +msgid "OpenID:" +msgstr "" + +#: mod/settings.php:1066 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: mod/settings.php:1076 +msgid "Publish your default profile in your local site directory?" +msgstr "" + +#: mod/settings.php:1082 +msgid "Publish your default profile in the global social directory?" +msgstr "" + +#: mod/settings.php:1090 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "" + +#: mod/settings.php:1094 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "" + +#: mod/settings.php:1094 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1099 +msgid "Allow friends to post to your profile page?" +msgstr "" + +#: mod/settings.php:1105 +msgid "Allow friends to tag your posts?" +msgstr "" + +#: mod/settings.php:1111 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: mod/settings.php:1117 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: mod/settings.php:1125 +msgid "Profile is not published." +msgstr "" + +#: mod/settings.php:1133 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1140 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: mod/settings.php:1140 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "" + +#: mod/settings.php:1141 +msgid "Advanced expiration settings" +msgstr "" + +#: mod/settings.php:1142 +msgid "Advanced Expiration" +msgstr "" + +#: mod/settings.php:1143 +msgid "Expire posts:" +msgstr "" + +#: mod/settings.php:1144 +msgid "Expire personal notes:" +msgstr "" + +#: mod/settings.php:1145 +msgid "Expire starred posts:" +msgstr "" + +#: mod/settings.php:1146 +msgid "Expire photos:" +msgstr "" + +#: mod/settings.php:1147 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1173 +msgid "Account Settings" +msgstr "" + +#: mod/settings.php:1181 +msgid "Password Settings" +msgstr "" + +#: mod/settings.php:1182 mod/register.php:271 +msgid "New Password:" +msgstr "" + +#: mod/settings.php:1183 mod/register.php:272 +msgid "Confirm:" +msgstr "" + +#: mod/settings.php:1183 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: mod/settings.php:1184 +msgid "Current Password:" +msgstr "" + +#: mod/settings.php:1184 mod/settings.php:1185 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1185 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1189 +msgid "Basic Settings" +msgstr "" + +#: mod/settings.php:1190 include/identity.php:539 +msgid "Full Name:" +msgstr "" + +#: mod/settings.php:1191 +msgid "Email Address:" +msgstr "" + +#: mod/settings.php:1192 +msgid "Your Timezone:" +msgstr "" + +#: mod/settings.php:1193 +msgid "Default Post Location:" +msgstr "" + +#: mod/settings.php:1194 +msgid "Use Browser Location:" +msgstr "" + +#: mod/settings.php:1197 +msgid "Security and Privacy Settings" +msgstr "" + +#: mod/settings.php:1199 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: mod/settings.php:1199 mod/settings.php:1229 +msgid "(to prevent spam abuse)" +msgstr "" + +#: mod/settings.php:1200 +msgid "Default Post Permissions" +msgstr "" + +#: mod/settings.php:1201 +msgid "(click to open/close)" +msgstr "" + +#: mod/settings.php:1210 mod/photos.php:1191 mod/photos.php:1576 +msgid "Show to Groups" +msgstr "" + +#: mod/settings.php:1211 mod/photos.php:1192 mod/photos.php:1577 +msgid "Show to Contacts" +msgstr "" + +#: mod/settings.php:1212 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1213 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1217 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1229 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: mod/settings.php:1232 +msgid "Notification Settings" +msgstr "" + +#: mod/settings.php:1233 +msgid "By default post a status message when:" +msgstr "" + +#: mod/settings.php:1234 +msgid "accepting a friend request" +msgstr "" + +#: mod/settings.php:1235 +msgid "joining a forum/community" +msgstr "" + +#: mod/settings.php:1236 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1237 +msgid "Send a notification email when:" +msgstr "" + +#: mod/settings.php:1238 +msgid "You receive an introduction" +msgstr "" + +#: mod/settings.php:1239 +msgid "Your introductions are confirmed" +msgstr "" + +#: mod/settings.php:1240 +msgid "Someone writes on your profile wall" +msgstr "" + +#: mod/settings.php:1241 +msgid "Someone writes a followup comment" +msgstr "" + +#: mod/settings.php:1242 +msgid "You receive a private message" +msgstr "" + +#: mod/settings.php:1243 +msgid "You receive a friend suggestion" +msgstr "" + +#: mod/settings.php:1244 +msgid "You are tagged in a post" +msgstr "" + +#: mod/settings.php:1245 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1247 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1247 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1249 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1251 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1253 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1254 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1257 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1258 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: mod/settings.php:1259 +msgid "Resend relocate message to contacts" +msgstr "" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "" + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "" + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "" + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "" + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "" +msgstr[1] "" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "" + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "" + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "" + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "" + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "" + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "" + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "" + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "" + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "" + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "" + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "" + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "" + +#: mod/dfrn_request.php:507 include/follow.php:72 +msgid "Disallowed profile URL." +msgstr "" + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "" + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "" + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to this profile." +msgstr "" + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "" + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "" + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "" + +#: mod/dfrn_request.php:840 #, php-format msgid "" -"This message was sent to you by %s, a member of the Friendica social network." +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today." msgstr "" -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" +#: mod/dfrn_request.php:845 +msgid "Friend/Connection Request" msgstr "" -#: mod/item.php:992 +#: mod/dfrn_request.php:846 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" msgstr "" -#: mod/item.php:996 +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "" + +#: mod/dfrn_request.php:855 +msgid "StatusNet/Federated Social Web" +msgstr "" + +#: mod/dfrn_request.php:857 #, php-format -msgid "%s posted an update." +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search " +"bar." +msgstr "" + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "" + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
    login: %s
    " +"password: %s

    You can change your password after login." +msgstr "" + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "" + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: mod/register.php:188 mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "" + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "" + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "" + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "" + +#: mod/register.php:273 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@$sitename'." +msgstr "" + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "" + +#: mod/register.php:277 boot.php:1249 include/nav.php:109 +msgid "Register" +msgstr "" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "" + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:115 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:116 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:126 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "" + +#: mod/search.php:224 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:226 +#, php-format +msgid "Search results for: %s" +msgstr "" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 +#: view/theme/vier/theme.php:177 +msgid "Global Directory" +msgstr "" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "" + +#: mod/directory.php:129 mod/profiles.php:747 +msgid "Age: " +msgstr "" + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 +msgid "Status:" +msgstr "" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 +msgid "Homepage:" +msgstr "" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "" + +#: mod/delegate.php:130 include/nav.php:181 +msgid "Delegate Page Management" +msgstr "" + +#: mod/delegate.php:132 +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:133 +msgid "Existing Page Managers" +msgstr "" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "" + +#: mod/common.php:45 +msgid "Common Friends" +msgstr "" + +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "" + +#: mod/uexport.php:77 +msgid "Export account" +msgstr "" + +#: mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: mod/uexport.php:78 +msgid "Export all" +msgstr "" + +#: mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" msgstr "" #: mod/mood.php:62 include/conversation.php:226 @@ -5663,687 +5110,998 @@ msgstr "" msgid "Set your current mood and tell your friends" msgstr "" -#: mod/network.php:143 +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: mod/suggest.php:69 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:179 +msgid "Friend Suggestions" +msgstr "" + +#: mod/suggest.php:76 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "" + +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "" + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "" + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "" + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "" + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "" + +#: mod/profiles.php:344 +msgid "Likes" +msgstr "" + +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "" + +#: mod/profiles.php:375 mod/profiles.php:695 +msgid "Interests" +msgstr "" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "" + +#: mod/profiles.php:386 mod/profiles.php:691 +msgid "Location" +msgstr "" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "" + +#: mod/profiles.php:565 +msgid " and " +msgstr "" + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "" + +#: mod/profiles.php:576 #, php-format -msgid "Search Results For: %s" +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "" - -#: mod/network.php:358 -msgid "Commented Order" -msgstr "" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "" - -#: mod/network.php:385 -msgid "New" -msgstr "" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "" - -#: mod/network.php:405 -msgid "Starred" -msgstr "" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "" - -#: mod/network.php:466 +#: mod/profiles.php:577 #, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: mod/profiles.php:580 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: mod/profiles.php:655 +msgid "Hide contacts and friends:" +msgstr "" + +#: mod/profiles.php:660 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: mod/profiles.php:682 +msgid "Edit Profile Details" +msgstr "" + +#: mod/profiles.php:684 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:685 +msgid "View this profile" +msgstr "" + +#: mod/profiles.php:686 +msgid "Create a new profile using these settings" +msgstr "" + +#: mod/profiles.php:687 +msgid "Clone this profile" +msgstr "" + +#: mod/profiles.php:688 +msgid "Delete this profile" +msgstr "" + +#: mod/profiles.php:689 +msgid "Basic information" +msgstr "" + +#: mod/profiles.php:690 +msgid "Profile picture" +msgstr "" + +#: mod/profiles.php:692 +msgid "Preferences" +msgstr "" + +#: mod/profiles.php:693 +msgid "Status information" +msgstr "" + +#: mod/profiles.php:694 +msgid "Additional information" +msgstr "" + +#: mod/profiles.php:697 +msgid "Profile Name:" +msgstr "" + +#: mod/profiles.php:698 +msgid "Your Full Name:" +msgstr "" + +#: mod/profiles.php:699 +msgid "Title/Description:" +msgstr "" + +#: mod/profiles.php:700 +msgid "Your Gender:" +msgstr "" + +#: mod/profiles.php:701 +msgid "Birthday :" +msgstr "" + +#: mod/profiles.php:702 +msgid "Street Address:" +msgstr "" + +#: mod/profiles.php:703 +msgid "Locality/City:" +msgstr "" + +#: mod/profiles.php:704 +msgid "Postal/Zip Code:" +msgstr "" + +#: mod/profiles.php:705 +msgid "Country:" +msgstr "" + +#: mod/profiles.php:706 +msgid "Region/State:" +msgstr "" + +#: mod/profiles.php:707 +msgid " Marital Status:" +msgstr "" + +#: mod/profiles.php:708 +msgid "Who: (if applicable)" +msgstr "" + +#: mod/profiles.php:709 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: mod/profiles.php:710 +msgid "Since [date]:" +msgstr "" + +#: mod/profiles.php:711 include/identity.php:570 +msgid "Sexual Preference:" +msgstr "" + +#: mod/profiles.php:712 +msgid "Homepage URL:" +msgstr "" + +#: mod/profiles.php:713 include/identity.php:574 +msgid "Hometown:" +msgstr "" + +#: mod/profiles.php:714 include/identity.php:578 +msgid "Political Views:" +msgstr "" + +#: mod/profiles.php:715 +msgid "Religious Views:" +msgstr "" + +#: mod/profiles.php:716 +msgid "Public Keywords:" +msgstr "" + +#: mod/profiles.php:717 +msgid "Private Keywords:" +msgstr "" + +#: mod/profiles.php:718 include/identity.php:586 +msgid "Likes:" +msgstr "" + +#: mod/profiles.php:719 include/identity.php:588 +msgid "Dislikes:" +msgstr "" + +#: mod/profiles.php:720 +msgid "Example: fishing photography software" +msgstr "" + +#: mod/profiles.php:721 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "" + +#: mod/profiles.php:722 +msgid "(Used for searching profiles, never shown to others)" +msgstr "" + +#: mod/profiles.php:723 +msgid "Tell us about yourself..." +msgstr "" + +#: mod/profiles.php:724 +msgid "Hobbies/Interests" +msgstr "" + +#: mod/profiles.php:725 +msgid "Contact information and Social Networks" +msgstr "" + +#: mod/profiles.php:726 +msgid "Musical interests" +msgstr "" + +#: mod/profiles.php:727 +msgid "Books, literature" +msgstr "" + +#: mod/profiles.php:728 +msgid "Television" +msgstr "" + +#: mod/profiles.php:729 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: mod/profiles.php:730 +msgid "Love/romance" +msgstr "" + +#: mod/profiles.php:731 +msgid "Work/employment" +msgstr "" + +#: mod/profiles.php:732 +msgid "School/education" +msgstr "" + +#: mod/profiles.php:737 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "" + +#: mod/profiles.php:800 +msgid "Edit/Manage Profiles" +msgstr "" + +#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 +msgid "Change profile photo" +msgstr "" + +#: mod/profiles.php:802 include/identity.php:232 +msgid "Create New Profile" +msgstr "" + +#: mod/profiles.php:813 include/identity.php:242 +msgid "Profile Image" +msgstr "" + +#: mod/profiles.php:815 include/identity.php:245 +msgid "visible to everybody" +msgstr "" + +#: mod/profiles.php:816 include/identity.php:246 +msgid "Edit visibility" +msgstr "" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "" + +#: mod/editpost.php:111 include/conversation.php:1079 +msgid "upload photo" +msgstr "" + +#: mod/editpost.php:112 include/conversation.php:1080 +msgid "Attach file" +msgstr "" + +#: mod/editpost.php:113 include/conversation.php:1081 +msgid "attach file" +msgstr "" + +#: mod/editpost.php:115 include/conversation.php:1083 +msgid "web link" +msgstr "" + +#: mod/editpost.php:116 include/conversation.php:1084 +msgid "Insert video link" +msgstr "" + +#: mod/editpost.php:117 include/conversation.php:1085 +msgid "video link" +msgstr "" + +#: mod/editpost.php:118 include/conversation.php:1086 +msgid "Insert audio link" +msgstr "" + +#: mod/editpost.php:119 include/conversation.php:1087 +msgid "audio link" +msgstr "" + +#: mod/editpost.php:120 include/conversation.php:1088 +msgid "Set your location" +msgstr "" + +#: mod/editpost.php:121 include/conversation.php:1089 +msgid "set location" +msgstr "" + +#: mod/editpost.php:122 include/conversation.php:1090 +msgid "Clear browser location" +msgstr "" + +#: mod/editpost.php:123 include/conversation.php:1091 +msgid "clear location" +msgstr "" + +#: mod/editpost.php:125 include/conversation.php:1097 +msgid "Permission settings" +msgstr "" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "" + +#: mod/editpost.php:134 include/conversation.php:1106 +msgid "Public post" +msgstr "" + +#: mod/editpost.php:137 include/conversation.php:1093 +msgid "Set title" +msgstr "" + +#: mod/editpost.php:139 include/conversation.php:1095 +msgid "Categories (comma-separated list)" +msgstr "" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "" + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +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/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "" + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "" + +#: mod/notes.php:46 include/identity.php:677 +msgid "Personal Notes" +msgstr "" + +#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "" + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "" + +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "" + +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." msgstr[0] "" msgstr[1] "" -#: mod/network.php:469 -msgid "Private messages to this group are at risk of public disclosure." +#: mod/invite.php:112 +msgid "You have no more invitations available" msgstr "" -#: mod/network.php:578 -#, php-format -msgid "Contact: %s" -msgstr "" - -#: mod/network.php:582 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "" - -#: mod/network.php:587 -msgid "Invalid contact." -msgstr "" - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "" - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "" - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "" - -#: mod/crepair.php:142 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." -msgstr "" - -#: mod/crepair.php:143 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "" - -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "" - -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "" - -#: mod/crepair.php:181 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 -msgid "Your posts and conversations" -msgstr "" - -#: view/theme/diabook/theme.php:124 include/nav.php:77 -msgid "Your profile page" -msgstr "" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "" - -#: view/theme/diabook/theme.php:126 include/nav.php:78 -msgid "Your photos" -msgstr "" - -#: view/theme/diabook/theme.php:127 include/nav.php:80 -msgid "Your events" -msgstr "" - -#: view/theme/diabook/theme.php:128 include/nav.php:81 -msgid "Personal notes" -msgstr "" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "" - -#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "" - -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "" - -#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "" - -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "" - -#: view/theme/diabook/theme.php:463 include/text.php:2032 -#: include/conversation.php:118 include/conversation.php:245 -msgid "event" -msgstr "" - -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "" - -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "" - -#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "" - -#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "" - -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 -#: view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "" - -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:337 -msgid "don't show" -msgstr "" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:336 -msgid "show" -msgstr "" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 -#: view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "" - -#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "" - -#: view/theme/duepuntozero/config.php:44 include/text.php:1768 -#: include/user.php:255 -msgid "default" -msgstr "" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "" - -#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "" - -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "" - -#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 -msgid "Click here to download" -msgstr "" - -#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 -#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 -msgid "Create new pull request" -msgstr "" - -#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 -msgid "Reload active plugins" -msgstr "" - -#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 -msgid "Drop contact" -msgstr "" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 -msgid "Public projects on this node" -msgstr "" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 +#: mod/invite.php:120 #, php-format msgid "" -"Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone." +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many " +"other social networks." msgstr "" -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 -msgid "Visibility" +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." msgstr "" -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 -msgid "Create" +#: mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." msgstr "" -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 -msgid "No pull requests to show" +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other " +"public sites or invite members." msgstr "" -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 -msgid "opened by" +#: mod/invite.php:132 +msgid "Send invitations" msgstr "" -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 -msgid "closed" +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" msgstr "" -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 -msgid "merged" +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." msgstr "" -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 -msgid "Projects" +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" msgstr "" -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 -msgid "add new" +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" msgstr "" -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 -msgid "delete" +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" msgstr "" -#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 -#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 -#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 -msgid "Clone this project:" +#: mod/photos.php:54 mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237 +#: mod/photos.php:1260 mod/photos.php:1819 mod/photos.php:1831 +#: view/theme/diabook/theme.php:499 +msgid "Contact Photos" msgstr "" -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 -msgid "New pull request" +#: mod/photos.php:91 include/identity.php:652 +msgid "Photo Albums" msgstr "" -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 -msgid "Can't show you the diff at the moment. Sorry" +#: mod/photos.php:92 mod/photos.php:1880 +msgid "Recent Photos" msgstr "" -#: boot.php:763 +#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1882 +msgid "Upload New Photos" +msgstr "" + +#: mod/photos.php:173 +msgid "Contact information unavailable" +msgstr "" + +#: mod/photos.php:194 +msgid "Album not found." +msgstr "" + +#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 +msgid "Delete Album" +msgstr "" + +#: mod/photos.php:234 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 +msgid "Delete Photo" +msgstr "" + +#: mod/photos.php:323 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:698 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: mod/photos.php:698 +msgid "a photo" +msgstr "" + +#: mod/photos.php:811 +msgid "Image file is empty." +msgstr "" + +#: mod/photos.php:978 +msgid "No photos selected" +msgstr "" + +#: mod/photos.php:1139 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: mod/photos.php:1174 +msgid "Upload Photos" +msgstr "" + +#: mod/photos.php:1178 mod/photos.php:1249 +msgid "New album name: " +msgstr "" + +#: mod/photos.php:1179 +msgid "or existing album name: " +msgstr "" + +#: mod/photos.php:1180 +msgid "Do not show a status post for this upload" +msgstr "" + +#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "" + +#: mod/photos.php:1193 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1194 +msgid "Public Photo" +msgstr "" + +#: mod/photos.php:1262 +msgid "Edit Album" +msgstr "" + +#: mod/photos.php:1268 +msgid "Show Newest First" +msgstr "" + +#: mod/photos.php:1270 +msgid "Show Oldest First" +msgstr "" + +#: mod/photos.php:1298 mod/photos.php:1865 +msgid "View Photo" +msgstr "" + +#: mod/photos.php:1345 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: mod/photos.php:1347 +msgid "Photo not available" +msgstr "" + +#: mod/photos.php:1403 +msgid "View photo" +msgstr "" + +#: mod/photos.php:1403 +msgid "Edit photo" +msgstr "" + +#: mod/photos.php:1404 +msgid "Use as profile photo" +msgstr "" + +#: mod/photos.php:1429 +msgid "View Full Size" +msgstr "" + +#: mod/photos.php:1515 +msgid "Tags: " +msgstr "" + +#: mod/photos.php:1518 +msgid "[Remove any tag]" +msgstr "" + +#: mod/photos.php:1558 +msgid "New album name" +msgstr "" + +#: mod/photos.php:1559 +msgid "Caption" +msgstr "" + +#: mod/photos.php:1560 +msgid "Add a Tag" +msgstr "" + +#: mod/photos.php:1560 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: mod/photos.php:1561 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1562 +msgid "Rotate CW (right)" +msgstr "" + +#: mod/photos.php:1563 +msgid "Rotate CCW (left)" +msgstr "" + +#: mod/photos.php:1578 +msgid "Private photo" +msgstr "" + +#: mod/photos.php:1579 +msgid "Public photo" +msgstr "" + +#: mod/photos.php:1601 include/conversation.php:1077 +msgid "Share" +msgstr "" + +#: mod/photos.php:1795 +msgid "Map" +msgstr "" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "" + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "" + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also " +"to inform your friends that you moved here." +msgstr "" + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "" + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "" + +#: boot.php:764 msgid "Delete this item?" msgstr "" -#: boot.php:766 +#: boot.php:767 msgid "show fewer" msgstr "" -#: boot.php:1140 +#: boot.php:1141 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: boot.php:1247 +#: boot.php:1248 msgid "Create a New Account" msgstr "" -#: boot.php:1272 include/nav.php:73 +#: boot.php:1273 include/nav.php:73 msgid "Logout" msgstr "" -#: boot.php:1275 +#: boot.php:1276 msgid "Nickname or Email address: " msgstr "" -#: boot.php:1276 +#: boot.php:1277 msgid "Password: " msgstr "" -#: boot.php:1277 +#: boot.php:1278 msgid "Remember me" msgstr "" -#: boot.php:1280 +#: boot.php:1281 msgid "Or login using OpenID: " msgstr "" -#: boot.php:1286 +#: boot.php:1287 msgid "Forgot your password?" msgstr "" -#: boot.php:1289 +#: boot.php:1290 msgid "Website Terms of Service" msgstr "" -#: boot.php:1290 +#: boot.php:1291 msgid "terms of service" msgstr "" -#: boot.php:1292 +#: boot.php:1293 msgid "Website Privacy Policy" msgstr "" -#: boot.php:1293 +#: boot.php:1294 msgid "privacy policy" msgstr "" -#: include/features.php:23 -msgid "General Features" +#: object/Item.php:95 +msgid "This entry was edited" msgstr "" -#: include/features.php:25 -msgid "Multiple Profiles" +#: object/Item.php:209 +msgid "ignore thread" msgstr "" -#: include/features.php:25 -msgid "Ability to create multiple profiles" +#: object/Item.php:210 +msgid "unignore thread" msgstr "" -#: include/features.php:30 -msgid "Post Composition Features" +#: object/Item.php:211 +msgid "toggle ignore status" msgstr "" -#: include/features.php:31 -msgid "Richtext Editor" +#: object/Item.php:324 include/conversation.php:665 +msgid "Categories:" msgstr "" -#: include/features.php:31 -msgid "Enable richtext editor" +#: object/Item.php:325 include/conversation.php:666 +msgid "Filed under:" msgstr "" -#: include/features.php:32 -msgid "Post Preview" +#: object/Item.php:337 +msgid "via" msgstr "" -#: include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: include/features.php:33 -msgid "Auto-mention Forums" -msgstr "" - -#: include/features.php:33 +#: include/dbstructure.php:26 +#, php-format msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database " +"might be invalid." msgstr "" -#: include/features.php:38 -msgid "Network Sidebar Widgets" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" msgstr "" -#: include/features.php:39 -msgid "Search by Date" +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." msgstr "" -#: include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: include/features.php:40 -msgid "Group Filter" -msgstr "" - -#: include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: include/features.php:41 -msgid "Network Filter" -msgstr "" - -#: include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: include/features.php:42 -msgid "Save search terms for re-use" -msgstr "" - -#: include/features.php:47 -msgid "Network Tabs" -msgstr "" - -#: include/features.php:48 -msgid "Network Personal Tab" -msgstr "" - -#: include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: include/features.php:49 -msgid "Network New Tab" -msgstr "" - -#: include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "" - -#: include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: include/features.php:55 -msgid "Post/Comment Tools" -msgstr "" - -#: include/features.php:56 -msgid "Multiple Deletion" -msgstr "" - -#: include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "" - -#: include/features.php:57 -msgid "Edit Sent Posts" -msgstr "" - -#: include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: include/features.php:58 -msgid "Tagging" -msgstr "" - -#: include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "" - -#: include/features.php:59 -msgid "Post Categories" -msgstr "" - -#: include/features.php:59 -msgid "Add categories to your posts" -msgstr "" - -#: include/features.php:60 include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "" - -#: include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "" - -#: include/features.php:61 -msgid "Dislike Posts" -msgstr "" - -#: include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: include/features.php:62 -msgid "Star Posts" -msgstr "" - -#: include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: include/features.php:63 -msgid "Mute Post Notifications" -msgstr "" - -#: include/features.php:63 -msgid "Ability to mute notifications for a thread" +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." msgstr "" #: include/auth.php:38 @@ -6360,20 +6118,737 @@ msgstr "" msgid "The error message was:" msgstr "" -#: include/event.php:22 include/bb2diaspora.php:154 -msgid "Starts:" +#: include/contact_widgets.php:6 +msgid "Add New Contact" msgstr "" -#: include/event.php:32 include/bb2diaspora.php:162 -msgid "Finishes:" +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: view/theme/vier/theme.php:178 +msgid "Similar Interests" +msgstr "" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "" + +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: view/theme/vier/theme.php:180 +msgid "Invite Friends" +msgstr "" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "" + +#: include/contact_widgets.php:104 include/features.php:61 +msgid "Saved Folders" +msgstr "" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "" + +#: include/features.php:23 +msgid "General Features" +msgstr "" + +#: include/features.php:25 +msgid "Multiple Profiles" +msgstr "" + +#: include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "" + +#: include/features.php:26 +msgid "Photo Location" +msgstr "" + +#: include/features.php:26 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present) " +"prior to stripping metadata and links it to a map." +msgstr "" + +#: include/features.php:31 +msgid "Post Composition Features" +msgstr "" + +#: include/features.php:32 +msgid "Richtext Editor" +msgstr "" + +#: include/features.php:32 +msgid "Enable richtext editor" +msgstr "" + +#: include/features.php:33 +msgid "Post Preview" +msgstr "" + +#: include/features.php:33 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: include/features.php:34 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:34 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:39 +msgid "Network Sidebar Widgets" +msgstr "" + +#: include/features.php:40 +msgid "Search by Date" +msgstr "" + +#: include/features.php:40 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: include/features.php:41 +msgid "Group Filter" +msgstr "" + +#: include/features.php:41 +msgid "Enable widget to display Network posts only from selected group" +msgstr "" + +#: include/features.php:42 +msgid "Network Filter" +msgstr "" + +#: include/features.php:42 +msgid "Enable widget to display Network posts only from selected network" +msgstr "" + +#: include/features.php:43 +msgid "Save search terms for re-use" +msgstr "" + +#: include/features.php:48 +msgid "Network Tabs" +msgstr "" + +#: include/features.php:49 +msgid "Network Personal Tab" +msgstr "" + +#: include/features.php:49 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: include/features.php:50 +msgid "Network New Tab" +msgstr "" + +#: include/features.php:50 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "" + +#: include/features.php:51 +msgid "Network Shared Links Tab" +msgstr "" + +#: include/features.php:51 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: include/features.php:56 +msgid "Post/Comment Tools" +msgstr "" + +#: include/features.php:57 +msgid "Multiple Deletion" +msgstr "" + +#: include/features.php:57 +msgid "Select and delete multiple posts/comments at once" +msgstr "" + +#: include/features.php:58 +msgid "Edit Sent Posts" +msgstr "" + +#: include/features.php:58 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: include/features.php:59 +msgid "Tagging" +msgstr "" + +#: include/features.php:59 +msgid "Ability to tag existing posts" +msgstr "" + +#: include/features.php:60 +msgid "Post Categories" +msgstr "" + +#: include/features.php:60 +msgid "Add categories to your posts" +msgstr "" + +#: include/features.php:61 +msgid "Ability to file posts under folders" +msgstr "" + +#: include/features.php:62 +msgid "Dislike Posts" +msgstr "" + +#: include/features.php:62 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: include/features.php:63 +msgid "Star Posts" +msgstr "" + +#: include/features.php:63 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: include/features.php:64 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:64 +msgid "Ability to mute notifications for a thread" +msgstr "" + +#: include/follow.php:77 +msgid "Connect URL missing." +msgstr "" + +#: include/follow.php:104 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "" + +#: include/follow.php:105 include/follow.php:125 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "" + +#: include/follow.php:123 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: include/follow.php:127 +msgid "An author or name was not found." +msgstr "" + +#: include/follow.php:129 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: include/follow.php:131 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: include/follow.php:132 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: include/follow.php:138 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: include/follow.php:148 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: include/follow.php:249 +msgid "Unable to retrieve contact information." +msgstr "" + +#: include/follow.php:302 +msgid "following" +msgstr "" + +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "" + +#: include/group.php:226 +msgid "Everybody" +msgstr "" + +#: include/group.php:249 +msgid "edit" +msgstr "" + +#: include/group.php:271 +msgid "Edit group" +msgstr "" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: include/datetime.php:256 +msgid "never" +msgstr "" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "" + +#: include/datetime.php:272 +msgid "year" +msgstr "" + +#: include/datetime.php:272 +msgid "years" +msgstr "" + +#: include/datetime.php:273 +msgid "months" +msgstr "" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "" + +#: include/datetime.php:275 +msgid "days" +msgstr "" + +#: include/datetime.php:276 +msgid "hour" +msgstr "" + +#: include/datetime.php:276 +msgid "hours" +msgstr "" + +#: include/datetime.php:277 +msgid "minute" +msgstr "" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "" + +#: include/datetime.php:278 +msgid "second" +msgstr "" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "" + +#: include/datetime.php:287 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: include/datetime.php:459 include/items.php:2484 +#, php-format +msgid "%s's birthday" +msgstr "" + +#: include/datetime.php:460 include/items.php:2485 +#, php-format +msgid "Happy Birthday %s" +msgstr "" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "" + +#: include/identity.php:121 include/identity.php:255 include/identity.php:608 +msgid "Edit profile" +msgstr "" + +#: include/identity.php:220 +msgid "Message" +msgstr "" + +#: include/identity.php:226 include/nav.php:186 +msgid "Profiles" +msgstr "" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "" + +#: include/identity.php:342 +msgid "Network:" +msgstr "" + +#: include/identity.php:374 include/identity.php:460 +msgid "g A l F d" +msgstr "" + +#: include/identity.php:375 include/identity.php:461 +msgid "F d" +msgstr "" + +#: include/identity.php:420 include/identity.php:507 +msgid "[today]" +msgstr "" + +#: include/identity.php:432 +msgid "Birthday Reminders" +msgstr "" + +#: include/identity.php:433 +msgid "Birthdays this week:" +msgstr "" + +#: include/identity.php:494 +msgid "[No description]" +msgstr "" + +#: include/identity.php:518 +msgid "Event Reminders" +msgstr "" + +#: include/identity.php:519 +msgid "Events this week:" +msgstr "" + +#: include/identity.php:546 +msgid "j F, Y" +msgstr "" + +#: include/identity.php:547 +msgid "j F" +msgstr "" + +#: include/identity.php:554 +msgid "Birthday:" +msgstr "" + +#: include/identity.php:558 +msgid "Age:" +msgstr "" + +#: include/identity.php:567 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: include/identity.php:580 +msgid "Religion:" +msgstr "" + +#: include/identity.php:584 +msgid "Hobbies/Interests:" +msgstr "" + +#: include/identity.php:591 +msgid "Contact information and Social Networks:" +msgstr "" + +#: include/identity.php:593 +msgid "Musical interests:" +msgstr "" + +#: include/identity.php:595 +msgid "Books, literature:" +msgstr "" + +#: include/identity.php:597 +msgid "Television:" +msgstr "" + +#: include/identity.php:599 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: include/identity.php:601 +msgid "Love/Romance:" +msgstr "" + +#: include/identity.php:603 +msgid "Work/employment:" +msgstr "" + +#: include/identity.php:605 +msgid "School/education:" +msgstr "" + +#: include/identity.php:633 include/nav.php:76 +msgid "Status" +msgstr "" + +#: include/identity.php:636 +msgid "Status Messages and Posts" +msgstr "" + +#: include/identity.php:644 +msgid "Profile Details" +msgstr "" + +#: include/identity.php:657 include/identity.php:660 include/nav.php:79 +msgid "Videos" +msgstr "" + +#: include/identity.php:672 include/nav.php:141 +msgid "Events and Calendar" +msgstr "" + +#: include/identity.php:680 +msgid "Only You Can See This" +msgstr "" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "" + +#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 +msgid "show" +msgstr "" + +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 +msgid "don't show" msgstr "" #: include/message.php:15 include/message.php:173 msgid "[no subject]" msgstr "" -#: include/Scrape.php:603 -msgid " on Last.fm" +#: include/Contact.php:119 +msgid "stopped following" +msgstr "" + +#: include/Contact.php:236 include/conversation.php:890 +msgid "View Status" +msgstr "" + +#: include/Contact.php:238 include/conversation.php:892 +msgid "View Photos" +msgstr "" + +#: include/Contact.php:239 include/Contact.php:264 include/conversation.php:893 +msgid "Network Posts" +msgstr "" + +#: include/Contact.php:240 include/Contact.php:264 include/conversation.php:894 +msgid "Edit Contact" +msgstr "" + +#: include/Contact.php:241 +msgid "Drop Contact" +msgstr "" + +#: include/Contact.php:242 include/Contact.php:264 include/conversation.php:895 +msgid "Send PM" +msgstr "" + +#: include/Contact.php:243 include/conversation.php:899 +msgid "Poke" +msgstr "" + +#: include/security.php:22 +msgid "Welcome " +msgstr "" + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "" + +#: include/security.php:26 +msgid "Welcome back " +msgstr "" + +#: include/security.php:375 +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/conversation.php:118 include/conversation.php:245 +#: include/text.php:2029 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "" + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "" + +#: include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: include/conversation.php:771 +msgid "remove" +msgstr "" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "" + +#: include/conversation.php:889 +msgid "Follow Thread" +msgstr "" + +#: include/conversation.php:965 +#, php-format +msgid "%s likes this." +msgstr "" + +#: include/conversation.php:965 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: include/conversation.php:970 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:973 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:987 +msgid "and" +msgstr "" + +#: include/conversation.php:993 +#, php-format +msgid ", and %d other people" +msgstr "" + +#: include/conversation.php:995 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:995 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1022 include/conversation.php:1040 +msgid "Visible to everybody" +msgstr "" + +#: include/conversation.php:1024 include/conversation.php:1042 +msgid "Please enter a video link/URL:" +msgstr "" + +#: include/conversation.php:1025 include/conversation.php:1043 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: include/conversation.php:1026 include/conversation.php:1044 +msgid "Tag term:" +msgstr "" + +#: include/conversation.php:1028 include/conversation.php:1046 +msgid "Where are you right now?" +msgstr "" + +#: include/conversation.php:1029 +msgid "Delete item(s)?" +msgstr "" + +#: include/conversation.php:1098 +msgid "permissions" +msgstr "" + +#: include/conversation.php:1121 +msgid "Post to Groups" +msgstr "" + +#: include/conversation.php:1122 +msgid "Post to Contacts" +msgstr "" + +#: include/conversation.php:1123 +msgid "Private post" +msgstr "" + +#: include/network.php:968 +msgid "view full size" msgstr "" #: include/text.php:299 @@ -6559,114 +7034,340 @@ msgstr "" msgid "surprised" msgstr "" -#: include/text.php:1266 -msgid "Monday" -msgstr "" - -#: include/text.php:1266 -msgid "Tuesday" -msgstr "" - -#: include/text.php:1266 -msgid "Wednesday" -msgstr "" - -#: include/text.php:1266 -msgid "Thursday" -msgstr "" - -#: include/text.php:1266 -msgid "Friday" -msgstr "" - -#: include/text.php:1266 -msgid "Saturday" -msgstr "" - -#: include/text.php:1266 -msgid "Sunday" -msgstr "" - -#: include/text.php:1270 -msgid "January" -msgstr "" - -#: include/text.php:1270 -msgid "February" -msgstr "" - -#: include/text.php:1270 -msgid "March" -msgstr "" - -#: include/text.php:1270 -msgid "April" -msgstr "" - -#: include/text.php:1270 -msgid "May" -msgstr "" - -#: include/text.php:1270 -msgid "June" -msgstr "" - -#: include/text.php:1270 -msgid "July" -msgstr "" - -#: include/text.php:1270 -msgid "August" -msgstr "" - -#: include/text.php:1270 -msgid "September" -msgstr "" - -#: include/text.php:1270 -msgid "October" -msgstr "" - -#: include/text.php:1270 -msgid "November" -msgstr "" - -#: include/text.php:1270 -msgid "December" -msgstr "" - -#: include/text.php:1492 +#: include/text.php:1489 msgid "bytes" msgstr "" -#: include/text.php:1524 include/text.php:1536 +#: include/text.php:1521 include/text.php:1533 msgid "Click to open/close" msgstr "" -#: include/text.php:1710 +#: include/text.php:1707 msgid "View on separate page" msgstr "" -#: include/text.php:1711 +#: include/text.php:1708 msgid "view on separate page" msgstr "" -#: include/text.php:1780 +#: include/text.php:1765 include/user.php:255 +#: view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "" + +#: include/text.php:1777 msgid "Select an alternate language" msgstr "" -#: include/text.php:2036 +#: include/text.php:2033 msgid "activity" msgstr "" -#: include/text.php:2039 +#: include/text.php:2036 msgid "post" msgstr "" -#: include/text.php:2207 +#: include/text.php:2204 msgid "Item filed" msgstr "" +#: include/bbcode.php:474 include/bbcode.php:1132 include/bbcode.php:1133 +msgid "Image/photo" +msgstr "" + +#: include/bbcode.php:572 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:606 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: include/bbcode.php:1092 include/bbcode.php:1112 +msgid "$1 wrote:" +msgstr "" + +#: include/bbcode.php:1141 include/bbcode.php:1142 +msgid "Encrypted content" +msgstr "" + +#: include/notifier.php:840 include/delivery.php:456 +msgid "(no subject)" +msgstr "" + +#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:33 +msgid "noreply" +msgstr "" + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "" + +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr "" + +#: include/bb2diaspora.php:154 include/event.php:22 +msgid "Starts:" +msgstr "" + +#: include/bb2diaspora.php:162 include/event.php:32 +msgid "Finishes:" +msgstr "" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "" + +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: include/nav.php:73 +msgid "End this session" +msgstr "" + +#: include/nav.php:76 include/nav.php:158 view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "" + +#: include/nav.php:77 view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "" + +#: include/nav.php:78 view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "" + +#: include/nav.php:80 view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "" + +#: include/nav.php:81 view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "" + +#: include/nav.php:117 +msgid "Apps" +msgstr "" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:143 +msgid "Directory" +msgstr "" + +#: include/nav.php:143 +msgid "People directory" +msgstr "" + +#: include/nav.php:145 +msgid "Information" +msgstr "" + +#: include/nav.php:145 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:155 +msgid "Conversations from your friends" +msgstr "" + +#: include/nav.php:156 +msgid "Network Reset" +msgstr "" + +#: include/nav.php:156 +msgid "Load Network page with no filters" +msgstr "" + +#: include/nav.php:163 +msgid "Friend Requests" +msgstr "" + +#: include/nav.php:167 +msgid "See all notifications" +msgstr "" + +#: include/nav.php:168 +msgid "Mark all system notifications seen" +msgstr "" + +#: include/nav.php:172 +msgid "Private mail" +msgstr "" + +#: include/nav.php:173 +msgid "Inbox" +msgstr "" + +#: include/nav.php:174 +msgid "Outbox" +msgstr "" + +#: include/nav.php:178 +msgid "Manage" +msgstr "" + +#: include/nav.php:178 +msgid "Manage other pages" +msgstr "" + +#: include/nav.php:183 +msgid "Account settings" +msgstr "" + +#: include/nav.php:186 +msgid "Manage/Edit Profiles" +msgstr "" + +#: include/nav.php:188 +msgid "Manage/edit friends and contacts" +msgstr "" + +#: include/nav.php:195 +msgid "Site setup and configuration" +msgstr "" + +#: include/nav.php:199 +msgid "Navigation" +msgstr "" + +#: include/nav.php:199 +msgid "Site map" +msgstr "" + #: include/api.php:321 include/api.php:332 include/api.php:441 #: include/api.php:1141 include/api.php:1143 msgid "User not found." @@ -6707,257 +7408,134 @@ msgstr "" msgid "DB error" msgstr "" -#: include/dba.php:56 include/dba_pdo.php:72 +#: include/user.php:48 +msgid "An invitation is required." +msgstr "" + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "" + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "" + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "" + +#: include/user.php:98 +msgid "Name too short." +msgstr "" + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "" + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "" + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "" + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "" + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "" + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "" + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "" + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "" + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 +msgid "Friends" +msgstr "" + +#: include/user.php:385 #, php-format -msgid "Cannot locate DNS info for database server '%s'" +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" msgstr "" -#: include/items.php:2445 include/datetime.php:459 +#: include/user.php:389 #, php-format -msgid "%s's birthday" +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after " +"logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that " +"page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - " +"and\n" +"\t\tperhaps what country you live in; if you do not wish to be more " +"specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are " +"necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." msgstr "" -#: include/items.php:2446 include/datetime.php:460 -#, php-format -msgid "Happy Birthday %s" -msgstr "" - -#: include/items.php:4866 -msgid "Do you really want to delete this item?" -msgstr "" - -#: include/items.php:5141 -msgid "Archives" -msgstr "" - -#: include/delivery.php:456 include/notifier.php:834 -msgid "(no subject)" -msgstr "" - -#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 -msgid "noreply" -msgstr "" - -#: include/diaspora.php:716 +#: include/diaspora.php:719 msgid "Sharing notification from Diaspora network" msgstr "" -#: include/diaspora.php:2567 +#: include/diaspora.php:2573 msgid "Attachments:" msgstr "" -#: include/identity.php:38 -msgid "Requested account is not available." +#: include/items.php:4905 +msgid "Do you really want to delete this item?" msgstr "" -#: include/identity.php:121 include/identity.php:255 include/identity.php:608 -msgid "Edit profile" -msgstr "" - -#: include/identity.php:220 -msgid "Message" -msgstr "" - -#: include/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "" - -#: include/identity.php:342 -msgid "Network:" -msgstr "" - -#: include/identity.php:374 include/identity.php:460 -msgid "g A l F d" -msgstr "" - -#: include/identity.php:375 include/identity.php:461 -msgid "F d" -msgstr "" - -#: include/identity.php:420 include/identity.php:507 -msgid "[today]" -msgstr "" - -#: include/identity.php:432 -msgid "Birthday Reminders" -msgstr "" - -#: include/identity.php:433 -msgid "Birthdays this week:" -msgstr "" - -#: include/identity.php:494 -msgid "[No description]" -msgstr "" - -#: include/identity.php:518 -msgid "Event Reminders" -msgstr "" - -#: include/identity.php:519 -msgid "Events this week:" -msgstr "" - -#: include/identity.php:546 -msgid "j F, Y" -msgstr "" - -#: include/identity.php:547 -msgid "j F" -msgstr "" - -#: include/identity.php:554 -msgid "Birthday:" -msgstr "" - -#: include/identity.php:558 -msgid "Age:" -msgstr "" - -#: include/identity.php:567 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: include/identity.php:580 -msgid "Religion:" -msgstr "" - -#: include/identity.php:584 -msgid "Hobbies/Interests:" -msgstr "" - -#: include/identity.php:591 -msgid "Contact information and Social Networks:" -msgstr "" - -#: include/identity.php:593 -msgid "Musical interests:" -msgstr "" - -#: include/identity.php:595 -msgid "Books, literature:" -msgstr "" - -#: include/identity.php:597 -msgid "Television:" -msgstr "" - -#: include/identity.php:599 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: include/identity.php:601 -msgid "Love/Romance:" -msgstr "" - -#: include/identity.php:603 -msgid "Work/employment:" -msgstr "" - -#: include/identity.php:605 -msgid "School/education:" -msgstr "" - -#: include/identity.php:633 include/nav.php:76 -msgid "Status" -msgstr "" - -#: include/identity.php:636 -msgid "Status Messages and Posts" -msgstr "" - -#: include/identity.php:644 -msgid "Profile Details" -msgstr "" - -#: include/identity.php:657 include/identity.php:660 include/nav.php:79 -msgid "Videos" -msgstr "" - -#: include/identity.php:671 -msgid "Events and Calendar" -msgstr "" - -#: include/identity.php:679 -msgid "Only You Can See This" -msgstr "" - -#: include/follow.php:75 -msgid "Connect URL missing." -msgstr "" - -#: include/follow.php:102 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" - -#: include/follow.php:103 include/follow.php:123 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" - -#: include/follow.php:121 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: include/follow.php:125 -msgid "An author or name was not found." -msgstr "" - -#: include/follow.php:127 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: include/follow.php:129 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: include/follow.php:130 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: include/follow.php:136 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: include/follow.php:146 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: include/follow.php:253 -msgid "Unable to retrieve contact information." -msgstr "" - -#: include/follow.php:306 -msgid "following" -msgstr "" - -#: include/security.php:22 -msgid "Welcome " -msgstr "" - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "" - -#: include/security.php:26 -msgid "Welcome back " -msgstr "" - -#: include/security.php:375 -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/items.php:5180 +msgid "Archives" msgstr "" #: include/profile_selectors.php:6 @@ -7104,10 +7682,6 @@ msgstr "" msgid "Sex Addict" msgstr "" -#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 -msgid "Friends" -msgstr "" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "" @@ -7192,461 +7766,6 @@ msgstr "" msgid "Ask me" msgstr "" -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" - -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "" - -#: include/uimport.php:120 include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: include/uimport.php:153 -msgid "User creation error" -msgstr "" - -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "" - -#: include/uimport.php:222 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "" - -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "" - -#: include/plugin.php:466 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: include/plugin.php:471 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" - -#: include/conversation.php:771 -msgid "remove" -msgstr "" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "" - -#: include/conversation.php:875 include/Contact.php:233 -msgid "View Status" -msgstr "" - -#: include/conversation.php:876 include/Contact.php:234 -msgid "View Profile" -msgstr "" - -#: include/conversation.php:877 include/Contact.php:235 -msgid "View Photos" -msgstr "" - -#: include/conversation.php:878 include/Contact.php:236 -#: include/Contact.php:259 -msgid "Network Posts" -msgstr "" - -#: include/conversation.php:879 include/Contact.php:237 -#: include/Contact.php:259 -msgid "Edit Contact" -msgstr "" - -#: include/conversation.php:880 include/Contact.php:239 -#: include/Contact.php:259 -msgid "Send PM" -msgstr "" - -#: include/conversation.php:881 include/Contact.php:232 -msgid "Poke" -msgstr "" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "" - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: include/conversation.php:965 -msgid "and" -msgstr "" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr "" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "" - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "" - -#: include/nav.php:73 -msgid "End this session" -msgstr "" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "" - -#: include/nav.php:117 -msgid "Apps" -msgstr "" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "" - -#: include/nav.php:141 -msgid "Directory" -msgstr "" - -#: include/nav.php:141 -msgid "People directory" -msgstr "" - -#: include/nav.php:143 -msgid "Information" -msgstr "" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "" - -#: include/nav.php:176 -msgid "Manage" -msgstr "" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "" - -#: include/nav.php:197 -msgid "Site map" -msgstr "" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "" - #: include/enotify.php:18 msgid "Friendica Notification" msgstr "" @@ -7930,153 +8049,6 @@ msgstr "" msgid "Please visit %s to approve or reject the request." msgstr "" -#: include/user.php:48 -msgid "An invitation is required." -msgstr "" - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "" - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "" - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "" - -#: include/user.php:98 -msgid "Name too short." -msgstr "" - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "" - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "" - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "" - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "" - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "" - -#: include/user.php:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "" - -#: include/user.php:156 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "" - -#: include/user.php:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "" - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: include/user.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: include/user.php:385 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "" - -#: include/user.php:389 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after " -"logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that " -"page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - " -"and\n" -"\t\tperhaps what country you live in; if you do not wish to be more " -"specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are " -"necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "" - -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "" - -#: include/bbcode.php:556 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: include/bbcode.php:590 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "" - #: include/oembed.php:220 msgid "Embedded content" msgstr "" @@ -8085,148 +8057,221 @@ msgstr "" msgid "Embedding disabled" 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/uimport.php:94 +msgid "Error decoding account file" msgstr "" -#: include/group.php:207 -msgid "Default privacy group for new contacts" +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: include/group.php:226 -msgid "Everybody" +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" msgstr "" -#: include/group.php:249 -msgid "edit" -msgstr "" - -#: include/group.php:271 -msgid "Edit group" -msgstr "" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: include/datetime.php:256 -msgid "never" -msgstr "" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "" - -#: include/datetime.php:272 -msgid "year" -msgstr "" - -#: include/datetime.php:272 -msgid "years" -msgstr "" - -#: include/datetime.php:273 -msgid "month" -msgstr "" - -#: include/datetime.php:273 -msgid "months" -msgstr "" - -#: include/datetime.php:274 -msgid "week" -msgstr "" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "" - -#: include/datetime.php:275 -msgid "day" -msgstr "" - -#: include/datetime.php:275 -msgid "days" -msgstr "" - -#: include/datetime.php:276 -msgid "hour" -msgstr "" - -#: include/datetime.php:276 -msgid "hours" -msgstr "" - -#: include/datetime.php:277 -msgid "minute" -msgstr "" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "" - -#: include/datetime.php:278 -msgid "second" -msgstr "" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "" - -#: include/datetime.php:287 +#: include/uimport.php:120 include/uimport.php:131 #, php-format -msgid "%1$d %2$s ago" +msgid "User '%s' already exists on this server!" msgstr "" -#: include/network.php:959 -msgid "view full size" +#: include/uimport.php:153 +msgid "User creation error" msgstr "" -#: include/dbstructure.php:26 +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "" + +#: include/uimport.php:222 #, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database " -"might be invalid." +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" msgstr "" -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" +#: index.php:441 +msgid "toggle mobile" msgstr "" -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" msgstr "" -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." +#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 +#: view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" +msgstr "" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "" + +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "" + +#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" +msgstr "" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +#: view/theme/vier/config.php:111 view/theme/vier/theme.php:216 +msgid "Community Pages" +msgstr "" + +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 view/theme/vier/config.php:112 +#: view/theme/vier/theme.php:128 +msgid "Community Profiles" +msgstr "" + +#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 +#: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" +msgstr "" + +#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 +#: view/theme/diabook/theme.php:628 view/theme/vier/config.php:114 +#: view/theme/vier/theme.php:331 +msgid "Connect Services" +msgstr "" + +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 view/theme/vier/config.php:115 +#: view/theme/vier/theme.php:175 +msgid "Find Friends" +msgstr "" + +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116 +#: view/theme/vier/theme.php:157 +msgid "Last users" +msgstr "" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "" + +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "" + +#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:176 +msgid "Local Directory" +msgstr "" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:110 +msgid "Set style" +msgstr "" + +#: view/theme/vier/theme.php:220 +msgid "External link to forum" +msgstr "" + +#: view/theme/vier/theme.php:252 +msgid "Quick Start" +msgstr "" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" msgstr ""