diff --git a/include/zot.php b/include/zot.php index 7707f34fc..942490551 100644 --- a/include/zot.php +++ b/include/zot.php @@ -11,6 +11,7 @@ require_once('include/crypto.php'); require_once('include/items.php'); require_once('include/hubloc.php'); +require_once('include/DReport.php'); /** @@ -1556,7 +1557,6 @@ function allowed_public_recips($msg) { function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $request = false) { $result = array(); - require_once('include/DReport.php'); $result['site'] = z_root(); @@ -1569,6 +1569,7 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ } } + foreach($deliveries as $d) { $local_public = $public; @@ -1587,11 +1588,21 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $ $channel = $r[0]; $DR->addto_recipient($channel['channel_name'] . ' <' . $channel['channel_address'] . '@' . get_app()->get_hostname() . '>'); - if($d['hash'] === $sender['hash']) { - $DR->update('self delivery ignored'); - $result[] = $DR->get(); - continue; - } + /** + * @FIXME: Somehow we need to block normal message delivery from our clones, as the delivered + * message doesn't have ACL information in it as the cloned copy does. That copy + * will normally arrive first via sync delivery, but this isn't guaranteed. + * There's a chance the current delivery could take place before the cloned copy arrives + * hence the item could have the wrong ACL and *could* be used in subsequent deliveries or + * access checks. So far all attempts at identifying this situation precisely + * have caused issues with delivery of relayed comments. + */ + +// if(($d['hash'] === $sender['hash']) && ($sender['url'] !== z_root()) && (! $relay)) { +// $DR->update('self delivery ignored'); +// $result[] = $DR->get(); +// continue; +// } // allow public postings to the sys channel regardless of permissions, but not // for comments travelling upstream. Wait and catch them on the way down. @@ -1949,8 +1960,7 @@ function delete_imported_item($sender, $item, $uid, $relay) { $item_found = false; $post_id = 0; - - $r = q("select id, item_deleted from item where ( author_xchan = '%s' or owner_xchan = '%s' or source_xchan = '%s' ) + $r = q("select id, author_xchan, owner_xchan, source_xchan, item_deleted from item where ( author_xchan = '%s' or owner_xchan = '%s' or source_xchan = '%s' ) and mid = '%s' and uid = %d limit 1", dbesc($sender['hash']), dbesc($sender['hash']), @@ -1958,6 +1968,7 @@ function delete_imported_item($sender, $item, $uid, $relay) { dbesc($item['mid']), intval($uid) ); + if ($r) { if ($r[0]['author_xchan'] === $sender['hash'] || $r[0]['owner_xchan'] === $sender['hash'] || $r[0]['source_xchan'] === $sender['hash']) $ownership_valid = true; @@ -2031,20 +2042,26 @@ function process_mail_delivery($sender, $arr, $deliveries) { } foreach($deliveries as $d) { + + $DR = new DReport(z_root(),$sender['hash'],$d['hash'],$arr['mid']); + $r = q("select * from channel where channel_hash = '%s' limit 1", dbesc($d['hash']) ); if(! $r) { - $result[] = array($d['hash'],'not found'); + $DR->update('recipient not found'); + $result[] = $DR->get(); continue; } $channel = $r[0]; + $DR->addto_recipient($channel['channel_name'] . ' <' . $channel['channel_address'] . '@' . get_app()->get_hostname() . '>'); if(! perm_is_allowed($channel['channel_id'],$sender['hash'],'post_mail')) { logger("permission denied for mail delivery {$channel['channel_id']}"); - $result[] = array($d['hash'],'permission denied',$channel['channel_name'],$arr['mid']); + $DR->update('permission denied'); + $result[] = $DR->get(); continue; } @@ -2058,11 +2075,13 @@ function process_mail_delivery($sender, $arr, $deliveries) { intval($r[0]['id']), intval($channel['channel_id']) ); - $result[] = array($d['hash'],'mail recalled',$channel['channel_name'],$arr['mid']); + $DR->update('mail recalled'); + $result[] = $DR->get(); logger('mail_recalled'); } else { - $result[] = array($d['hash'],'duplicate mail received',$channel['channel_name'],$arr['mid']); + $DR->update('duplicate mail received'); + $result[] = $DR->get(); logger('duplicate mail received'); } continue; @@ -2071,7 +2090,8 @@ function process_mail_delivery($sender, $arr, $deliveries) { $arr['account_id'] = $channel['channel_account_id']; $arr['channel_id'] = $channel['channel_id']; $item_id = mail_store($arr); - $result[] = array($d['hash'],'mail delivered',$channel['channel_name'],$arr['mid']); + $DR->update('mail delivered'); + $result[] = $DR->get(); } } @@ -3855,4 +3875,4 @@ function check_zotinfo($channel,$locations,&$ret) { } } } -} \ No newline at end of file +} diff --git a/mod/dreport.php b/mod/dreport.php index 31a6274c8..c320bf0e6 100644 --- a/mod/dreport.php +++ b/mod/dreport.php @@ -7,14 +7,44 @@ function dreport_content(&$a) { return; } + $table = 'item'; + $channel = $a->get_channel(); $mid = ((argc() > 1) ? argv(1) : ''); + if($mid === 'mail') { + $table = 'mail'; + $mid = ((argc() > 2) ? argv(2) : ''); + } + + if(! $mid) { notice( t('Invalid message') . EOL); return; } + + switch($table) { + case 'item': + $i = q("select id from item where mid = '%s' and author_xchan = '%s' ", + dbesc($mid), + dbesc($channel['channel_hash']) + ); + break; + case 'mail': + $i = q("select id from mail where mid = '%s' and from_xchan = '%s'", + dbesc($mid), + dbesc($channel['channel_hash']) + ); + break; + default: + break; + } + + if(! $i) { + notice( t('Permission denied') . EOL); + return; + } $r = q("select * from dreport where dreport_xchan = '%s' and dreport_mid = '%s'", dbesc($channel['channel_hash']), @@ -33,6 +63,11 @@ function dreport_content(&$a) { for($x = 0; $x < count($r); $x++ ) { $r[$x]['name'] = escape_tags(substr($r[$x]['dreport_recip'],strpos($r[$x]['dreport_recip'],' '))); + // This has two purposes: 1. make the delivery report strings translateable, and + // 2. assign an ordering to item delivery results so we can group them and provide + // a readable report with more interesting events listed toward the top and lesser + // interesting items towards the bottom + switch($r[$x]['dreport_result']) { case 'channel sync processed': $r[$x]['gravity'] = 0; @@ -61,6 +96,18 @@ function dreport_content(&$a) { $r[$x]['dreport_result'] = t('permission denied'); $r[$x]['gravity'] = 6; break; + case 'recipient not found': + $r[$x]['dreport_result'] = t('recipient not found'); + break; + case 'mail recalled': + $r[$x]['dreport_result'] = t('mail recalled'); + break; + case 'duplicate mail received': + $r[$x]['dreport_result'] = t('duplicate mail received'); + break; + case 'mail delivered': + $r[$x]['dreport_result'] = t('mail delivered'); + break; default: $r[$x]['gravity'] = 1; break; diff --git a/mod/mail.php b/mod/mail.php index e4a5ebafd..525127a71 100644 --- a/mod/mail.php +++ b/mod/mail.php @@ -324,6 +324,7 @@ function mail_content(&$a) { $mails[] = array( 'mailbox' => $mailbox, 'id' => $message['id'], + 'mid' => $message['mid'], 'from_name' => $message['from']['xchan_name'], 'from_url' => chanlink_hash($message['from_xchan']), 'from_photo' => $message['from']['xchan_photo_s'], @@ -333,6 +334,7 @@ function mail_content(&$a) { 'subject' => $message['title'], 'body' => smilies(bbcode($message['body']) . $s), 'delete' => t('Delete message'), + 'dreport' => t('Delivery report'), 'recall' => t('Recall message'), 'can_recall' => (($channel['channel_hash'] == $message['from_xchan']) ? true : false), 'is_recalled' => (intval($message['mail_recalled']) ? t('Message has been recalled.') : ''), diff --git a/version.inc b/version.inc index 80d66264c..d3462488c 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-09-28.1169 +2015-09-30.1171 diff --git a/view/de/hmessages.po b/view/de/hmessages.po index ef27fd162..3121c7c59 100644 --- a/view/de/hmessages.po +++ b/view/de/hmessages.po @@ -1,1251 +1,157 @@ -# Red Matrix Project -# Copyright (C) 2012-2014 the Red Matrix Project +# Hubzilla Project +# Copyright (C) 2012-2014 the Hubzilla Project # This file is distributed under the same license as the Red package. # # Translators: # Alex , 2013 -# Alex , 2013 -# Balder , 2013 # Balder , 2013 # bavatar , 2013 -# JooBee , 2014 -# Einer von Vielen , 2013 -# Einer von Vielen , 2013 -# Ettore Atalan , 2014-2015 -# Frank Dieckmann , 2013 -# Frank Dieckmann , 2013 -# Kai , 2015 -# Oliver , 2013-2014 -# Phellmes , 2014 -# Steff , 2015 -# bavatar , 2013-2014 # do.t , 2014 -# zottel , 2013-2015 +# Einer von Vielen , 2013 +# Ettore Atalan , 2015 +# Frank Dieckmann , 2013 +# JooBee , 2014 +# Kai , 2015 +# Oliver , 2015 +# Phellmes , 2014 # sasiflo , 2014 +# Steff , 2015 +# zottel , 2015 msgid "" msgstr "" -"Project-Id-Version: Red Matrix\n" +"Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-20 00:04-0800\n" -"PO-Revision-Date: 2015-02-27 09:55+0000\n" +"POT-Creation-Date: 2015-09-26 22:48-0700\n" +"PO-Revision-Date: 2015-09-30 11:56+0000\n" "Last-Translator: zottel \n" -"Language-Team: German (http://www.transifex.com/projects/p/red-matrix/language/de/)\n" +"Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:142 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." +msgstr "Kein Benutzername in der Importdatei gefunden." -#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 -#: ../../mod/profile_photo.php:143 ../../mod/profile_photo.php:302 -#: ../../mod/profile_photo.php:424 ../../mod/photos.php:91 -#: ../../mod/photos.php:625 -msgid "Profile Photos" -msgstr "Profilfotos" +#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." -#: ../../include/photos.php:15 ../../include/attach.php:137 -#: ../../include/attach.php:184 ../../include/attach.php:247 -#: ../../include/attach.php:261 ../../include/attach.php:301 -#: ../../include/attach.php:315 ../../include/attach.php:339 -#: ../../include/attach.php:532 ../../include/attach.php:606 -#: ../../include/chat.php:116 ../../include/items.php:4072 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/editblock.php:65 -#: ../../mod/manage.php:6 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 ../../mod/connedit.php:321 -#: ../../mod/editpost.php:13 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/network.php:12 ../../mod/events.php:219 -#: ../../mod/settings.php:560 ../../mod/group.php:9 ../../mod/setup.php:207 -#: ../../mod/common.php:35 ../../mod/suggest.php:26 -#: ../../mod/connections.php:169 ../../mod/item.php:197 ../../mod/item.php:205 -#: ../../mod/item.php:938 ../../mod/thing.php:247 ../../mod/thing.php:264 -#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/appman.php:66 -#: ../../mod/authtest.php:13 ../../mod/editlayout.php:64 -#: ../../mod/editlayout.php:89 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:118 ../../mod/rate.php:110 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:77 -#: ../../mod/sources.php:66 ../../mod/menu.php:61 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 -#: ../../mod/filestorage.php:114 ../../mod/fsuggest.php:78 -#: ../../mod/poke.php:128 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 -#: ../../mod/webpages.php:67 ../../mod/delegate.php:6 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/regmod.php:17 ../../mod/message.php:16 ../../mod/mitem.php:106 -#: ../../mod/mood.php:111 ../../mod/layouts.php:67 ../../mod/layouts.php:74 -#: ../../mod/layouts.php:85 ../../mod/like.php:178 ../../mod/mail.php:114 -#: ../../mod/notifications.php:66 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/photos.php:68 ../../mod/page.php:28 -#: ../../mod/page.php:78 ../../mod/bookmarks.php:46 ../../mod/channel.php:90 -#: ../../mod/channel.php:199 ../../mod/channel.php:242 -#: ../../mod/register.php:72 ../../mod/service_limits.php:7 -#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:390 -msgid "Permission denied." -msgstr "Zugang verweigert" +#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:480 +msgid "Import completed." +msgstr "Import abgeschlossen." -#: ../../include/photos.php:105 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" - -#: ../../include/photos.php:112 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: ../../include/photos.php:141 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" - -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "Foto speichern schlug fehl" - -#: ../../include/photos.php:355 ../../include/conversation.php:1589 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: ../../include/photos.php:359 -msgid "Upload New Photos" -msgstr "Lade neue Fotos hoch" - -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "Neuer Beitrag wurde erzeugt" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "hat %s's Beitrag kommentiert" - -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" - -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:42 -#: ../../mod/editblock.php:143 ../../mod/blocks.php:132 -#: ../../mod/editpost.php:113 ../../mod/settings.php:645 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/thing.php:233 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 -#: ../../mod/menu.php:78 ../../mod/webpages.php:162 ../../mod/layouts.php:167 -msgid "Edit" -msgstr "Bearbeiten" - -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "Ansicht" - -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 -#: ../../include/conversation.php:1152 ../../mod/events.php:651 -#: ../../mod/webpages.php:166 ../../mod/photos.php:964 -msgid "Preview" -msgstr "Vorschau" - -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "Aktionen" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "Seiten-Link" - -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "Titel" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "Erstellt" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "Geändert" - -#: ../../include/widgets.php:35 ../../include/taxonomy.php:255 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Kategorien" - -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apps" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1494 -msgid "Personal" -msgstr "Persönlich" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Persönliche App erstellen" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Persönliche App bearbeiten" - -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/identity.php:840 ../../include/Contact.php:107 -#: ../../include/conversation.php:940 ../../mod/suggest.php:51 -#: ../../mod/directory.php:272 ../../mod/match.php:62 -msgid "Connect" -msgstr "Verbinden" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" - -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Vorschläge" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Adresse des Kanals eingeben" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Notizen" - -#: ../../include/widgets.php:192 ../../include/text.php:838 -#: ../../include/text.php:850 ../../mod/filer.php:50 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/admin.php:1344 ../../mod/admin.php:1365 -msgid "Save" -msgstr "Speichern" - -#: ../../include/widgets.php:264 -msgid "Remove term" -msgstr "Eintrag löschen" - -#: ../../include/widgets.php:272 ../../include/features.php:72 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - -#: ../../include/widgets.php:273 ../../include/group.php:303 -msgid "add" -msgstr "hinzufügen" - -#: ../../include/widgets.php:302 ../../include/features.php:84 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:347 -msgid "Archives" -msgstr "Archive" - -#: ../../include/widgets.php:425 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../include/widgets.php:426 ../../mod/connedit.php:563 -msgid "Me" -msgstr "Ich" - -#: ../../include/widgets.php:427 ../../mod/connedit.php:566 -msgid "Best Friends" -msgstr "Beste Freunde" - -#: ../../include/widgets.php:428 ../../include/identity.php:387 -#: ../../include/identity.php:388 ../../include/identity.php:395 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:567 -#: ../../mod/settings.php:335 ../../mod/settings.php:339 -#: ../../mod/settings.php:340 ../../mod/settings.php:343 -#: ../../mod/settings.php:354 -msgid "Friends" -msgstr "Freunde" - -#: ../../include/widgets.php:429 -msgid "Co-workers" -msgstr "Kollegen" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:568 -msgid "Former Friends" -msgstr "ehem. Freunde" - -#: ../../include/widgets.php:431 ../../mod/connedit.php:569 -msgid "Acquaintances" -msgstr "Bekannte" - -#: ../../include/widgets.php:432 -msgid "Everybody" -msgstr "Jeder" - -#: ../../include/widgets.php:466 -msgid "Account settings" -msgstr "Konto-Einstellungen" - -#: ../../include/widgets.php:472 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" - -#: ../../include/widgets.php:478 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../include/widgets.php:484 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" - -#: ../../include/widgets.php:490 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" - -#: ../../include/widgets.php:496 -msgid "Connected apps" -msgstr "Verbundene Apps" - -#: ../../include/widgets.php:502 -msgid "Export channel" -msgstr "Kanal exportieren" - -#: ../../include/widgets.php:511 ../../mod/connedit.php:627 -msgid "Connection Default Permissions" -msgstr "Standardzugriffsrechte für neue Verbindungen:" - -#: ../../include/widgets.php:519 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" - -#: ../../include/widgets.php:527 ../../include/features.php:61 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanal-Quellen" - -#: ../../include/widgets.php:535 ../../include/nav.php:210 -#: ../../include/apps.php:134 ../../mod/admin.php:956 ../../mod/admin.php:1161 -msgid "Settings" -msgstr "Einstellungen" - -#: ../../include/widgets.php:548 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../include/widgets.php:551 -msgid "Check Mail" -msgstr "E-Mails abrufen" - -#: ../../include/widgets.php:556 ../../include/nav.php:201 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/widgets.php:634 -msgid "Chat Rooms" -msgstr "Chaträume" - -#: ../../include/widgets.php:654 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../include/widgets.php:674 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../include/widgets.php:801 ../../include/widgets.php:859 -msgid "photo/image" -msgstr "Foto/Bild" - -#: ../../include/widgets.php:954 ../../include/widgets.php:956 -msgid "Rate Me" -msgstr "Bewerte mich" - -#: ../../include/widgets.php:960 -msgid "View Ratings" -msgstr "Bewertungen ansehen" - -#: ../../include/widgets.php:971 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Red Matrix Benachrichtigung" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "redmatrix" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Danke." - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" - -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." - -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "eine private Nachricht" - -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" - -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" - -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." - -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." - -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" - -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" - -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" - -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" - -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." - -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" - -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]." - -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" - -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" - -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" - -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Benachrichtigung] Vorstellung erhalten" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" - -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." - -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kannst Dir das Profil unter %s ansehen" - -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." - -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" - -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" - -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." - -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Name:" - -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." - -#: ../../include/enotify.php:499 -msgid "[Red:Notify]" -msgstr "[Red:Benachrichtigung]" - -#: ../../include/text.php:320 -msgid "prev" -msgstr "vorherige" - -#: ../../include/text.php:322 -msgid "first" -msgstr "erste" - -#: ../../include/text.php:351 -msgid "last" -msgstr "letzte" - -#: ../../include/text.php:354 -msgid "next" -msgstr "nächste" - -#: ../../include/text.php:366 -msgid "older" -msgstr "älter" - -#: ../../include/text.php:368 -msgid "newer" -msgstr "neuer" - -#: ../../include/text.php:751 -msgid "No connections" -msgstr "Keine Verbindungen" - -#: ../../include/text.php:767 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Verbindung" -msgstr[1] "%d Verbindungen" - -#: ../../include/text.php:780 ../../mod/viewconnections.php:86 -msgid "View Connections" -msgstr "Verbindungen anzeigen" - -#: ../../include/text.php:837 ../../include/text.php:849 -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../mod/search.php:34 -msgid "Search" -msgstr "Suche" - -#: ../../include/text.php:916 -msgid "poke" -msgstr "anstupsen" - -#: ../../include/text.php:916 ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" - -#: ../../include/text.php:917 -msgid "ping" -msgstr "anpingen" - -#: ../../include/text.php:917 -msgid "pinged" -msgstr "pingte" - -#: ../../include/text.php:918 -msgid "prod" -msgstr "knuffen" - -#: ../../include/text.php:918 -msgid "prodded" -msgstr "knuffte" - -#: ../../include/text.php:919 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:919 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:920 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:920 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:921 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:921 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:931 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:932 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:933 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:934 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:935 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:936 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:937 -msgid "stupified" -msgstr "verblüfft" - -#: ../../include/text.php:938 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:939 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:940 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:941 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:942 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:943 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:944 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:945 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:946 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:947 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:948 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:949 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:950 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:951 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1117 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1117 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1117 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1117 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1117 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1117 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1117 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1121 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1121 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1121 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1121 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1121 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1121 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1121 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1121 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1121 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1121 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1121 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1121 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1199 -msgid "unknown.???" -msgstr "unbekannt.???" - -#: ../../include/text.php:1200 -msgid "bytes" -msgstr "Bytes" - -#: ../../include/text.php:1236 -msgid "remove category" -msgstr "Kategorie entfernen" - -#: ../../include/text.php:1305 -msgid "remove from file" -msgstr "aus der Datei entfernen" - -#: ../../include/text.php:1381 ../../include/text.php:1392 -#: ../../mod/connedit.php:635 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" - -#: ../../include/text.php:1540 ../../mod/events.php:444 -msgid "Link to Source" -msgstr "Link zur Quelle" - -#: ../../include/text.php:1559 -msgid "Select a page layout: " -msgstr "Ein Seiten-Layout auswählen:" - -#: ../../include/text.php:1562 ../../include/text.php:1622 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1595 -msgid "Page content type: " -msgstr "Content-Typ der Seite:" - -#: ../../include/text.php:1634 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" - -#: ../../include/text.php:1753 ../../include/diaspora.php:1909 -#: ../../include/conversation.php:120 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:43 ../../mod/like.php:335 -msgid "photo" -msgstr "Foto" - -#: ../../include/text.php:1756 ../../include/conversation.php:123 -#: ../../mod/tagger.php:47 ../../mod/like.php:337 -msgid "event" -msgstr "Termin" - -#: ../../include/text.php:1759 ../../include/diaspora.php:1909 -#: ../../include/conversation.php:148 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:51 ../../mod/like.php:335 -msgid "status" -msgstr "Status" - -#: ../../include/text.php:1761 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "Kommentar" - -#: ../../include/text.php:1766 -msgid "activity" -msgstr "Aktivität" - -#: ../../include/text.php:2053 -msgid "Design" -msgstr "Design" - -#: ../../include/text.php:2056 -msgid "Blocks" -msgstr "Blöcke" - -#: ../../include/text.php:2057 -msgid "Menus" -msgstr "Menüs" - -#: ../../include/text.php:2058 -msgid "Layouts" -msgstr "Layouts" - -#: ../../include/text.php:2059 -msgid "Pages" -msgstr "Seiten" - -#: ../../include/text.php:2395 ../../include/RedDAV/RedBrowser.php:130 -msgid "Collection" -msgstr "Ordner" - -#: ../../include/attach.php:242 ../../include/attach.php:296 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:352 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../include/attach.php:369 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" - -#: ../../include/attach.php:387 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" - -#: ../../include/attach.php:398 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../include/attach.php:410 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." - -#: ../../include/attach.php:493 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:505 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:547 ../../include/attach.php:564 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:611 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:627 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:651 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:702 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:706 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dieses Element löschen?" - -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:962 ../../mod/photos.php:1080 -msgid "Comment" -msgstr "Kommentar" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 -msgid "[+] show all" -msgstr "[+] Alle anzeigen" - -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Weniger anzeigen" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] aufklappen" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] einklappen" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Kennwort zu kurz" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Kennwörter stimmen nicht überein" - -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "alle" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "geheime Passphrase" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hinweis zur Passphrase" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alle schließen" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nichts Neues hier" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" - -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -msgid "Rating" -msgstr "Bewertung" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Beschreibung (optional)" - -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/xchan.php:11 ../../mod/connedit.php:653 ../../mod/connect.php:93 -#: ../../mod/events.php:654 ../../mod/settings.php:583 -#: ../../mod/settings.php:708 ../../mod/settings.php:737 -#: ../../mod/settings.php:760 ../../mod/settings.php:842 -#: ../../mod/settings.php:1038 ../../mod/group.php:81 ../../mod/setup.php:313 -#: ../../mod/setup.php:358 ../../mod/thing.php:284 ../../mod/thing.php:327 -#: ../../mod/pdledit.php:58 ../../mod/appman.php:99 ../../mod/import.php:504 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/rate.php:167 -#: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:155 -#: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 -#: ../../mod/profiles.php:667 ../../mod/admin.php:416 ../../mod/admin.php:728 -#: ../../mod/admin.php:864 ../../mod/admin.php:997 ../../mod/admin.php:1196 -#: ../../mod/admin.php:1283 ../../mod/mood.php:134 ../../mod/mail.php:355 -#: ../../mod/photos.php:565 ../../mod/photos.php:642 ../../mod/photos.php:923 -#: ../../mod/photos.php:963 ../../mod/photos.php:1081 ../../mod/poll.php:68 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Bestätigen" - -#: ../../include/js_strings.php:24 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:25 -msgid "timeago.prefixFromNow" -msgstr " " - -#: ../../include/js_strings.php:26 -msgid "ago" -msgstr "her" - -#: ../../include/js_strings.php:27 -msgid "from now" -msgstr "von jetzt" - -#: ../../include/js_strings.php:28 -msgid "less than a minute" -msgstr "weniger als eine Minute" - -#: ../../include/js_strings.php:29 -msgid "about a minute" -msgstr "ungefähr eine Minute" - -#: ../../include/js_strings.php:30 -#, php-format -msgid "%d minutes" -msgstr "%d Minuten" - -#: ../../include/js_strings.php:31 -msgid "about an hour" -msgstr "ungefähr eine Stunde" - -#: ../../include/js_strings.php:32 -#, php-format -msgid "about %d hours" -msgstr "ungefähr %d Stunden" - -#: ../../include/js_strings.php:33 -msgid "a day" -msgstr "ein Tag" - -#: ../../include/js_strings.php:34 -#, php-format -msgid "%d days" -msgstr "%d Tage" - -#: ../../include/js_strings.php:35 -msgid "about a month" -msgstr "ungefähr ein Monat" - -#: ../../include/js_strings.php:36 -#, php-format -msgid "%d months" -msgstr "%d Monate" - -#: ../../include/js_strings.php:37 -msgid "about a year" -msgstr "ungefähr ein Jahr" - -#: ../../include/js_strings.php:38 -#, php-format -msgid "%d years" -msgstr "%d Jahre" - -#: ../../include/js_strings.php:39 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:40 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:266 +#: ../../include/RedDAV/RedBrowser.php:107 +#: ../../include/RedDAV/RedBrowser.php:265 msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../include/RedDAV/RedBrowser.php:133 +#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2497 +msgid "Collection" +msgstr "Ordner" + +#: ../../include/RedDAV/RedBrowser.php:134 msgid "Principal" msgstr "Prinzipal" -#: ../../include/RedDAV/RedBrowser.php:136 +#: ../../include/RedDAV/RedBrowser.php:137 msgid "Addressbook" msgstr "Adressbuch" -#: ../../include/RedDAV/RedBrowser.php:139 +#: ../../include/RedDAV/RedBrowser.php:140 msgid "Calendar" msgstr "Kalender" -#: ../../include/RedDAV/RedBrowser.php:142 +#: ../../include/RedDAV/RedBrowser.php:143 msgid "Schedule Inbox" msgstr "Posteingang für überwachte Kalender" -#: ../../include/RedDAV/RedBrowser.php:145 +#: ../../include/RedDAV/RedBrowser.php:146 msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1019 -#: ../../mod/connedit.php:570 ../../mod/photos.php:681 -#: ../../mod/photos.php:1113 +#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1021 +#: ../../include/apps.php:355 ../../include/apps.php:410 +#: ../../mod/photos.php:720 ../../mod/photos.php:1159 msgid "Unknown" msgstr "Unbekannt" -#: ../../include/RedDAV/RedBrowser.php:225 +#: ../../include/RedDAV/RedBrowser.php:227 #, php-format msgid "%1$s used" msgstr "%1$s verwendet" -#: ../../include/RedDAV/RedBrowser.php:230 +#: ../../include/RedDAV/RedBrowser.php:232 #, php-format msgid "%1$s used of %2$s (%3$s%)" msgstr "%1$s von %2$s verwendet (%3$s%)" -#: ../../include/RedDAV/RedBrowser.php:249 ../../include/nav.php:98 -#: ../../include/apps.php:135 ../../include/conversation.php:1595 +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/conversation.php:1611 +#: ../../include/apps.php:135 ../../include/nav.php:93 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "Dateien" -#: ../../include/RedDAV/RedBrowser.php:251 +#: ../../include/RedDAV/RedBrowser.php:253 msgid "Total" msgstr "Summe" -#: ../../include/RedDAV/RedBrowser.php:253 +#: ../../include/RedDAV/RedBrowser.php:255 msgid "Shared" msgstr "Geteilt" -#: ../../include/RedDAV/RedBrowser.php:254 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/menu.php:100 -#: ../../mod/mitem.php:169 ../../mod/new_channel.php:121 +#: ../../include/RedDAV/RedBrowser.php:256 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/layouts.php:175 +#: ../../mod/menu.php:114 ../../mod/new_channel.php:121 +#: ../../mod/webpages.php:180 ../../mod/blocks.php:152 msgid "Create" msgstr "Erstelle" -#: ../../include/RedDAV/RedBrowser.php:255 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1228 +#: ../../include/RedDAV/RedBrowser.php:257 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:745 +#: ../../mod/photos.php:1278 ../../mod/profile_photo.php:450 msgid "Upload" msgstr "Hochladen" -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:585 -#: ../../mod/settings.php:611 ../../mod/admin.php:871 -#: ../../mod/sharedwithme.php:100 +#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:948 +#: ../../mod/settings.php:585 ../../mod/settings.php:611 +#: ../../mod/sharedwithme.php:95 msgid "Name" msgstr "Name" -#: ../../include/RedDAV/RedBrowser.php:263 +#: ../../include/RedDAV/RedBrowser.php:262 msgid "Type" msgstr "Typ" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101 +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 msgid "Size" msgstr "Größe" -#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102 +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 msgid "Last Modified" msgstr "Zuletzt geändert" -#: ../../include/RedDAV/RedBrowser.php:268 ../../include/ItemObject.php:120 -#: ../../include/apps.php:255 ../../include/conversation.php:645 -#: ../../mod/connedit.php:533 ../../mod/settings.php:646 -#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/admin.php:735 -#: ../../mod/admin.php:866 ../../mod/photos.php:1044 +#: ../../include/RedDAV/RedBrowser.php:266 ../../include/menu.php:108 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/apps.php:254 ../../include/ItemObject.php:100 +#: ../../mod/layouts.php:183 ../../mod/editpost.php:113 +#: ../../mod/editblock.php:135 ../../mod/menu.php:108 +#: ../../mod/webpages.php:181 ../../mod/blocks.php:153 ../../mod/thing.php:257 +#: ../../mod/settings.php:645 ../../mod/connections.php:235 +#: ../../mod/connections.php:248 ../../mod/connections.php:267 +#: ../../mod/editlayout.php:134 ../../mod/editwebpage.php:176 +msgid "Edit" +msgstr "Bearbeiten" + +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/conversation.php:662 +#: ../../include/apps.php:255 ../../include/ItemObject.php:120 +#: ../../mod/connedit.php:547 ../../mod/editblock.php:181 +#: ../../mod/admin.php:783 ../../mod/admin.php:942 ../../mod/photos.php:1090 +#: ../../mod/webpages.php:183 ../../mod/blocks.php:155 ../../mod/thing.php:258 +#: ../../mod/settings.php:646 ../../mod/editlayout.php:179 +#: ../../mod/editwebpage.php:223 ../../mod/group.php:173 msgid "Delete" msgstr "Löschen" @@ -1257,59 +163,292 @@ msgstr "Neuen Ordner anlegen" msgid "Upload file" msgstr "Datei hochladen" -#: ../../include/bookmarks.php:35 +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kann meine Datei- und Bilderordner sehen" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner schreiben" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" + +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" + +#: ../../include/permissions.php:867 +msgid "Social Networking" +msgstr "Soziales Netzwerk" + +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Mostly Public" +msgstr "Weitgehend öffentlich" + +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Restricted" +msgstr "Beschränkt" + +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +msgid "Private" +msgstr "Privat" + +#: ../../include/permissions.php:868 +msgid "Community Forum" +msgstr "Forum" + +#: ../../include/permissions.php:869 +msgid "Feed Republish" +msgstr "Teilen von Feeds" + +#: ../../include/permissions.php:870 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" + +#: ../../include/permissions.php:870 +msgid "Celebrity/Soapbox" +msgstr "Mitteilungs-Kanal (keine Kommentare)" + +#: ../../include/permissions.php:870 +msgid "Group Repository" +msgstr "Gruppenarchiv" + +#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" +msgstr "Andere" + +#: ../../include/permissions.php:871 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" + +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Der Chatraum hat keinen Namen" + +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Name des Chatraums bereits vergeben" + +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Ungültiger Raumbezeichner." + +#: ../../include/chat.php:122 +msgid "Room not found." +msgstr "Chatraum konnte nicht gefunden werden." + +#: ../../include/chat.php:133 ../../include/photos.php:26 +#: ../../include/attach.php:137 ../../include/attach.php:185 +#: ../../include/attach.php:248 ../../include/attach.php:262 +#: ../../include/attach.php:269 ../../include/attach.php:334 +#: ../../include/attach.php:348 ../../include/attach.php:355 +#: ../../include/attach.php:433 ../../include/attach.php:840 +#: ../../include/attach.php:911 ../../include/attach.php:1064 +#: ../../include/items.php:4342 ../../mod/achievements.php:30 +#: ../../mod/fsuggest.php:78 ../../mod/authtest.php:13 +#: ../../mod/bookmarks.php:48 ../../mod/block.php:22 ../../mod/block.php:72 +#: ../../mod/id.php:71 ../../mod/like.php:177 ../../mod/common.php:35 +#: ../../mod/mitem.php:111 ../../mod/connedit.php:348 ../../mod/mood.php:112 +#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 +#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 +#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 +#: ../../mod/poke.php:133 ../../mod/network.php:12 ../../mod/chat.php:91 +#: ../../mod/chat.php:96 ../../mod/message.php:16 ../../mod/channel.php:100 +#: ../../mod/channel.php:215 ../../mod/channel.php:255 +#: ../../mod/editpost.php:13 ../../mod/editblock.php:65 ../../mod/item.php:206 +#: ../../mod/item.php:214 ../../mod/item.php:992 ../../mod/appman.php:66 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/menu.php:74 +#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 +#: ../../mod/pdledit.php:21 ../../mod/photos.php:70 ../../mod/rate.php:110 +#: ../../mod/events.php:256 ../../mod/profile_photo.php:338 +#: ../../mod/profile_photo.php:351 ../../mod/mail.php:114 +#: ../../mod/webpages.php:69 ../../mod/register.php:72 ../../mod/blocks.php:69 +#: ../../mod/blocks.php:76 ../../mod/service_limits.php:7 +#: ../../mod/sources.php:66 ../../mod/regmod.php:17 ../../mod/thing.php:271 +#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/viewsrc.php:14 +#: ../../mod/settings.php:565 ../../mod/manage.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/connections.php:29 +#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 +#: ../../mod/group.php:9 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/locs.php:82 +#: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7 +#: ../../mod/suggest.php:26 ../../mod/profiles.php:188 +#: ../../mod/profiles.php:576 ../../index.php:178 ../../index.php:361 +msgid "Permission denied." +msgstr "Zugang verweigert" + +#: ../../include/chat.php:143 +msgid "Room is full" +msgstr "Der Raum ist voll" + +#: ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: ../../include/datetime.php:132 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" + +#: ../../include/datetime.php:235 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 ../../mod/events.php:689 +msgid "Required" +msgstr "Benötigt" + +#: ../../include/datetime.php:262 ../../boot.php:2306 +msgid "never" +msgstr "Nie" + +#: ../../include/datetime.php:268 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" + +#: ../../include/datetime.php:271 +msgid "year" +msgstr "Jahr" + +#: ../../include/datetime.php:271 +msgid "years" +msgstr "Jahre" + +#: ../../include/datetime.php:272 +msgid "month" +msgstr "Monat" + +#: ../../include/datetime.php:272 +msgid "months" +msgstr "Monate" + +#: ../../include/datetime.php:273 +msgid "week" +msgstr "Woche" + +#: ../../include/datetime.php:273 +msgid "weeks" +msgstr "Wochen" + +#: ../../include/datetime.php:274 +msgid "day" +msgstr "Tag" + +#: ../../include/datetime.php:274 +msgid "days" +msgstr "Tage" + +#: ../../include/datetime.php:275 +msgid "hour" +msgstr "Stunde" + +#: ../../include/datetime.php:275 +msgid "hours" +msgstr "Stunden" + +#: ../../include/datetime.php:276 +msgid "minute" +msgstr "Minute" + +#: ../../include/datetime.php:276 +msgid "minutes" +msgstr "Minuten" + +#: ../../include/datetime.php:277 +msgid "second" +msgstr "Sekunde" + +#: ../../include/datetime.php:277 +msgid "seconds" +msgstr "Sekunden" + +#: ../../include/datetime.php:285 #, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" -#: ../../include/taxonomy.php:215 ../../include/taxonomy.php:234 -msgid "Tags" -msgstr "Schlagwörter" +#: ../../include/datetime.php:519 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" -#: ../../include/taxonomy.php:274 -msgid "Keywords" -msgstr "Schlüsselwörter" - -#: ../../include/taxonomy.php:299 -msgid "have" -msgstr "habe" - -#: ../../include/taxonomy.php:299 -msgid "has" -msgstr "hat" - -#: ../../include/taxonomy.php:300 -msgid "want" -msgstr "will" - -#: ../../include/taxonomy.php:300 -msgid "wants" -msgstr "will" - -#: ../../include/taxonomy.php:301 ../../include/ItemObject.php:254 -msgid "like" -msgstr "mag" - -#: ../../include/taxonomy.php:301 -msgid "likes" -msgstr "gefällt" - -#: ../../include/taxonomy.php:302 ../../include/ItemObject.php:255 -msgid "dislike" -msgstr "verurteile" - -#: ../../include/taxonomy.php:302 -msgid "dislikes" -msgstr "missfällt" - -#: ../../include/taxonomy.php:385 ../../include/identity.php:1155 -#: ../../include/ItemObject.php:179 ../../include/conversation.php:1692 -#: ../../mod/photos.php:1001 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" +#: ../../include/datetime.php:520 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" #: ../../include/features.php:38 msgid "General Features" @@ -1371,200 +510,555 @@ msgstr "Kanal-Auswahl in der Navigationsleiste" msgid "Change channels directly from within the navigation dropdown menu" msgstr "Wechsle direkt über das Navigationsmenü zu anderen Kanälen" -#: ../../include/features.php:50 -msgid "Extended Identity Sharing" -msgstr "Erweitertes Teilen von Identitäten" +#: ../../include/features.php:47 +msgid "Photo Location" +msgstr "Aufnahmeort" -#: ../../include/features.php:50 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt." +#: ../../include/features.php:47 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Aufnahmeort des Fotos auf einer Karte verlinken, falls verfügbar." -#: ../../include/features.php:51 +#: ../../include/features.php:49 msgid "Expert Mode" msgstr "Expertenmodus" -#: ../../include/features.php:51 +#: ../../include/features.php:49 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" -#: ../../include/features.php:52 +#: ../../include/features.php:50 msgid "Premium Channel" msgstr "Premium-Kanal" -#: ../../include/features.php:52 +#: ../../include/features.php:50 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" -#: ../../include/features.php:57 +#: ../../include/features.php:55 msgid "Post Composition Features" msgstr "Nachbearbeitungsfunktionen" -#: ../../include/features.php:59 +#: ../../include/features.php:57 msgid "Use Markdown" msgstr "Markdown benutzen" -#: ../../include/features.php:59 +#: ../../include/features.php:57 msgid "Allow use of \"Markdown\" to format posts" msgstr "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen" -#: ../../include/features.php:60 +#: ../../include/features.php:58 msgid "Large Photos" msgstr "Große Fotos" -#: ../../include/features.php:60 +#: ../../include/features.php:58 msgid "" "Include large (640px) photo thumbnails in posts. If not enabled, use small " "(320px) photo thumbnails" msgstr "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt." -#: ../../include/features.php:61 +#: ../../include/features.php:59 ../../include/widgets.php:545 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanal-Quellen" + +#: ../../include/features.php:59 msgid "Automatically import channel content from other channels or feeds" msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/features.php:62 +#: ../../include/features.php:60 msgid "Even More Encryption" msgstr "Noch mehr Verschlüsselung" -#: ../../include/features.php:62 +#: ../../include/features.php:60 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)" -#: ../../include/features.php:63 +#: ../../include/features.php:61 msgid "Enable voting tools" msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/features.php:63 +#: ../../include/features.php:61 msgid "Provide a class of post which others can vote on" msgstr "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" -#: ../../include/features.php:64 -msgid "Flag Adult Photos" -msgstr "Nicht jugendfreie Fotos markieren" - -#: ../../include/features.php:64 -msgid "Provide photo edit option to hide adult photos from default album view" -msgstr "Stellt eine Option zum Verstecken von Fotos mit nicht jugendfreien Inhalten in der Standard-Albumansicht bereit" - -#: ../../include/features.php:69 +#: ../../include/features.php:67 msgid "Network and Stream Filtering" msgstr "Netzwerk- und Stream-Filter" -#: ../../include/features.php:70 +#: ../../include/features.php:68 msgid "Search by Date" msgstr "Suche nach Datum" -#: ../../include/features.php:70 +#: ../../include/features.php:68 msgid "Ability to select posts by date ranges" msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/features.php:71 +#: ../../include/features.php:69 msgid "Collections Filter" msgstr "Filter für Sammlung" -#: ../../include/features.php:71 +#: ../../include/features.php:69 msgid "Enable widget to display Network posts only from selected collections" msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen" -#: ../../include/features.php:72 +#: ../../include/features.php:70 ../../include/widgets.php:273 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" + +#: ../../include/features.php:70 msgid "Save search terms for re-use" msgstr "Suchbegriffe zur Wiederverwendung abspeichern" -#: ../../include/features.php:73 +#: ../../include/features.php:71 msgid "Network Personal Tab" msgstr "Persönlicher Netzwerkreiter" -#: ../../include/features.php:73 +#: ../../include/features.php:71 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast" -#: ../../include/features.php:74 +#: ../../include/features.php:72 msgid "Network New Tab" msgstr "Netzwerkreiter Neu" -#: ../../include/features.php:74 +#: ../../include/features.php:72 msgid "Enable tab to display all new Network activity" msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" -#: ../../include/features.php:75 +#: ../../include/features.php:73 msgid "Affinity Tool" msgstr "Beziehungs-Tool" -#: ../../include/features.php:75 +#: ../../include/features.php:73 msgid "Filter stream activity by depth of relationships" msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" -#: ../../include/features.php:76 +#: ../../include/features.php:74 +msgid "Connection Filtering" +msgstr "Filter für Sammlungen" + +#: ../../include/features.php:74 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtert eingehende Beiträge anhand von Schlüsselwörtern." + +#: ../../include/features.php:75 msgid "Suggest Channels" msgstr "Kanäle vorschlagen" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Show channel suggestions" msgstr "Kanalvorschläge anzeigen" -#: ../../include/features.php:81 +#: ../../include/features.php:80 msgid "Post/Comment Tools" msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Tagging" msgstr "Verschlagworten" -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Ability to tag existing posts" msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Post Categories" msgstr "Beitrags-Kategorien" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Add categories to your posts" msgstr "Kategorien für Beiträge" -#: ../../include/features.php:84 +#: ../../include/features.php:83 ../../include/contact_widgets.php:57 +#: ../../include/widgets.php:303 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../include/features.php:83 msgid "Ability to file posts under folders" msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Dislike Posts" msgstr "Gefällt-mir-nicht Beiträge" -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Ability to dislike posts/comments" msgstr "„Gefällt mir nicht“ ermöglichen" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Star Posts" msgstr "Beiträge mit Sternchen versehen" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Ability to mark special posts with a star indicator" msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Tag Cloud" msgstr "Schlagwort-Wolke" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Provide a personal tag cloud on your channel page" msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen" -#: ../../include/auth.php:130 -msgid "Logged out." -msgstr "Ausgeloggt." +#: ../../include/comanche.php:34 ../../mod/admin.php:348 +msgid "Default" +msgstr "Standard" -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dieses Element löschen?" -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Login fehlgeschlagen." +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:673 +#: ../../mod/photos.php:1008 ../../mod/photos.php:1126 +msgid "Comment" +msgstr "Kommentar" + +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:390 +msgid "[+] show all" +msgstr "[+] Alle anzeigen" + +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] Weniger anzeigen" + +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] aufklappen" + +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] einklappen" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Kennwort zu kurz" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Kennwörter stimmen nicht überein" + +#: ../../include/js_strings.php:13 ../../mod/photos.php:41 +msgid "everybody" +msgstr "alle" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "geheime Passphrase" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Hinweis zur Passphrase" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alle schließen" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nichts Neues hier" + +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" + +#: ../../include/js_strings.php:20 ../../mod/connedit.php:667 +#: ../../mod/rate.php:156 +msgid "Rating" +msgstr "Bewertung" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Beschreibung (optional)" + +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:674 +#: ../../mod/fsuggest.php:108 ../../mod/mitem.php:231 +#: ../../mod/connedit.php:688 ../../mod/mood.php:135 ../../mod/pconfig.php:108 +#: ../../mod/filestorage.php:156 ../../mod/poke.php:171 ../../mod/chat.php:181 +#: ../../mod/chat.php:209 ../../mod/admin.php:411 ../../mod/admin.php:776 +#: ../../mod/admin.php:940 ../../mod/admin.php:1072 ../../mod/admin.php:1266 +#: ../../mod/admin.php:1351 ../../mod/appman.php:99 ../../mod/pdledit.php:58 +#: ../../mod/photos.php:598 ../../mod/photos.php:969 ../../mod/photos.php:1009 +#: ../../mod/photos.php:1127 ../../mod/rate.php:167 ../../mod/events.php:534 +#: ../../mod/events.php:710 ../../mod/mail.php:364 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/import.php:511 ../../mod/thing.php:313 +#: ../../mod/thing.php:359 ../../mod/invite.php:142 ../../mod/settings.php:583 +#: ../../mod/settings.php:695 ../../mod/settings.php:723 +#: ../../mod/settings.php:746 ../../mod/settings.php:831 +#: ../../mod/settings.php:1020 ../../mod/xchan.php:11 ../../mod/group.php:81 +#: ../../mod/connect.php:93 ../../mod/locs.php:108 ../../mod/setup.php:331 +#: ../../mod/setup.php:371 ../../mod/profiles.php:667 +#: ../../mod/import_items.php:122 ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Bestätigen" + +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Gib eine URL ein:" + +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?" + +#: ../../include/js_strings.php:26 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" + +#: ../../include/js_strings.php:27 +msgid "timeago.prefixFromNow" +msgstr " " + +#: ../../include/js_strings.php:28 +msgid "ago" +msgstr "her" + +#: ../../include/js_strings.php:29 +msgid "from now" +msgstr "von jetzt" + +#: ../../include/js_strings.php:30 +msgid "less than a minute" +msgstr "weniger als eine Minute" + +#: ../../include/js_strings.php:31 +msgid "about a minute" +msgstr "ungefähr eine Minute" + +#: ../../include/js_strings.php:32 +#, php-format +msgid "%d minutes" +msgstr "%d Minuten" + +#: ../../include/js_strings.php:33 +msgid "about an hour" +msgstr "ungefähr eine Stunde" + +#: ../../include/js_strings.php:34 +#, php-format +msgid "about %d hours" +msgstr "ungefähr %d Stunden" + +#: ../../include/js_strings.php:35 +msgid "a day" +msgstr "ein Tag" + +#: ../../include/js_strings.php:36 +#, php-format +msgid "%d days" +msgstr "%d Tage" + +#: ../../include/js_strings.php:37 +msgid "about a month" +msgstr "ungefähr ein Monat" + +#: ../../include/js_strings.php:38 +#, php-format +msgid "%d months" +msgstr "%d Monate" + +#: ../../include/js_strings.php:39 +msgid "about a year" +msgstr "ungefähr ein Jahr" + +#: ../../include/js_strings.php:40 +#, php-format +msgid "%d years" +msgstr "%d Jahre" + +#: ../../include/js_strings.php:41 +msgid " " +msgstr " " + +#: ../../include/js_strings.php:42 +msgid "timeago.numbers" +msgstr "timeago.numbers" + +#: ../../include/js_strings.php:44 ../../include/text.php:1144 +msgid "January" +msgstr "Januar" + +#: ../../include/js_strings.php:45 ../../include/text.php:1144 +msgid "February" +msgstr "Februar" + +#: ../../include/js_strings.php:46 ../../include/text.php:1144 +msgid "March" +msgstr "März" + +#: ../../include/js_strings.php:47 ../../include/text.php:1144 +msgid "April" +msgstr "April" + +#: ../../include/js_strings.php:48 +msgctxt "long" +msgid "May" +msgstr "Mai" + +#: ../../include/js_strings.php:49 ../../include/text.php:1144 +msgid "June" +msgstr "Juni" + +#: ../../include/js_strings.php:50 ../../include/text.php:1144 +msgid "July" +msgstr "Juli" + +#: ../../include/js_strings.php:51 ../../include/text.php:1144 +msgid "August" +msgstr "August" + +#: ../../include/js_strings.php:52 ../../include/text.php:1144 +msgid "September" +msgstr "September" + +#: ../../include/js_strings.php:53 ../../include/text.php:1144 +msgid "October" +msgstr "Oktober" + +#: ../../include/js_strings.php:54 ../../include/text.php:1144 +msgid "November" +msgstr "November" + +#: ../../include/js_strings.php:55 ../../include/text.php:1144 +msgid "December" +msgstr "Dezember" + +#: ../../include/js_strings.php:56 +msgid "Jan" +msgstr "Jan" + +#: ../../include/js_strings.php:57 +msgid "Feb" +msgstr "Feb" + +#: ../../include/js_strings.php:58 +msgid "Mar" +msgstr "Mär" + +#: ../../include/js_strings.php:59 +msgid "Apr" +msgstr "Apr" + +#: ../../include/js_strings.php:60 +msgctxt "short" +msgid "May" +msgstr "Mai" + +#: ../../include/js_strings.php:61 +msgid "Jun" +msgstr "Jun" + +#: ../../include/js_strings.php:62 +msgid "Jul" +msgstr "Jul" + +#: ../../include/js_strings.php:63 +msgid "Aug" +msgstr "Aug" + +#: ../../include/js_strings.php:64 +msgid "Sep" +msgstr "Sep" + +#: ../../include/js_strings.php:65 +msgid "Oct" +msgstr "Okt" + +#: ../../include/js_strings.php:66 +msgid "Nov" +msgstr "Nov" + +#: ../../include/js_strings.php:67 +msgid "Dec" +msgstr "Dez" + +#: ../../include/js_strings.php:68 ../../include/text.php:1140 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/js_strings.php:69 ../../include/text.php:1140 +msgid "Monday" +msgstr "Montag" + +#: ../../include/js_strings.php:70 ../../include/text.php:1140 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/js_strings.php:71 ../../include/text.php:1140 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/js_strings.php:72 ../../include/text.php:1140 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/js_strings.php:73 ../../include/text.php:1140 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/js_strings.php:74 ../../include/text.php:1140 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/js_strings.php:75 +msgid "Sun" +msgstr "So" + +#: ../../include/js_strings.php:76 +msgid "Mon" +msgstr "Mp" + +#: ../../include/js_strings.php:77 +msgid "Tue" +msgstr "Di" + +#: ../../include/js_strings.php:78 +msgid "Wed" +msgstr "Mi" + +#: ../../include/js_strings.php:79 +msgid "Thu" +msgstr "Do" + +#: ../../include/js_strings.php:80 +msgid "Fri" +msgstr "Fr" + +#: ../../include/js_strings.php:81 +msgid "Sat" +msgstr "Sa" + +#: ../../include/js_strings.php:82 +msgctxt "calendar" +msgid "today" +msgstr "heute" + +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "month" +msgstr "Monat" + +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "week" +msgstr "Woche" + +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "day" +msgstr "Tag" + +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "All day" +msgstr "Ganztägig" #: ../../include/contact_selectors.php:56 msgid "Frequently" @@ -1602,8 +1096,9 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 -#: ../../mod/admin.php:740 ../../boot.php:1554 +#: ../../include/contact_selectors.php:79 ../../mod/id.php:15 +#: ../../mod/id.php:16 ../../mod/admin.php:779 ../../mod/admin.php:788 +#: ../../boot.php:1499 msgid "Email" msgstr "E-Mail" @@ -1631,1255 +1126,1328 @@ msgstr "XMPP/IM" msgid "MySpace" msgstr "MySpace" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen." +#: ../../include/activities.php:42 +msgid " and " +msgstr "und" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standard-Sammlung für neue Kontakte" +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "öffentliches Profil" -#: ../../include/group.php:254 ../../mod/admin.php:740 -msgid "All Channels" -msgstr "Alle Kanäle" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "Bearbeiten" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Sammlungen" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Sammlung bearbeiten" - -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Neue Sammlung erzeugen" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanäle, die nicht in einer Sammlung sind" - -#: ../../include/identity.php:31 ../../mod/item.php:1078 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" - -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Name ist zu lang" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Keine Account-Kennung" - -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." - -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." - -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." - -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" - -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standard-Profil" - -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." - -#: ../../include/identity.php:691 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/editblock.php:29 -#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/hcard.php:8 -#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:53 ../../mod/webpages.php:29 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "Erwünschte Profil ist nicht verfügbar." - -#: ../../include/identity.php:854 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Profilfoto ändern" - -#: ../../include/identity.php:861 -msgid "Profiles" -msgstr "Profile" - -#: ../../include/identity.php:861 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/bearbeiten" - -#: ../../include/identity.php:862 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" - -#: ../../include/identity.php:865 ../../include/nav.php:95 -msgid "Edit Profile" -msgstr "Profile bearbeiten" - -#: ../../include/identity.php:878 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Profilfoto:" - -#: ../../include/identity.php:881 -msgid "visible to everybody" -msgstr "sichtbar für jeden" - -#: ../../include/identity.php:882 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: ../../include/identity.php:894 ../../include/bb2diaspora.php:450 -#: ../../include/event.php:40 ../../mod/events.php:645 -#: ../../mod/directory.php:204 -msgid "Location:" -msgstr "Ort:" - -#: ../../include/identity.php:898 ../../include/identity.php:1139 -msgid "Gender:" -msgstr "Geschlecht:" - -#: ../../include/identity.php:899 ../../include/identity.php:1183 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:900 ../../include/identity.php:1194 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../include/identity.php:901 -msgid "Online Now" -msgstr "gerade online" - -#: ../../include/identity.php:983 ../../include/identity.php:1063 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "l, d. F, G:i \\U\\h\\r" - -#: ../../include/identity.php:984 ../../include/identity.php:1064 -msgid "F d" -msgstr "d. F" - -#: ../../include/identity.php:1029 ../../include/identity.php:1104 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[Heute]" - -#: ../../include/identity.php:1041 -msgid "Birthday Reminders" -msgstr "Geburtstags Erinnerungen" - -#: ../../include/identity.php:1042 -msgid "Birthdays this week:" -msgstr "Geburtstage in dieser Woche:" - -#: ../../include/identity.php:1097 -msgid "[No description]" -msgstr "[Keine Beschreibung]" - -#: ../../include/identity.php:1115 -msgid "Event Reminders" -msgstr "Termin-Erinnerungen" - -#: ../../include/identity.php:1116 -msgid "Events this week:" -msgstr "Termine in dieser Woche:" - -#: ../../include/identity.php:1129 ../../include/identity.php:1246 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" - -#: ../../include/identity.php:1137 ../../mod/settings.php:1044 -msgid "Full Name:" -msgstr "Voller Name:" - -#: ../../include/identity.php:1144 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" - -#: ../../include/identity.php:1168 -msgid "j F, Y" -msgstr "j. F Y" - -#: ../../include/identity.php:1169 -msgid "j F" -msgstr "j. F" - -#: ../../include/identity.php:1176 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/identity.php:1180 -msgid "Age:" -msgstr "Alter:" - -#: ../../include/identity.php:1189 +#: ../../include/activities.php:59 #, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s auf “%3$s” geändert" -#: ../../include/identity.php:1192 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" -#: ../../include/identity.php:1196 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Heimatstadt:" +#: ../../include/activities.php:63 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." -#: ../../include/identity.php:1198 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../include/Contact.php:101 ../../include/conversation.php:947 +#: ../../include/identity.php:941 ../../include/widgets.php:136 +#: ../../include/widgets.php:174 ../../mod/directory.php:316 +#: ../../mod/match.php:64 ../../mod/suggest.php:52 +msgid "Connect" +msgstr "Verbinden" -#: ../../include/identity.php:1200 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/Contact.php:118 +msgid "New window" +msgstr "Neues Fenster" -#: ../../include/identity.php:1202 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/Contact.php:119 +msgid "Open the selected location in a different window or browser tab" +msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" -#: ../../include/identity.php:1204 -msgid "About:" -msgstr "Über:" +#: ../../include/Contact.php:237 +#, php-format +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" -#: ../../include/identity.php:1206 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../include/dba/dba_driver.php:141 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../include/identity.php:1208 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../include/conversation.php:120 ../../include/text.php:1832 +#: ../../mod/like.php:361 ../../mod/tagger.php:43 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "photo" +msgstr "Foto" -#: ../../include/identity.php:1210 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../include/conversation.php:123 ../../include/text.php:1835 +#: ../../include/event.php:896 ../../mod/like.php:363 ../../mod/tagger.php:47 +#: ../../mod/events.php:245 +msgid "event" +msgstr "Termin" -#: ../../include/identity.php:1212 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "Kanal" -#: ../../include/identity.php:1214 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../include/conversation.php:148 ../../include/text.php:1838 +#: ../../mod/like.php:361 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "status" +msgstr "Status" -#: ../../include/identity.php:1216 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../include/conversation.php:150 ../../include/text.php:1840 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "Kommentar" -#: ../../include/identity.php:1218 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../include/conversation.php:164 ../../mod/like.php:410 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s" -#: ../../include/identity.php:1220 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../include/conversation.php:167 ../../mod/like.php:412 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s nicht" -#: ../../include/identity.php:1222 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ist jetzt mit %2$s verbunden" -#: ../../include/identity.php:1224 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s an" -#: ../../include/identity.php:1226 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../include/conversation.php:243 ../../include/text.php:933 +msgid "poked" +msgstr "stupste" -#: ../../include/identity.php:1228 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" -#: ../../include/identity.php:1248 -msgid "Like this thing" +#: ../../include/conversation.php:574 ../../mod/photos.php:1024 +msgctxt "title" +msgid "Likes" msgstr "Gefällt mir" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[no subject]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." - -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." - -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" - -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "Lokales Konto nicht gefunden." - -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." - -#: ../../include/comanche.php:35 ../../mod/admin.php:357 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" - -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" - -#: ../../include/datetime.php:212 ../../mod/events.php:633 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Benötigt" - -#: ../../include/datetime.php:231 -msgid "never" -msgstr "Nie" - -#: ../../include/datetime.php:237 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" - -#: ../../include/datetime.php:240 -msgid "year" -msgstr "Jahr" - -#: ../../include/datetime.php:240 -msgid "years" -msgstr "Jahre" - -#: ../../include/datetime.php:241 -msgid "month" -msgstr "Monat" - -#: ../../include/datetime.php:241 -msgid "months" -msgstr "Monate" - -#: ../../include/datetime.php:242 -msgid "week" -msgstr "Woche" - -#: ../../include/datetime.php:242 -msgid "weeks" -msgstr "Wochen" - -#: ../../include/datetime.php:243 -msgid "day" -msgstr "Tag" - -#: ../../include/datetime.php:243 -msgid "days" -msgstr "Tage" - -#: ../../include/datetime.php:244 -msgid "hour" -msgstr "Stunde" - -#: ../../include/datetime.php:244 -msgid "hours" -msgstr "Stunden" - -#: ../../include/datetime.php:245 -msgid "minute" -msgstr "Minute" - -#: ../../include/datetime.php:245 -msgid "minutes" -msgstr "Minuten" - -#: ../../include/datetime.php:246 -msgid "second" -msgstr "Sekunde" - -#: ../../include/datetime.php:246 -msgid "seconds" -msgstr "Sekunden" - -#: ../../include/datetime.php:255 -#, php-format -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" - -#: ../../include/datetime.php:463 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" - -#: ../../include/datetime.php:464 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" - -#: ../../include/bb2diaspora.php:349 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" - -#: ../../include/bb2diaspora.php:430 -msgid "Redmatrix event notification:" -msgstr "RedMatrix Termin-Benachrichtigung:" - -#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 -msgid "Starts:" -msgstr "Beginnt:" - -#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Endet:" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Der Chatraum hat keinen Namen" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Name des Chatraums bereits vergeben" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ungültiger Raumbezeichner." - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatraum konnte nicht gefunden werden." - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Der Raum ist voll" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 -msgid "Logout" -msgstr "Abmelden" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: ../../include/nav.php:91 ../../include/conversation.php:937 -#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 -msgid "View Profile" -msgstr "Profil ansehen" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:97 ../../include/apps.php:139 -#: ../../include/conversation.php:1586 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Deine Bilder" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Deine Dateien" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Deine Chaträume" - -#: ../../include/nav.php:109 ../../include/apps.php:129 -#: ../../include/conversation.php:1621 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" - -#: ../../include/nav.php:113 ../../include/apps.php:136 -#: ../../include/conversation.php:1632 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webseiten" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Deine Webseiten" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 -msgid "Login" -msgstr "Anmelden" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 -msgid "Register" -msgstr "Registrieren" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Erzeuge ein Konto" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 -msgid "Help" -msgstr "Hilfe" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Durchsuche Seiten-Inhalt" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:334 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" - -#: ../../include/nav.php:182 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/nav.php:182 -msgid "Your matrix" -msgstr "Deine Matrix" - -#: ../../include/nav.php:183 -msgid "Mark all matrix notifications seen" -msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:185 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:185 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:186 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:189 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Verbindungen" - -#: ../../include/nav.php:192 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:192 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:193 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:194 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../include/nav.php:196 ../../include/apps.php:143 -msgid "Mail" -msgstr "Mail" - -#: ../../include/nav.php:196 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:197 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" - -#: ../../include/nav.php:198 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:199 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:200 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/nav.php:204 ../../include/apps.php:140 -#: ../../mod/events.php:472 -msgid "Events" -msgstr "Termine" - -#: ../../include/nav.php:204 -msgid "Event Calendar" -msgstr "Terminkalender" - -#: ../../include/nav.php:205 -msgid "See all events" -msgstr "Alle Termine ansehen" - -#: ../../include/nav.php:206 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" - -#: ../../include/nav.php:208 ../../include/apps.php:132 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" - -#: ../../include/nav.php:218 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:249 ../../include/conversation.php:842 -msgid "Loading..." -msgstr "Lädt ..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, content" -msgstr "@Name, #Schlagwort, Text" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Bitte warten..." - -#: ../../include/security.php:357 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:652 -msgid "Private Message" -msgstr "Private Nachricht" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:644 +#: ../../include/conversation.php:574 ../../mod/photos.php:1024 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" + +#: ../../include/conversation.php:661 ../../include/ItemObject.php:126 msgid "Select" msgstr "Auswählen" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In Ordner speichern" +#: ../../include/conversation.php:669 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Private Nachricht" -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Ich werde teilnehmen" +#: ../../include/conversation.php:676 ../../include/ItemObject.php:227 +msgid "Message signature validated" +msgstr "Signatur überprüft" -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Ich werde nicht teilnehmen" +#: ../../include/conversation.php:677 ../../include/ItemObject.php:228 +msgid "Message signature incorrect" +msgstr "Signatur nicht korrekt" -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Ich werde vielleicht teilnehmen" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Ich stimme zu" +#: ../../include/conversation.php:709 +msgid "Categories:" +msgstr "Kategorien:" -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Ich lehne ab" +#: ../../include/conversation.php:710 +msgid "Filed under:" +msgstr "Gespeichert unter:" -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Ich enthalte mich" +#: ../../include/conversation.php:718 ../../include/ItemObject.php:314 +#, php-format +msgid "from %s" +msgstr "via %s" -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1667 ../../mod/photos.php:997 -#: ../../mod/photos.php:1009 +#: ../../include/conversation.php:721 ../../include/ItemObject.php:317 +#, php-format +msgid "last edited: %s" +msgstr "zuletzt bearbeitet: %s" + +#: ../../include/conversation.php:722 ../../include/ItemObject.php:318 +#, php-format +msgid "Expires: %s" +msgstr "Verfällt: %s" + +#: ../../include/conversation.php:737 +msgid "View in context" +msgstr "Im Zusammenhang anschauen" + +#: ../../include/conversation.php:739 ../../include/conversation.php:1212 +#: ../../include/ItemObject.php:366 ../../mod/editpost.php:130 +#: ../../mod/editblock.php:150 ../../mod/photos.php:990 ../../mod/mail.php:237 +#: ../../mod/mail.php:365 ../../mod/editlayout.php:148 +#: ../../mod/editwebpage.php:190 +msgid "Please wait" +msgstr "Bitte warten" + +#: ../../include/conversation.php:848 +msgid "remove" +msgstr "lösche" + +#: ../../include/conversation.php:852 ../../include/nav.php:241 +msgid "Loading..." +msgstr "Lädt ..." + +#: ../../include/conversation.php:853 +msgid "Delete Selected Items" +msgstr "Lösche die ausgewählten Elemente" + +#: ../../include/conversation.php:941 +msgid "View Source" +msgstr "Quelle anzeigen" + +#: ../../include/conversation.php:942 +msgid "Follow Thread" +msgstr "Unterhaltung folgen" + +#: ../../include/conversation.php:943 +msgid "View Status" +msgstr "Status ansehen" + +#: ../../include/conversation.php:944 ../../include/nav.php:86 +#: ../../mod/connedit.php:494 +msgid "View Profile" +msgstr "Profil ansehen" + +#: ../../include/conversation.php:945 +msgid "View Photos" +msgstr "Fotos ansehen" + +#: ../../include/conversation.php:946 +msgid "Activity/Posts" +msgstr "Aktivitäten/Beiträge" + +#: ../../include/conversation.php:948 +msgid "Edit Connection" +msgstr "Verbindung bearbeiten" + +#: ../../include/conversation.php:949 +msgid "Send PM" +msgstr "Sende PN" + +#: ../../include/conversation.php:950 ../../include/apps.php:145 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../include/conversation.php:1064 +#, php-format +msgid "%s likes this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1064 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gefällt das nicht." + +#: ../../include/conversation.php:1068 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d Person gefällt das." +msgstr[1] "%2$d Leuten gefällt das." + +#: ../../include/conversation.php:1070 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d Person gefällt das nicht." +msgstr[1] "%2$d Leuten gefällt das nicht." + +#: ../../include/conversation.php:1076 +msgid "and" +msgstr "und" + +#: ../../include/conversation.php:1079 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] ", und %d andere" + +#: ../../include/conversation.php:1080 +#, php-format +msgid "%s like this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1080 +#, php-format +msgid "%s don't like this." +msgstr "%s gefällt das nicht." + +#: ../../include/conversation.php:1143 +msgid "Visible to everybody" +msgstr "Sichtbar für jeden" + +#: ../../include/conversation.php:1144 ../../mod/mail.php:170 +#: ../../mod/mail.php:299 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" + +#: ../../include/conversation.php:1145 +msgid "Please enter a video link/URL:" +msgstr "Gib einen Video-Link/URL ein:" + +#: ../../include/conversation.php:1146 +msgid "Please enter an audio link/URL:" +msgstr "Gib einen Audio-Link/URL ein:" + +#: ../../include/conversation.php:1147 +msgid "Tag term:" +msgstr "Schlagwort:" + +#: ../../include/conversation.php:1148 ../../mod/filer.php:48 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" + +#: ../../include/conversation.php:1149 +msgid "Where are you right now?" +msgstr "Wo bist Du jetzt grade?" + +#: ../../include/conversation.php:1150 ../../mod/editpost.php:54 +#: ../../mod/mail.php:171 ../../mod/mail.php:300 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verfällt YYYY-MM-DD HH;MM" + +#: ../../include/conversation.php:1158 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:683 ../../mod/editpost.php:150 +#: ../../mod/editblock.php:171 ../../mod/photos.php:1010 +#: ../../mod/events.php:707 ../../mod/webpages.php:188 +#: ../../mod/editwebpage.php:212 +msgid "Preview" +msgstr "Vorschau" + +#: ../../include/conversation.php:1177 ../../mod/layouts.php:184 +#: ../../mod/photos.php:989 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 +msgid "Share" +msgstr "Teilen" + +#: ../../include/conversation.php:1179 +msgid "Page link name" +msgstr "Link zur Seite" + +#: ../../include/conversation.php:1182 +msgid "Post as" +msgstr "Veröffentlichen als" + +#: ../../include/conversation.php:1184 ../../include/ItemObject.php:675 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:135 ../../mod/editwebpage.php:177 +msgid "Bold" +msgstr "Fett" + +#: ../../include/conversation.php:1185 ../../include/ItemObject.php:676 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:137 +#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 +msgid "Italic" +msgstr "Kursiv" + +#: ../../include/conversation.php:1186 ../../include/ItemObject.php:677 +#: ../../mod/editpost.php:116 ../../mod/editblock.php:138 +#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 +msgid "Underline" +msgstr "Unterstrichen" + +#: ../../include/conversation.php:1187 ../../include/ItemObject.php:678 +#: ../../mod/editpost.php:117 ../../mod/editblock.php:139 +#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 +msgid "Quote" +msgstr "Zitat" + +#: ../../include/conversation.php:1188 ../../include/ItemObject.php:679 +#: ../../mod/editpost.php:118 ../../mod/editblock.php:140 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 +msgid "Code" +msgstr "Code" + +#: ../../include/conversation.php:1189 ../../mod/editpost.php:119 +#: ../../mod/editblock.php:142 ../../mod/mail.php:234 ../../mod/mail.php:361 +#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:182 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: ../../include/conversation.php:1190 +msgid "upload photo" +msgstr "Foto hochladen" + +#: ../../include/conversation.php:1191 ../../mod/editpost.php:120 +#: ../../mod/editblock.php:143 ../../mod/mail.php:235 ../../mod/mail.php:362 +#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:183 +msgid "Attach file" +msgstr "Datei anhängen" + +#: ../../include/conversation.php:1192 +msgid "attach file" +msgstr "Datei anfügen" + +#: ../../include/conversation.php:1193 ../../mod/editpost.php:121 +#: ../../mod/editblock.php:144 ../../mod/mail.php:236 ../../mod/mail.php:363 +#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:184 +msgid "Insert web link" +msgstr "Link einfügen" + +#: ../../include/conversation.php:1194 +msgid "web link" +msgstr "Web-Link" + +#: ../../include/conversation.php:1195 +msgid "Insert video link" +msgstr "Video-Link einfügen" + +#: ../../include/conversation.php:1196 +msgid "video link" +msgstr "Video-Link" + +#: ../../include/conversation.php:1197 +msgid "Insert audio link" +msgstr "Audio-Link einfügen" + +#: ../../include/conversation.php:1198 +msgid "audio link" +msgstr "Audio-Link" + +#: ../../include/conversation.php:1199 ../../mod/editpost.php:125 +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:188 +msgid "Set your location" +msgstr "Standort" + +#: ../../include/conversation.php:1200 +msgid "set location" +msgstr "Standort" + +#: ../../include/conversation.php:1201 ../../mod/editpost.php:127 +msgid "Toggle voting" +msgstr "Umfragewerkzeug aktivieren" + +#: ../../include/conversation.php:1204 ../../mod/editpost.php:126 +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:189 +msgid "Clear browser location" +msgstr "Browser-Standort löschen" + +#: ../../include/conversation.php:1205 +msgid "clear location" +msgstr "Standort löschen" + +#: ../../include/conversation.php:1207 ../../mod/editpost.php:142 +#: ../../mod/editblock.php:162 ../../mod/editwebpage.php:205 +msgid "Title (optional)" +msgstr "Titel (optional)" + +#: ../../include/conversation.php:1211 ../../mod/editpost.php:144 +#: ../../mod/editblock.php:165 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:207 +msgid "Categories (optional, comma-separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" + +#: ../../include/conversation.php:1213 ../../mod/editpost.php:131 +#: ../../mod/editblock.php:151 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:191 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" + +#: ../../include/conversation.php:1214 +msgid "permissions" +msgstr "Berechtigungen" + +#: ../../include/conversation.php:1222 ../../mod/editpost.php:139 +#: ../../mod/editblock.php:159 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:200 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: ../../include/conversation.php:1224 ../../mod/editpost.php:145 +#: ../../mod/editblock.php:166 ../../mod/editlayout.php:164 +#: ../../mod/editwebpage.php:208 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Beispiel: bob@example.com, mary@example.com" + +#: ../../include/conversation.php:1237 ../../mod/editpost.php:156 +#: ../../mod/editblock.php:176 ../../mod/mail.php:241 ../../mod/mail.php:368 +#: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:217 +msgid "Set expiration date" +msgstr "Verfallsdatum" + +#: ../../include/conversation.php:1239 ../../include/ItemObject.php:686 +#: ../../mod/editpost.php:158 ../../mod/mail.php:243 ../../mod/mail.php:370 +msgid "Encrypt text" +msgstr "Text verschlüsseln" + +#: ../../include/conversation.php:1241 ../../mod/editpost.php:160 +#: ../../mod/events.php:691 +msgid "OK" +msgstr "Ok" + +#: ../../include/conversation.php:1242 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:161 +#: ../../mod/events.php:690 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +#: ../../mod/settings.php:584 ../../mod/settings.php:610 +msgid "Cancel" +msgstr "Abbrechen" + +#: ../../include/conversation.php:1485 +msgid "Discover" +msgstr "Entdecken" + +#: ../../include/conversation.php:1488 +msgid "Imported public streams" +msgstr "Importierte öffentliche Beiträge" + +#: ../../include/conversation.php:1493 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: ../../include/conversation.php:1496 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" + +#: ../../include/conversation.php:1500 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: ../../include/conversation.php:1503 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" + +#: ../../include/conversation.php:1508 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Persönlich" + +#: ../../include/conversation.php:1511 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" + +#: ../../include/conversation.php:1517 ../../mod/menu.php:112 +#: ../../mod/connections.php:72 ../../mod/connections.php:82 +msgid "New" +msgstr "Neu" + +#: ../../include/conversation.php:1520 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" + +#: ../../include/conversation.php:1526 +msgid "Starred" +msgstr "Markiert" + +#: ../../include/conversation.php:1529 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" + +#: ../../include/conversation.php:1536 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1539 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" + +#: ../../include/conversation.php:1583 ../../mod/admin.php:947 +msgid "Channel" +msgstr "Kanal" + +#: ../../include/conversation.php:1586 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: ../../include/conversation.php:1595 +msgid "About" +msgstr "Über" + +#: ../../include/conversation.php:1598 +msgid "Profile Details" +msgstr "Profil-Details" + +#: ../../include/conversation.php:1604 ../../include/apps.php:139 +#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" + +#: ../../include/conversation.php:1607 ../../include/photos.php:422 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../include/conversation.php:1614 +msgid "Files and Storage" +msgstr "Dateien und Speicher" + +#: ../../include/conversation.php:1624 ../../include/conversation.php:1627 +msgid "Chatrooms" +msgstr "Chaträume" + +#: ../../include/conversation.php:1637 ../../include/apps.php:129 +#: ../../include/nav.php:103 +msgid "Bookmarks" +msgstr "Lesezeichen" + +#: ../../include/conversation.php:1640 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" + +#: ../../include/conversation.php:1647 ../../include/apps.php:136 +#: ../../include/nav.php:107 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Webseiten" + +#: ../../include/conversation.php:1650 +msgid "Manage Webpages" +msgstr "Webseiten verwalten" + +#: ../../include/conversation.php:1679 ../../include/ItemObject.php:175 +#: ../../include/ItemObject.php:187 ../../mod/photos.php:1043 +#: ../../mod/photos.php:1055 msgid "View all" msgstr "Alles anzeigen" -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1695 -#: ../../mod/photos.php:1006 +#: ../../include/conversation.php:1703 ../../include/taxonomy.php:403 +#: ../../include/identity.php:1252 ../../include/ItemObject.php:179 +#: ../../mod/photos.php:1047 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" + +#: ../../include/conversation.php:1706 ../../include/ItemObject.php:184 +#: ../../mod/photos.php:1052 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "Gefällt nicht" msgstr[1] "Gefällt nicht" -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Stern hinzufügen" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Stern entfernen" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Markierungsstatus (Stern) umschalten" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "markiert" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:659 -msgid "Message signature validated" -msgstr "Signatur überprüft" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:660 -msgid "Message signature incorrect" -msgstr "Signatur nicht korrekt" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Tag hinzufügen" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:941 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:942 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Teilen" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "Teilen" - -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" - -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Schaue Dir %ss Profil an – %s" - -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "an" - -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: ../../include/ItemObject.php:312 ../../include/conversation.php:704 -#, php-format -msgid " from %s" -msgstr "von %s" - -#: ../../include/ItemObject.php:315 ../../include/conversation.php:707 -#, php-format -msgid "last edited: %s" -msgstr "zuletzt bearbeitet: %s" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:708 -#, php-format -msgid "Expires: %s" -msgstr "Verfällt: %s" - -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Favoriten speichern" - -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Zum Kalender hinzufügen" - -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Alle als gelesen markieren" - -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1125 +#: ../../include/conversation.php:1709 msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Zusage" +msgstr[1] "Zusagen" -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1126 +#: ../../include/conversation.php:1712 msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1131 -msgid "Close" -msgstr "Schließen" - -#: ../../include/ItemObject.php:364 ../../include/conversation.php:725 -#: ../../include/conversation.php:1198 ../../mod/editblock.php:152 -#: ../../mod/editpost.php:125 ../../mod/editlayout.php:148 -#: ../../mod/editwebpage.php:183 ../../mod/mail.php:241 ../../mod/mail.php:356 -#: ../../mod/photos.php:944 -msgid "Please wait" -msgstr "Bitte warten" - -#: ../../include/ItemObject.php:665 ../../mod/photos.php:960 -#: ../../mod/photos.php:1078 -msgid "This is you" -msgstr "Das bist Du" - -#: ../../include/ItemObject.php:669 -msgid "Bold" -msgstr "Fett" - -#: ../../include/ItemObject.php:670 -msgid "Italic" -msgstr "Kursiv" - -#: ../../include/ItemObject.php:671 -msgid "Underline" -msgstr "Unterstrichen" - -#: ../../include/ItemObject.php:672 -msgid "Quote" -msgstr "Zitat" - -#: ../../include/ItemObject.php:673 -msgid "Code" -msgstr "Code" - -#: ../../include/ItemObject.php:674 -msgid "Image" -msgstr "Bild" - -#: ../../include/ItemObject.php:675 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Video" - -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1224 -#: ../../mod/editpost.php:152 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Text verschlüsseln" - -#: ../../include/activities.php:39 -msgid " and " -msgstr "und" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "öffentliches Profil" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." - -#: ../../include/dir_fns.php:96 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" - -#: ../../include/dir_fns.php:97 -msgid "Alphabetic" -msgstr "alphabetisch" - -#: ../../include/dir_fns.php:98 -msgid "Reverse Alphabetic" -msgstr "Entgegengesetzt alphabetisch" - -#: ../../include/dir_fns.php:99 -msgid "Newest to Oldest" -msgstr "Neueste zuerst" - -#: ../../include/dir_fns.php:100 -msgid "Oldest to Newest" -msgstr "Älteste zuerst" - -#: ../../include/dir_fns.php:101 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" - -#: ../../include/dir_fns.php:103 -msgid "Sort" -msgstr "Sortieren" - -#: ../../include/dir_fns.php:119 -msgid "Enable Safe Search" -msgstr "Sichere Suche einschalten" - -#: ../../include/dir_fns.php:121 -msgid "Disable Safe Search" -msgstr "Sichere Suche ausschalten" - -#: ../../include/dir_fns.php:123 -msgid "Safe Mode" -msgstr "Sicherer Modus" - -#: ../../include/items.php:382 ../../mod/subthread.php:49 -#: ../../mod/group.php:68 ../../mod/profperm.php:23 ../../mod/like.php:270 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "Keine Berechtigung" - -#: ../../include/items.php:979 ../../include/items.php:1024 -msgid "(Unknown)" -msgstr "(Unbekannt)" - -#: ../../include/items.php:1181 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." - -#: ../../include/items.php:1183 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." - -#: ../../include/items.php:1185 -msgid "Visible to anybody in this network." -msgstr "Für jedes Mitglied der RedMatrix sichtbar." - -#: ../../include/items.php:1187 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." - -#: ../../include/items.php:1189 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." - -#: ../../include/items.php:1191 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." - -#: ../../include/items.php:1193 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." - -#: ../../include/items.php:1195 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." - -#: ../../include/items.php:4002 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:168 ../../mod/admin.php:901 -#: ../../mod/admin.php:1104 -msgid "Item not found." -msgstr "Element nicht gefunden." - -#: ../../include/items.php:4455 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Sammlung nicht gefunden" - -#: ../../include/items.php:4470 -msgid "Collection is empty." -msgstr "Sammlung ist leer." - -#: ../../include/items.php:4477 -#, php-format -msgid "Collection: %s" -msgstr "Sammlung: %s" - -#: ../../include/items.php:4488 -#, php-format -msgid "Connection: %s" -msgstr "Verbindung: %s" - -#: ../../include/items.php:4491 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." - -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Neues Fenster" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" - -#: ../../include/Contact.php:215 ../../mod/admin.php:651 -#, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" - -#: ../../include/network.php:613 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" - -#: ../../include/diaspora.php:1938 ../../include/conversation.php:164 -#: ../../mod/like.php:383 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s" - -#: ../../include/bbcode.php:115 ../../include/bbcode.php:694 -#: ../../include/bbcode.php:697 ../../include/bbcode.php:702 -#: ../../include/bbcode.php:705 ../../include/bbcode.php:708 -#: ../../include/bbcode.php:711 ../../include/bbcode.php:716 -#: ../../include/bbcode.php:719 ../../include/bbcode.php:724 -#: ../../include/bbcode.php:727 ../../include/bbcode.php:730 -#: ../../include/bbcode.php:733 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: ../../include/bbcode.php:150 ../../include/bbcode.php:744 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/bbcode.php:168 -msgid "Install design element: " -msgstr "Design-Element installieren:" - -#: ../../include/bbcode.php:174 -msgid "QR code" -msgstr "QR-Code" - -#: ../../include/bbcode.php:223 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schrieb den folgenden %2$s %3$s" - -#: ../../include/bbcode.php:225 -msgid "post" -msgstr "Beitrag" - -#: ../../include/bbcode.php:447 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" - -#: ../../include/bbcode.php:662 -msgid "$1 spoiler" -msgstr "$1 Spoiler" - -#: ../../include/bbcode.php:682 -msgid "$1 wrote:" -msgstr "$1 schrieb:" - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:420 -msgid "Advanced" -msgstr "Fortgeschritten" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Finde Kanäle" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiele: Robert Morgenstein, Angeln" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:330 ../../mod/directory.php:335 -msgid "Find" -msgstr "Finde" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:334 -msgid "Channel Suggestions" -msgstr "Kanal-Vorschläge" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Zufallsprofil" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Lade Freunde ein" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeinsame Verbindung" -msgstr[1] "%d gemeinsame Verbindungen" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "mehr zeigen" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Anzeigen" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Nicht anzeigen" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:652 -#: ../../mod/chat.php:209 ../../mod/filestorage.php:146 -#: ../../mod/photos.php:559 ../../mod/photos.php:916 -msgid "Permissions" -msgstr "Berechtigungen" - -#: ../../include/api.php:1081 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Absage" +msgstr[1] "Absagen" + +#: ../../include/conversation.php:1715 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] " Unentschlossen" +msgstr[1] "Unentschlossene" + +#: ../../include/conversation.php:1718 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Zustimmung" +msgstr[1] "Zustimmungen" + +#: ../../include/conversation.php:1721 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Ablehnung" +msgstr[1] "Ablehnungen" + +#: ../../include/conversation.php:1724 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Enthaltung" +msgstr[1] "Enthaltungen" + +#: ../../include/api.php:1290 msgid "Public Timeline" msgstr "Öffentliche Zeitleiste" -#: ../../include/zot.php:673 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" - -#: ../../include/zot.php:689 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" - -#: ../../include/zot.php:1961 +#: ../../include/photos.php:109 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" + +#: ../../include/photos.php:116 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: ../../include/photos.php:143 ../../mod/profile_photo.php:222 +msgid "Unable to process image" +msgstr "Kann Bild nicht verarbeiten" + +#: ../../include/photos.php:219 +msgid "Photo storage failed." +msgstr "Foto speichern schlug fehl" + +#: ../../include/photos.php:426 +msgid "Upload New Photos" +msgstr "Lade neue Fotos hoch" + +#: ../../include/enotify.php:57 ../../include/network.php:1613 +msgid "$Projectname Notification" +msgstr "$Projectname-Benachrichtigung" + +#: ../../include/enotify.php:58 ../../include/network.php:1614 +msgid "$projectname" +msgstr "$projectname" + +#: ../../include/enotify.php:60 ../../include/network.php:1616 +msgid "Thank You," +msgstr "Danke." + +#: ../../include/enotify.php:62 ../../include/network.php:1618 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" + +#: ../../include/enotify.php:96 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:100 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" + +#: ../../include/enotify.php:102 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." + +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s hat Dir %2$s geschickt." + +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "eine private Nachricht" + +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." + +#: ../../include/enotify.php:158 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" + +#: ../../include/enotify.php:166 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" + +#: ../../include/enotify.php:175 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" + +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." + +#: ../../include/enotify.php:190 ../../include/enotify.php:205 +#: ../../include/enotify.php:231 ../../include/enotify.php:249 +#: ../../include/enotify.php:263 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." + +#: ../../include/enotify.php:196 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" + +#: ../../include/enotify.php:198 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" + +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" + +#: ../../include/enotify.php:224 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" + +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" + +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." + +#: ../../include/enotify.php:238 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" + +#: ../../include/enotify.php:239 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" + +#: ../../include/enotify.php:240 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]." + +#: ../../include/enotify.php:256 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" + +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" + +#: ../../include/enotify.php:270 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Benachrichtigung] Vorstellung erhalten" + +#: ../../include/enotify.php:271 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" + +#: ../../include/enotify.php:272 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." + +#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Du kannst Dir das Profil unter %s ansehen" + +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." + +#: ../../include/enotify.php:285 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" + +#: ../../include/enotify.php:286 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" + +#: ../../include/enotify.php:287 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." + +#: ../../include/enotify.php:293 +msgid "Name:" +msgstr "Name:" + +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." + +#: ../../include/enotify.php:508 +msgid "[Red:Notify]" +msgstr "[Red:Benachrichtigung]" + +#: ../../include/network.php:635 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" + +#: ../../include/network.php:1660 ../../include/account.php:314 +#: ../../include/account.php:341 ../../include/account.php:401 +msgid "Administrator" +msgstr "Administrator" + +#: ../../include/network.php:1674 +msgid "No Subject" +msgstr "Kein Betreff" + +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" + +#: ../../include/text.php:391 +msgid "prev" +msgstr "vorherige" + +#: ../../include/text.php:393 +msgid "first" +msgstr "erste" + +#: ../../include/text.php:422 +msgid "last" +msgstr "letzte" + +#: ../../include/text.php:425 +msgid "next" +msgstr "nächste" + +#: ../../include/text.php:435 +msgid "older" +msgstr "älter" + +#: ../../include/text.php:437 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:775 +msgid "No connections" +msgstr "Keine Verbindungen" + +#: ../../include/text.php:787 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d Verbindung" +msgstr[1] "%d Verbindungen" + +#: ../../include/text.php:800 ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "Verbindungen anzeigen" + +#: ../../include/text.php:857 ../../include/text.php:869 +#: ../../include/apps.php:147 ../../include/nav.php:159 +#: ../../mod/search.php:38 +msgid "Search" +msgstr "Suche" + +#: ../../include/text.php:858 ../../include/text.php:870 +#: ../../include/widgets.php:191 ../../mod/filer.php:49 +#: ../../mod/admin.php:1411 ../../mod/admin.php:1431 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 +msgid "Save" +msgstr "Speichern" + +#: ../../include/text.php:933 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:934 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:934 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:935 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:935 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:936 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:936 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:937 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:937 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:938 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:938 +msgid "rebuffed" +msgstr "zurückgewiesen" + +#: ../../include/text.php:948 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:949 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:950 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:951 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:952 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:953 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:954 +msgid "stupified" +msgstr "verblüfft" + +#: ../../include/text.php:955 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:956 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:957 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:958 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:959 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:960 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:961 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:962 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:963 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:964 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:965 +msgid "depressed" +msgstr "deprimiert" + +#: ../../include/text.php:966 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:967 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:968 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1144 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1247 +msgid "unknown.???" +msgstr "unbekannt.???" + +#: ../../include/text.php:1248 +msgid "bytes" +msgstr "Bytes" + +#: ../../include/text.php:1284 +msgid "remove category" +msgstr "Kategorie entfernen" + +#: ../../include/text.php:1359 +msgid "remove from file" +msgstr "aus der Datei entfernen" + +#: ../../include/text.php:1443 ../../include/text.php:1454 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" + +#: ../../include/text.php:1609 ../../mod/events.php:497 +msgid "Link to Source" +msgstr "Link zur Quelle" + +#: ../../include/text.php:1630 ../../include/text.php:1701 +msgid "default" +msgstr "Standard" + +#: ../../include/text.php:1638 +msgid "Page layout" +msgstr "Seiten-Layout" + +#: ../../include/text.php:1638 +msgid "You can create your own with the layouts tool" +msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" + +#: ../../include/text.php:1679 +msgid "Page content type" +msgstr "Art des Seiteninhalts" + +#: ../../include/text.php:1713 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" + +#: ../../include/text.php:1845 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:2140 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" + +#: ../../include/text.php:2143 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Blöcke" + +#: ../../include/text.php:2144 ../../mod/menu.php:103 +msgid "Menus" +msgstr "Menüs" + +#: ../../include/text.php:2145 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Layouts" + +#: ../../include/text.php:2146 +msgid "Pages" +msgstr "Seiten" + +#: ../../include/acl_selectors.php:239 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit" + +#: ../../include/acl_selectors.php:240 +msgid "Show" +msgstr "Anzeigen" + +#: ../../include/acl_selectors.php:241 +msgid "Don't show" +msgstr "Nicht anzeigen" + +#: ../../include/acl_selectors.php:247 ../../mod/filestorage.php:147 +#: ../../mod/chat.php:207 ../../mod/photos.php:592 ../../mod/photos.php:962 +#: ../../mod/events.php:708 ../../mod/thing.php:310 ../../mod/thing.php:356 +msgid "Permissions" +msgstr "Berechtigungen" + +#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:361 +#: ../../mod/photos.php:1179 +msgid "Close" +msgstr "Schließen" + +#: ../../include/attach.php:243 ../../include/attach.php:329 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." + +#: ../../include/attach.php:471 +msgid "No source file." +msgstr "Keine Quelldatei." + +#: ../../include/attach.php:489 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" + +#: ../../include/attach.php:507 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:632 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" + +#: ../../include/attach.php:645 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." + +#: ../../include/attach.php:793 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:806 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." + +#: ../../include/attach.php:854 ../../include/attach.php:870 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." + +#: ../../include/attach.php:916 ../../include/attach.php:1069 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" + +#: ../../include/attach.php:942 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" + +#: ../../include/attach.php:965 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:1023 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:1027 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." + +#: ../../include/attach.php:1075 +msgid "Empty path" +msgstr "Leere Pfadangabe" + +#: ../../include/import.php:23 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." + +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." + +#: ../../include/import.php:80 ../../mod/import.php:138 +msgid "Cloned channel not found. Import failed." +msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." + +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "Neuer Beitrag wurde erzeugt" + +#: ../../include/notify.php:21 +#, php-format +msgid "commented on %s's post" +msgstr "hat %s's Beitrag kommentiert" + +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Neue Seite" + +#: ../../include/page_widgets.php:39 ../../mod/layouts.php:188 +#: ../../mod/webpages.php:187 ../../mod/blocks.php:159 +msgid "View" +msgstr "Ansicht" + +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" +msgstr "Aktionen" + +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" +msgstr "Seiten-Link" + +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titel" + +#: ../../include/page_widgets.php:44 ../../mod/layouts.php:181 +#: ../../mod/menu.php:110 ../../mod/webpages.php:192 ../../mod/blocks.php:150 +msgid "Created" +msgstr "Erstellt" + +#: ../../include/page_widgets.php:45 ../../mod/layouts.php:182 +#: ../../mod/menu.php:111 ../../mod/webpages.php:193 ../../mod/blocks.php:151 +msgid "Edited" +msgstr "Geändert" + +#: ../../include/photo/photo_driver.php:705 ../../mod/photos.php:94 +#: ../../mod/photos.php:660 ../../mod/profile_photo.php:146 +#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:376 +msgid "Profile Photos" +msgstr "Profilfotos" #: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 msgid "Male" msgstr "Männlich" #: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 msgid "Female" msgstr "Weiblich" @@ -2923,13 +2491,6 @@ msgstr "Geschlechtslos" msgid "Non-specific" msgstr "unklar" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:814 -msgid "Other" -msgstr "Andere" - #: ../../include/profile_selectors.php:6 msgid "Undecided" msgstr "Unentschieden" @@ -3026,6 +2587,15 @@ msgstr "Treulos" msgid "Sex Addict" msgstr "Sexabhängig" +#: ../../include/profile_selectors.php:80 ../../include/identity.php:390 +#: ../../include/identity.php:391 ../../include/identity.php:398 +#: ../../include/widgets.php:429 ../../mod/connedit.php:569 +#: ../../mod/settings.php:337 ../../mod/settings.php:341 +#: ../../mod/settings.php:342 ../../mod/settings.php:345 +#: ../../mod/settings.php:356 +msgid "Friends" +msgstr "Freunde" + #: ../../include/profile_selectors.php:80 msgid "Friends/Benefits" msgstr "Freunde/Begünstigte" @@ -3116,6 +2686,56 @@ msgstr "Interessiert mich nicht" msgid "Ask me" msgstr "Frag mich mal" +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" + +#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y, H:i" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 +msgid "Starts:" +msgstr "Beginnt:" + +#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 +msgid "Finishes:" +msgstr "Endet:" + +#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 +#: ../../include/identity.php:992 ../../mod/directory.php:302 +#: ../../mod/events.php:701 +msgid "Location:" +msgstr "Ort:" + +#: ../../include/event.php:766 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" + +#: ../../include/event.php:953 +msgid "Not specified" +msgstr "Keine Angabe" + +#: ../../include/event.php:954 +msgid "Needs Action" +msgstr "Aktion erforderlich" + +#: ../../include/event.php:955 +msgid "Completed" +msgstr "Abgeschlossen" + +#: ../../include/event.php:956 +msgid "In Process" +msgstr "In Bearbeitung" + +#: ../../include/event.php:957 +msgid "Cancelled" +msgstr "gestrichen" + #: ../../include/apps.php:128 msgid "Site Admin" msgstr "Hub-Administration" @@ -3124,13 +2744,58 @@ msgstr "Hub-Administration" msgid "Address Book" msgstr "Adressbuch" -#: ../../include/apps.php:144 ../../mod/mood.php:130 +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1497 +msgid "Login" +msgstr "Anmelden" + +#: ../../include/apps.php:132 ../../include/nav.php:200 +#: ../../mod/manage.php:160 +msgid "Channel Manager" +msgstr "Kanal-Manager" + +#: ../../include/apps.php:133 +msgid "Matrix" +msgstr "Matrix" + +#: ../../include/apps.php:134 ../../include/widgets.php:553 +#: ../../include/nav.php:202 ../../mod/admin.php:1033 ../../mod/admin.php:1233 +msgid "Settings" +msgstr "Einstellungen" + +#: ../../include/apps.php:137 ../../include/nav.php:177 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../include/apps.php:138 ../../include/identity.php:1226 +#: ../../include/identity.php:1343 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" + +#: ../../include/apps.php:140 ../../include/nav.php:196 +#: ../../mod/events.php:526 +msgid "Events" +msgstr "Termine" + +#: ../../include/apps.php:141 ../../include/nav.php:162 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../include/apps.php:142 ../../include/nav.php:154 ../../mod/help.php:202 +#: ../../mod/help.php:207 ../../mod/layouts.php:176 +msgid "Help" +msgstr "Hilfe" + +#: ../../include/apps.php:143 ../../include/nav.php:188 +msgid "Mail" +msgstr "Mail" + +#: ../../include/apps.php:144 ../../mod/mood.php:131 msgid "Mood" msgstr "Laune" -#: ../../include/apps.php:145 ../../include/conversation.php:943 -msgid "Poke" -msgstr "Anstupsen" +#: ../../include/apps.php:146 ../../include/nav.php:97 +msgid "Chat" +msgstr "Chat" #: ../../include/apps.php:148 msgid "Probe" @@ -3152,7 +2817,7 @@ msgstr "Einladen" msgid "Features" msgstr "Funktionen" -#: ../../include/apps.php:153 +#: ../../include/apps.php:153 ../../mod/id.php:28 msgid "Language" msgstr "Sprache" @@ -3160,11 +2825,12 @@ msgstr "Sprache" msgid "Post" msgstr "Beitrag" -#: ../../include/apps.php:155 +#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 +#: ../../mod/id.php:19 msgid "Profile Photo" msgstr "Profilfoto" -#: ../../include/apps.php:247 ../../mod/settings.php:81 +#: ../../include/apps.php:247 ../../mod/settings.php:84 #: ../../mod/settings.php:609 msgid "Update" msgstr "Aktualisieren" @@ -3177,1433 +2843,2159 @@ msgstr "Installieren" msgid "Purchase" msgstr "Kaufen" -#: ../../include/account.php:23 +#: ../../include/auth.php:131 +msgid "Logged out." +msgstr "Ausgeloggt." + +#: ../../include/auth.php:272 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" + +#: ../../include/auth.php:286 ../../mod/openid.php:189 +msgid "Login failed." +msgstr "Login fehlgeschlagen." + +#: ../../include/bb2diaspora.php:373 +msgid "Attachments:" +msgstr "Anhänge:" + +#: ../../include/bb2diaspora.php:461 +msgid "$Projectname event notification:" +msgstr "$Projectname-Terminbenachrichtigung:" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:793 +#: ../../include/bbcode.php:796 ../../include/bbcode.php:801 +#: ../../include/bbcode.php:804 ../../include/bbcode.php:807 +#: ../../include/bbcode.php:810 ../../include/bbcode.php:815 +#: ../../include/bbcode.php:818 ../../include/bbcode.php:823 +#: ../../include/bbcode.php:826 ../../include/bbcode.php:829 +#: ../../include/bbcode.php:832 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:843 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: ../../include/bbcode.php:179 +#, php-format +msgid "Install %s element: " +msgstr "Element %s installieren: " + +#: ../../include/bbcode.php:183 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." + +#: ../../include/bbcode.php:193 ../../mod/impel.php:37 +msgid "webpage" +msgstr "Webseite" + +#: ../../include/bbcode.php:196 ../../mod/impel.php:47 +msgid "layout" +msgstr "Layout" + +#: ../../include/bbcode.php:199 ../../mod/impel.php:42 +msgid "block" +msgstr "Block" + +#: ../../include/bbcode.php:202 ../../mod/impel.php:54 +msgid "menu" +msgstr "Menü" + +#: ../../include/bbcode.php:257 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" + +#: ../../include/bbcode.php:259 ../../mod/tagger.php:51 +msgid "post" +msgstr "Beitrag" + +#: ../../include/bbcode.php:547 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" + +#: ../../include/bbcode.php:754 +msgid "$1 spoiler" +msgstr "$1 Spoiler" + +#: ../../include/bbcode.php:781 +msgid "$1 wrote:" +msgstr "$1 schrieb:" + +#: ../../include/account.php:27 msgid "Not a valid email address" msgstr "Ungültige E-Mail-Adresse" -#: ../../include/account.php:25 +#: ../../include/account.php:29 msgid "Your email domain is not among those allowed on this site" msgstr "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt" -#: ../../include/account.php:31 +#: ../../include/account.php:35 msgid "Your email address is already registered at this site." msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." -#: ../../include/account.php:64 +#: ../../include/account.php:67 msgid "An invitation is required." msgstr "Eine Einladung wird benötigt" -#: ../../include/account.php:68 +#: ../../include/account.php:71 msgid "Invitation could not be verified." msgstr "Die Einladung konnte nicht bestätigt werden" -#: ../../include/account.php:119 +#: ../../include/account.php:121 msgid "Please enter the required information." msgstr "Bitte gib die benötigten Informationen ein." -#: ../../include/account.php:187 +#: ../../include/account.php:188 msgid "Failed to store account information." msgstr "Speichern der Account-Informationen fehlgeschlagen" -#: ../../include/account.php:245 +#: ../../include/account.php:246 #, php-format msgid "Registration confirmation for %s" msgstr "Registrierungsbestätigung für %s" -#: ../../include/account.php:313 +#: ../../include/account.php:312 #, php-format msgid "Registration request at %s" msgstr "Registrierungsanfrage auf %s" -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/account.php:337 +#: ../../include/account.php:336 msgid "your registration password" msgstr "Dein Registrierungspasswort" -#: ../../include/account.php:340 ../../include/account.php:397 +#: ../../include/account.php:339 ../../include/account.php:399 #, php-format msgid "Registration details for %s" msgstr "Registrierungsdetails für %s" -#: ../../include/account.php:406 +#: ../../include/account.php:408 msgid "Account approved." msgstr "Account bestätigt." -#: ../../include/account.php:440 +#: ../../include/account.php:447 #, php-format msgid "Registration revoked for %s" msgstr "Registrierung für %s widerrufen" -#: ../../include/account.php:486 +#: ../../include/account.php:492 msgid "Account verified. Please login." msgstr "Konto geprüft. Bitte melde Dich an!" -#: ../../include/account.php:674 ../../include/account.php:676 +#: ../../include/account.php:705 ../../include/account.php:707 msgid "Click here to upgrade." msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/account.php:682 +#: ../../include/account.php:713 msgid "This action exceeds the limits set by your subscription plan." msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../include/account.php:687 +#: ../../include/account.php:718 msgid "This action is not available under your subscription plan." msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "Kanal" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " -#: ../../include/conversation.php:167 ../../mod/like.php:385 +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." + +#: ../../include/follow.php:154 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." + +#: ../../include/follow.php:170 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" + +#: ../../include/follow.php:186 +msgid "local account not found." +msgstr "Lokales Konto nicht gefunden." + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." + +#: ../../include/security.php:345 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." + +#: ../../include/contact_widgets.php:14 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s nicht" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" -#: ../../include/conversation.php:204 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:415 +msgid "Advanced" +msgstr "Fortgeschritten" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Finde Kanäle" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiele: Robert Morgenstein, Angeln" + +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 +#: ../../mod/directory.php:384 ../../mod/connections.php:266 +msgid "Find" +msgstr "Finde" + +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 +#: ../../mod/suggest.php:60 +msgid "Channel Suggestions" +msgstr "Kanal-Vorschläge" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Zufallsprofil" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Lade Freunde ein" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" + +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98 +#: ../../include/widgets.php:306 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:95 ../../include/taxonomy.php:271 +#: ../../include/widgets.php:35 +msgid "Categories" +msgstr "Kategorien" + +#: ../../include/contact_widgets.php:128 #, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeinsame Verbindung" +msgstr[1] "%d gemeinsame Verbindungen" -#: ../../include/conversation.php:239 +#: ../../include/contact_widgets.php:133 +msgid "show more" +msgstr "mehr zeigen" + +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen." + +#: ../../include/group.php:232 +msgid "Add new connections to this collection (privacy group)" +msgstr "Neue Verbindungen zu dieser Sammlung (Privatsphäre-Gruppe) hinzufügen" + +#: ../../include/group.php:251 ../../mod/admin.php:788 +msgid "All Channels" +msgstr "Alle Kanäle" + +#: ../../include/group.php:273 +msgid "edit" +msgstr "Bearbeiten" + +#: ../../include/group.php:295 +msgid "Collections" +msgstr "Sammlungen" + +#: ../../include/group.php:296 +msgid "Edit collection" +msgstr "Sammlung bearbeiten" + +#: ../../include/group.php:297 +msgid "Add new collection" +msgstr "Neue Sammlung hinzufügen" + +#: ../../include/group.php:298 +msgid "Channels not in any collection" +msgstr "Kanäle, die nicht in einer Sammlung sind" + +#: ../../include/group.php:300 ../../include/widgets.php:274 +msgid "add" +msgstr "hinzufügen" + +#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 +msgid "Tags" +msgstr "Schlagwörter" + +#: ../../include/taxonomy.php:294 +msgid "Keywords" +msgstr "Schlüsselwörter" + +#: ../../include/taxonomy.php:315 +msgid "have" +msgstr "habe" + +#: ../../include/taxonomy.php:315 +msgid "has" +msgstr "hat" + +#: ../../include/taxonomy.php:316 +msgid "want" +msgstr "will" + +#: ../../include/taxonomy.php:316 +msgid "wants" +msgstr "will" + +#: ../../include/taxonomy.php:317 ../../include/ItemObject.php:254 +msgid "like" +msgstr "mag" + +#: ../../include/taxonomy.php:317 +msgid "likes" +msgstr "gefällt" + +#: ../../include/taxonomy.php:318 ../../include/ItemObject.php:255 +msgid "dislike" +msgstr "verurteile" + +#: ../../include/taxonomy.php:318 +msgid "dislikes" +msgstr "missfällt" + +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" + +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Sicherer Modus" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/connedit.php:631 +#: ../../mod/connedit.php:659 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:386 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:106 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 +msgid "No" +msgstr "Nein" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:388 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:105 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 +msgid "Yes" +msgstr "Ja" + +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" + +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Nur dieser Hub" + +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Namensfeld leer" + +#: ../../include/identity.php:69 +msgid "Name too long" +msgstr "Name ist zu lang" + +#: ../../include/identity.php:181 +msgid "No account identifier" +msgstr "Keine Account-Kennung" + +#: ../../include/identity.php:193 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." + +#: ../../include/identity.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." + +#: ../../include/identity.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." + +#: ../../include/identity.php:288 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" + +#: ../../include/identity.php:346 +msgid "Default Profile" +msgstr "Standard-Profil" + +#: ../../include/identity.php:745 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." + +#: ../../include/identity.php:791 ../../mod/achievements.php:11 +#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29 +#: ../../mod/editblock.php:29 ../../mod/profile.php:16 +#: ../../mod/webpages.php:29 ../../mod/blocks.php:29 +#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 +#: ../../mod/connect.php:13 +msgid "Requested profile is not available." +msgstr "Erwünschte Profil ist nicht verfügbar." + +#: ../../include/identity.php:954 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Profilfoto ändern" + +#: ../../include/identity.php:960 +msgid "Profiles" +msgstr "Profile" + +#: ../../include/identity.php:960 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/bearbeiten" + +#: ../../include/identity.php:961 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" + +#: ../../include/identity.php:964 ../../include/nav.php:90 +msgid "Edit Profile" +msgstr "Profile bearbeiten" + +#: ../../include/identity.php:976 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Profilfoto:" + +#: ../../include/identity.php:979 +msgid "visible to everybody" +msgstr "sichtbar für jeden" + +#: ../../include/identity.php:980 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" + +#: ../../include/identity.php:996 ../../include/identity.php:1236 +msgid "Gender:" +msgstr "Geschlecht:" + +#: ../../include/identity.php:997 ../../include/identity.php:1280 +msgid "Status:" +msgstr "Status:" + +#: ../../include/identity.php:998 ../../include/identity.php:1291 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../include/identity.php:999 +msgid "Online Now" +msgstr "gerade online" + +#: ../../include/identity.php:1083 ../../include/identity.php:1161 +#: ../../mod/ping.php:318 +msgid "g A l F d" +msgstr "l, d. F, G:i \\U\\h\\r" + +#: ../../include/identity.php:1084 ../../include/identity.php:1162 +msgid "F d" +msgstr "d. F" + +#: ../../include/identity.php:1129 ../../include/identity.php:1201 +#: ../../mod/ping.php:341 +msgid "[today]" +msgstr "[Heute]" + +#: ../../include/identity.php:1140 +msgid "Birthday Reminders" +msgstr "Geburtstags Erinnerungen" + +#: ../../include/identity.php:1141 +msgid "Birthdays this week:" +msgstr "Geburtstage in dieser Woche:" + +#: ../../include/identity.php:1194 +msgid "[No description]" +msgstr "[Keine Beschreibung]" + +#: ../../include/identity.php:1212 +msgid "Event Reminders" +msgstr "Termin-Erinnerungen" + +#: ../../include/identity.php:1213 +msgid "Events this week:" +msgstr "Termine in dieser Woche:" + +#: ../../include/identity.php:1234 ../../mod/settings.php:1026 +msgid "Full Name:" +msgstr "Voller Name:" + +#: ../../include/identity.php:1241 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" + +#: ../../include/identity.php:1265 +msgid "j F, Y" +msgstr "j. F Y" + +#: ../../include/identity.php:1266 +msgid "j F" +msgstr "j. F" + +#: ../../include/identity.php:1273 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/identity.php:1277 ../../mod/directory.php:297 +msgid "Age:" +msgstr "Alter:" + +#: ../../include/identity.php:1286 #, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" -#: ../../include/conversation.php:261 ../../mod/mood.php:63 +#: ../../include/identity.php:1289 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" + +#: ../../include/identity.php:1293 ../../mod/directory.php:313 +#: ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Heimatstadt:" + +#: ../../include/identity.php:1295 +msgid "Tags:" +msgstr "Schlagworte:" + +#: ../../include/identity.php:1297 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: ../../include/identity.php:1299 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/identity.php:1301 ../../mod/directory.php:315 +msgid "About:" +msgstr "Über:" + +#: ../../include/identity.php:1303 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" + +#: ../../include/identity.php:1305 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Gefällt:" + +#: ../../include/identity.php:1307 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Gefällt nicht:" + +#: ../../include/identity.php:1309 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" + +#: ../../include/identity.php:1311 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" + +#: ../../include/identity.php:1313 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: ../../include/identity.php:1315 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" + +#: ../../include/identity.php:1317 +msgid "Television:" +msgstr "Fernsehen:" + +#: ../../include/identity.php:1319 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" + +#: ../../include/identity.php:1321 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" + +#: ../../include/identity.php:1323 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" + +#: ../../include/identity.php:1325 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: ../../include/identity.php:1345 +msgid "Like this thing" +msgstr "Gefällt mir" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[no subject]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." + +#: ../../include/message.php:203 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In Ordner speichern" + +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Ich werde teilnehmen" + +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "Ich werde nicht teilnehmen" + +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Ich werde vielleicht teilnehmen" + +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Ich stimme zu" + +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "Ich lehne ab" + +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Ich enthalte mich" + +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Stern hinzufügen" + +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Stern entfernen" + +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Markierungsstatus (Stern) umschalten" + +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "markiert" + +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Tag hinzufügen" + +#: ../../include/ItemObject.php:254 ../../mod/photos.php:987 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" + +#: ../../include/ItemObject.php:255 ../../mod/photos.php:988 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" + +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "Teilen" + +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "Teilen" + +#: ../../include/ItemObject.php:276 #, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" +#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 +#, php-format +msgid "View %s's profile - %s" +msgstr "Schaue Dir %ss Profil an – %s" + +#: ../../include/ItemObject.php:299 +msgid "to" +msgstr "an" + +#: ../../include/ItemObject.php:300 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:301 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: ../../include/ItemObject.php:302 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: ../../include/ItemObject.php:305 +msgid "Delivery Report" +msgstr "Zustellungsbericht" + +#: ../../include/ItemObject.php:339 +msgid "Save Bookmarks" +msgstr "Favoriten speichern" + +#: ../../include/ItemObject.php:340 +msgid "Add to Calendar" +msgstr "Zum Kalender hinzufügen" + +#: ../../include/ItemObject.php:349 +msgid "Mark all seen" +msgstr "Alle als gelesen markieren" + +#: ../../include/ItemObject.php:355 ../../mod/photos.php:1173 +msgctxt "noun" msgid "Likes" msgstr "Gefällt mir" -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" +#: ../../include/ItemObject.php:356 ../../mod/photos.php:1174 +msgctxt "noun" msgid "Dislikes" -msgstr "Gefällt mir nicht" +msgstr "Gefällt nicht" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" +#: ../../include/ItemObject.php:671 ../../mod/photos.php:1006 +#: ../../mod/photos.php:1124 +msgid "This is you" +msgstr "Das bist Du" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" +#: ../../include/ItemObject.php:680 +msgid "Image" +msgstr "Bild" -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" - -#: ../../include/conversation.php:680 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" - -#: ../../include/conversation.php:695 -msgid "Categories:" -msgstr "Kategorien:" - -#: ../../include/conversation.php:696 -msgid "Filed under:" -msgstr "Gespeichert unter:" - -#: ../../include/conversation.php:723 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" - -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "lösche" - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Quelle anzeigen" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Status ansehen" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Fotos ansehen" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Matrix-Aktivität" - -#: ../../include/conversation.php:941 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: ../../include/conversation.php:942 -msgid "Send PM" -msgstr "Sende PN" - -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s likes this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." - -#: ../../include/conversation.php:1065 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d Person gefällt das." -msgstr[1] "%2$d Leuten gefällt das." - -#: ../../include/conversation.php:1067 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d Person gefällt das nicht." -msgstr[1] "%2$d Leuten gefällt das nicht." - -#: ../../include/conversation.php:1073 -msgid "and" -msgstr "und" - -#: ../../include/conversation.php:1076 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", und %d andere" - -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." - -#: ../../include/conversation.php:1136 -msgid "Visible to everybody" -msgstr "Sichtbar für jeden" - -#: ../../include/conversation.php:1137 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" - -#: ../../include/conversation.php:1138 -msgid "Please enter a video link/URL:" -msgstr "Gib einen Video-Link/URL ein:" - -#: ../../include/conversation.php:1139 -msgid "Please enter an audio link/URL:" -msgstr "Gib einen Audio-Link/URL ein:" - -#: ../../include/conversation.php:1140 -msgid "Tag term:" -msgstr "Schlagwort:" - -#: ../../include/conversation.php:1141 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" - -#: ../../include/conversation.php:1142 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" - -#: ../../include/conversation.php:1143 ../../mod/editpost.php:52 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verfällt YYYY-MM-DD HH;MM" - -#: ../../include/conversation.php:1170 ../../mod/editblock.php:198 -#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 -#: ../../mod/layouts.php:168 ../../mod/photos.php:943 -msgid "Share" -msgstr "Teilen" - -#: ../../include/conversation.php:1172 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Seitentitel-Link" - -#: ../../include/conversation.php:1175 -msgid "Post as" -msgstr "Veröffentlichen als" - -#: ../../include/conversation.php:1176 ../../mod/editblock.php:144 -#: ../../mod/editpost.php:114 ../../mod/editlayout.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: ../../include/conversation.php:1177 -msgid "upload photo" -msgstr "Foto hochladen" - -#: ../../include/conversation.php:1178 ../../mod/editblock.php:145 -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:141 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "Datei anhängen" - -#: ../../include/conversation.php:1179 -msgid "attach file" -msgstr "Datei anfügen" - -#: ../../include/conversation.php:1180 ../../mod/editblock.php:146 -#: ../../mod/editpost.php:116 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" +#: ../../include/ItemObject.php:681 +msgid "Insert Link" msgstr "Link einfügen" -#: ../../include/conversation.php:1181 -msgid "web link" -msgstr "Web-Link" +#: ../../include/ItemObject.php:682 +msgid "Video" +msgstr "Video" -#: ../../include/conversation.php:1182 -msgid "Insert video link" -msgstr "Video-Link einfügen" +#: ../../include/items.php:423 ../../mod/like.php:280 ../../mod/dreport.php:6 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 +#: ../../mod/import_items.php:114 ../../index.php:360 +msgid "Permission denied" +msgstr "Keine Berechtigung" -#: ../../include/conversation.php:1183 -msgid "video link" -msgstr "Video-Link" +#: ../../include/items.php:1128 ../../include/items.php:1174 +msgid "(Unknown)" +msgstr "(Unbekannt)" -#: ../../include/conversation.php:1184 -msgid "Insert audio link" -msgstr "Audio-Link einfügen" +#: ../../include/items.php:1371 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." -#: ../../include/conversation.php:1185 -msgid "audio link" -msgstr "Audio-Link" +#: ../../include/items.php:1373 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." -#: ../../include/conversation.php:1186 ../../mod/editblock.php:150 -#: ../../mod/editpost.php:120 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:181 -msgid "Set your location" -msgstr "Standort" +#: ../../include/items.php:1375 +msgid "Visible to anybody in this network." +msgstr "Für jedes Mitglied der RedMatrix sichtbar." -#: ../../include/conversation.php:1187 -msgid "set location" -msgstr "Standort" +#: ../../include/items.php:1377 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/conversation.php:1188 ../../mod/editpost.php:122 -msgid "Toggle voting" -msgstr "Umfragewerkzeug aktivieren" +#: ../../include/items.php:1379 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." -#: ../../include/conversation.php:1191 ../../mod/editblock.php:151 -#: ../../mod/editpost.php:121 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:182 -msgid "Clear browser location" -msgstr "Browser-Standort löschen" +#: ../../include/items.php:1381 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." -#: ../../include/conversation.php:1192 -msgid "clear location" -msgstr "Standort löschen" +#: ../../include/items.php:1383 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/conversation.php:1194 ../../mod/editblock.php:164 -#: ../../mod/editpost.php:136 ../../mod/editlayout.php:159 -#: ../../mod/editwebpage.php:198 -msgid "Title (optional)" -msgstr "Titel (optional)" +#: ../../include/items.php:1385 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/conversation.php:1197 ../../mod/editblock.php:167 -#: ../../mod/editpost.php:138 ../../mod/editlayout.php:162 -#: ../../mod/editwebpage.php:200 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" +#: ../../include/items.php:4263 ../../mod/display.php:36 +#: ../../mod/filestorage.php:27 ../../mod/admin.php:127 +#: ../../mod/admin.php:979 ../../mod/admin.php:1179 ../../mod/thing.php:86 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Element nicht gefunden." -#: ../../include/conversation.php:1199 ../../mod/editblock.php:153 -#: ../../mod/editpost.php:126 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:184 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" +#: ../../include/items.php:4772 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "Sammlung nicht gefunden" -#: ../../include/conversation.php:1200 -msgid "permissions" -msgstr "Berechtigungen" +#: ../../include/items.php:4788 +msgid "Collection is empty." +msgstr "Sammlung ist leer." -#: ../../include/conversation.php:1207 ../../mod/editblock.php:161 -#: ../../mod/editpost.php:133 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:193 -msgid "Public post" -msgstr "Öffentlicher Beitrag" +#: ../../include/items.php:4795 +#, php-format +msgid "Collection: %s" +msgstr "Sammlung: %s" -#: ../../include/conversation.php:1209 ../../mod/editblock.php:168 -#: ../../mod/editpost.php:139 ../../mod/editlayout.php:163 -#: ../../mod/editwebpage.php:201 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Beispiel: bob@example.com, mary@example.com" +#: ../../include/items.php:4805 ../../mod/connedit.php:658 +#, php-format +msgid "Connection: %s" +msgstr "Verbindung: %s" -#: ../../include/conversation.php:1222 ../../mod/editblock.php:178 -#: ../../mod/editpost.php:150 ../../mod/editlayout.php:173 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Verfallsdatum" +#: ../../include/items.php:4807 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/conversation.php:1226 ../../mod/editpost.php:154 -#: ../../mod/events.php:635 -msgid "OK" -msgstr "Ok" +#: ../../include/widgets.php:91 ../../include/nav.php:157 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "Apps" -#: ../../include/conversation.php:1227 ../../mod/editpost.php:155 -#: ../../mod/events.php:634 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/settings.php:584 -#: ../../mod/settings.php:610 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Abbrechen" +#: ../../include/widgets.php:92 +msgid "System" +msgstr "System" -#: ../../include/conversation.php:1471 -msgid "Discover" -msgstr "Entdecken" +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Persönliche App erstellen" -#: ../../include/conversation.php:1474 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Persönliche App bearbeiten" -#: ../../include/conversation.php:1479 -msgid "Commented Order" -msgstr "Neueste Kommentare" +#: ../../include/widgets.php:138 ../../mod/suggest.php:54 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" -#: ../../include/conversation.php:1482 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" +#: ../../include/widgets.php:143 ../../mod/connections.php:125 +msgid "Suggestions" +msgstr "Vorschläge" -#: ../../include/conversation.php:1486 -msgid "Posted Order" -msgstr "Neueste Beiträge" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Mehr anzeigen …" -#: ../../include/conversation.php:1489 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" +#: ../../include/widgets.php:165 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." -#: ../../include/conversation.php:1497 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" +#: ../../include/widgets.php:171 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" -#: ../../include/conversation.php:1503 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" -msgstr "Neu" +#: ../../include/widgets.php:172 +msgid "Enter the channel address" +msgstr "Adresse des Kanals eingeben" -#: ../../include/conversation.php:1506 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" +#: ../../include/widgets.php:173 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" -#: ../../include/conversation.php:1512 -msgid "Starred" -msgstr "Markiert" +#: ../../include/widgets.php:189 +msgid "Notes" +msgstr "Notizen" -#: ../../include/conversation.php:1515 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" +#: ../../include/widgets.php:265 +msgid "Remove term" +msgstr "Eintrag löschen" -#: ../../include/conversation.php:1522 -msgid "Spam" -msgstr "Spam" +#: ../../include/widgets.php:348 +msgid "Archives" +msgstr "Archive" -#: ../../include/conversation.php:1525 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" +#: ../../include/widgets.php:427 ../../mod/connedit.php:567 +msgid "Me" +msgstr "Ich" -#: ../../include/conversation.php:1565 ../../mod/admin.php:870 -msgid "Channel" -msgstr "Kanal" +#: ../../include/widgets.php:428 ../../mod/connedit.php:568 +msgid "Family" +msgstr "Familie" -#: ../../include/conversation.php:1568 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" +#: ../../include/widgets.php:430 ../../mod/connedit.php:570 +msgid "Acquaintances" +msgstr "Bekannte" -#: ../../include/conversation.php:1577 -msgid "About" -msgstr "Über" +#: ../../include/widgets.php:431 ../../mod/connedit.php:571 +#: ../../mod/connections.php:88 ../../mod/connections.php:103 +msgid "All" +msgstr "Alle" -#: ../../include/conversation.php:1580 -msgid "Profile Details" -msgstr "Profil-Details" +#: ../../include/widgets.php:450 +msgid "Refresh" +msgstr "Aktualisieren" -#: ../../include/conversation.php:1598 -msgid "Files and Storage" -msgstr "Dateien und Speicher" +#: ../../include/widgets.php:484 +msgid "Account settings" +msgstr "Konto-Einstellungen" -#: ../../include/conversation.php:1608 ../../include/conversation.php:1611 -msgid "Chatrooms" +#: ../../include/widgets.php:490 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" + +#: ../../include/widgets.php:496 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" + +#: ../../include/widgets.php:502 +msgid "Feature/Addon settings" +msgstr "Plugin-Einstellungen" + +#: ../../include/widgets.php:508 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" + +#: ../../include/widgets.php:514 +msgid "Connected apps" +msgstr "Verbundene Apps" + +#: ../../include/widgets.php:520 +msgid "Export channel" +msgstr "Kanal exportieren" + +#: ../../include/widgets.php:529 ../../mod/connedit.php:658 +msgid "Connection Default Permissions" +msgstr "Standardzugriffsrechte für neue Verbindungen:" + +#: ../../include/widgets.php:537 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" + +#: ../../include/widgets.php:567 +msgid "Private Mail Menu" +msgstr "Private Nachrichten" + +#: ../../include/widgets.php:569 +msgid "Check Mail" +msgstr "Nachrichten abrufen" + +#: ../../include/widgets.php:575 +msgid "Combined View" +msgstr "Kombinierte Anzeige" + +#: ../../include/widgets.php:580 ../../include/nav.php:191 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/widgets.php:585 ../../include/nav.php:192 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/widgets.php:590 ../../include/nav.php:193 +msgid "New Message" +msgstr "Neue Nachricht" + +#: ../../include/widgets.php:609 ../../include/widgets.php:621 +msgid "Conversations" +msgstr "Konversationen" + +#: ../../include/widgets.php:613 +msgid "Received Messages" +msgstr "Erhaltene Nachrichten" + +#: ../../include/widgets.php:617 +msgid "Sent Messages" +msgstr "Gesendete Nachrichten" + +#: ../../include/widgets.php:631 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: ../../include/widgets.php:648 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: ../../include/widgets.php:650 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - G:i" + +#: ../../include/widgets.php:738 +msgid "Chat Rooms" msgstr "Chaträume" -#: ../../include/conversation.php:1624 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" +#: ../../include/widgets.php:758 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" -#: ../../include/conversation.php:1635 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" +#: ../../include/widgets.php:778 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" -#: ../../include/conversation.php:1698 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Zusage" -msgstr[1] "Zusagen" +#: ../../include/widgets.php:905 ../../include/widgets.php:963 +msgid "photo/image" +msgstr "Foto/Bild" -#: ../../include/conversation.php:1701 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Absage" -msgstr[1] "Absagen" +#: ../../include/widgets.php:1058 ../../include/widgets.php:1060 +msgid "Rate Me" +msgstr "Bewerte mich" -#: ../../include/conversation.php:1704 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] " Unentschlossen" -msgstr[1] "Unentschlossene" +#: ../../include/widgets.php:1064 +msgid "View Ratings" +msgstr "Bewertungen ansehen" -#: ../../include/conversation.php:1707 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Zustimmung" -msgstr[1] "Zustimmungen" +#: ../../include/widgets.php:1075 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" -#: ../../include/conversation.php:1710 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Ablehnung" -msgstr[1] "Ablehnungen" +#: ../../include/widgets.php:1123 +msgid "Forums" +msgstr "Foren" -#: ../../include/conversation.php:1713 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Enthaltung" -msgstr[1] "Enthaltungen" +#: ../../include/widgets.php:1150 +msgid "Tasks" +msgstr "Aufgaben" -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" +#: ../../include/widgets.php:1159 +msgid "Documentation" +msgstr "Dokumentation" -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" +#: ../../include/widgets.php:1161 +msgid "Project/Site Information" +msgstr "Informationen über das Projekt und diesen Hub" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" +#: ../../include/widgets.php:1162 +msgid "For Members" +msgstr "Für Mitglieder" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" +#: ../../include/widgets.php:1163 +msgid "For Administrators" +msgstr "Für Administratoren" -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kann meine Fotoalben betrachten" +#: ../../include/widgets.php:1164 +msgid "For Developers" +msgstr "Für Entwickler" -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" +#: ../../include/widgets.php:1189 ../../mod/admin.php:410 +msgid "Site" +msgstr "Seite" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kann meine Dateiordner lesen" +#: ../../include/widgets.php:1190 +msgid "Accounts" +msgstr "Konten" -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" +#: ../../include/widgets.php:1191 ../../mod/admin.php:939 +msgid "Channels" +msgstr "Kanäle" -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" +#: ../../include/widgets.php:1192 ../../mod/admin.php:1031 +#: ../../mod/admin.php:1071 +msgid "Plugins" +msgstr "Plug-Ins" -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" +#: ../../include/widgets.php:1193 ../../mod/admin.php:1231 +#: ../../mod/admin.php:1265 +msgid "Themes" +msgstr "Themes" -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" +#: ../../include/widgets.php:1194 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" +#: ../../include/widgets.php:1195 +msgid "Profile Config" +msgstr "Profilkonfiguration" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" +#: ../../include/widgets.php:1196 +msgid "DB updates" +msgstr "DB-Aktualisierungen" -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" +#: ../../include/widgets.php:1214 ../../include/widgets.php:1220 +#: ../../mod/admin.php:1350 +msgid "Logs" +msgstr "Protokolle" -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" +#: ../../include/widgets.php:1218 ../../include/nav.php:210 +msgid "Admin" +msgstr "Administration" -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" +#: ../../include/widgets.php:1219 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" +#: ../../include/widgets.php:1221 +msgid "User registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" +#: ../../include/zot.php:677 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kann in meine Dateiordner schreiben" +#: ../../include/zot.php:693 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" +#: ../../include/zot.php:2213 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" +#: ../../include/zot.php:3511 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1496 +msgid "Logout" +msgstr "Abmelden" -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" +#: ../../include/nav.php:82 ../../include/nav.php:114 +msgid "End this session" +msgstr "Beende diese Sitzung" -#: ../../include/permissions.php:48 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" +#: ../../include/nav.php:85 ../../include/nav.php:145 +msgid "Home" +msgstr "Home" -#: ../../include/permissions.php:810 -msgid "Social Networking" -msgstr "Soziales Netzwerk" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Mostly Public" -msgstr "Weitgehend öffentlich" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Deine Profilseite" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Restricted" -msgstr "Beschränkt" +#: ../../include/nav.php:88 +msgid "Edit Profiles" +msgstr "Profile bearbeiten" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -msgid "Private" -msgstr "Privat" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" -#: ../../include/permissions.php:811 -msgid "Community Forum" -msgstr "Forum" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Profil bearbeiten" -#: ../../include/permissions.php:812 -msgid "Feed Republish" -msgstr "Teilen von Feeds" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Deine Bilder" -#: ../../include/permissions.php:813 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Deine Dateien" -#: ../../include/permissions.php:813 -msgid "Celebrity/Soapbox" -msgstr "Mitteilungs-Kanal (keine Kommentare)" +#: ../../include/nav.php:97 +msgid "Your chatrooms" +msgstr "Deine Chaträume" -#: ../../include/permissions.php:813 -msgid "Group Repository" -msgstr "Gruppenarchiv" +#: ../../include/nav.php:103 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" -#: ../../include/permissions.php:814 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" +#: ../../include/nav.php:107 +msgid "Your webpages" +msgstr "Deine Webseiten" + +#: ../../include/nav.php:111 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:128 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" + +#: ../../include/nav.php:131 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" + +#: ../../include/nav.php:131 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" + +#: ../../include/nav.php:145 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1473 +msgid "Register" +msgstr "Registrieren" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Erzeuge ein Konto" + +#: ../../include/nav.php:154 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:157 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" + +#: ../../include/nav.php:159 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:162 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" + +#: ../../include/nav.php:174 +msgid "Grid" +msgstr "Grid" + +#: ../../include/nav.php:174 +msgid "Your grid" +msgstr "Dein Grid" + +#: ../../include/nav.php:175 +msgid "Mark all grid notifications seen" +msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" + +#: ../../include/nav.php:177 +msgid "Channel home" +msgstr "Mein Kanal" + +#: ../../include/nav.php:178 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:181 ../../mod/connections.php:260 +msgid "Connections" +msgstr "Verbindungen" + +#: ../../include/nav.php:184 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:184 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:185 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" + +#: ../../include/nav.php:186 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" + +#: ../../include/nav.php:188 +msgid "Private mail" +msgstr "Persönliche Mail" + +#: ../../include/nav.php:189 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" + +#: ../../include/nav.php:190 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" + +#: ../../include/nav.php:196 +msgid "Event Calendar" +msgstr "Terminkalender" + +#: ../../include/nav.php:197 +msgid "See all events" +msgstr "Alle Termine ansehen" + +#: ../../include/nav.php:198 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" + +#: ../../include/nav.php:200 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" + +#: ../../include/nav.php:202 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" + +#: ../../include/nav.php:210 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" + +#: ../../include/nav.php:246 +msgid "@name, #tag, ?doc, content" +msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:247 +msgid "Please wait..." +msgstr "Bitte warten..." #: ../../mod/achievements.php:34 msgid "Some blurb about what to do when you're new here" msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" -#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 -#: ../../mod/editpost.php:20 ../../mod/editlayout.php:78 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Element nicht gefunden" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden" -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Block bearbeiten" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Freundschaftsempfehlung senden." -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Block löschen?" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" -#: ../../mod/editblock.php:147 ../../mod/editpost.php:117 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" -msgstr "YouTube-Video einfügen" - -#: ../../mod/editblock.php:148 ../../mod/editpost.php:118 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis [.ogg]-Video einfügen" - -#: ../../mod/editblock.php:149 ../../mod/editpost.php:119 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis [.ogg]-Audio einfügen" - -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Block löschen" - -#: ../../mod/manage.php:136 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" +#: ../../mod/directory.php:59 ../../mod/display.php:13 ../../mod/search.php:13 +#: ../../mod/photos.php:453 ../../mod/ratings.php:82 +#: ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "Öffentlicher Zugang verweigert." -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "Aktueller Kanal" - -#: ../../mod/manage.php:151 -msgid "Switch to one of your channels by selecting it." -msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "Standard Kanal" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "Zum Standard machen" - -#: ../../mod/manage.php:156 +#: ../../mod/directory.php:234 #, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d Bewertung" +msgstr[1] "%d Bewertungen" -#: ../../mod/manage.php:157 +#: ../../mod/directory.php:245 +msgid "Gender: " +msgstr "Geschlecht:" + +#: ../../mod/directory.php:247 +msgid "Status: " +msgstr "Status:" + +#: ../../mod/directory.php:249 +msgid "Homepage: " +msgstr "Webseite:" + +#: ../../mod/directory.php:308 ../../mod/events.php:699 +msgid "Description:" +msgstr "Beschreibung:" + +#: ../../mod/directory.php:317 +msgid "Public Forum:" +msgstr "Öffentliches Forum:" + +#: ../../mod/directory.php:320 +msgid "Keywords: " +msgstr "Schlüsselwörter:" + +#: ../../mod/directory.php:323 +msgid "Don't suggest" +msgstr "Nicht vorschlagen" + +#: ../../mod/directory.php:325 +msgid "Common connections:" +msgstr "Gemeinsame Verbindungen:" + +#: ../../mod/directory.php:374 +msgid "Global Directory" +msgstr "Globales Verzeichnis" + +#: ../../mod/directory.php:374 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: ../../mod/directory.php:380 +msgid "Finding:" +msgstr "Ergebnisse:" + +#: ../../mod/directory.php:385 +msgid "next page" +msgstr "nächste Seite" + +#: ../../mod/directory.php:385 +msgid "previous page" +msgstr "vorherige Seite" + +#: ../../mod/directory.php:386 +msgid "Sort options" +msgstr "Sortieroptionen" + +#: ../../mod/directory.php:387 +msgid "Alphabetic" +msgstr "alphabetisch" + +#: ../../mod/directory.php:388 +msgid "Reverse Alphabetic" +msgstr "Entgegengesetzt alphabetisch" + +#: ../../mod/directory.php:389 +msgid "Newest to Oldest" +msgstr "Neueste zuerst" + +#: ../../mod/directory.php:390 +msgid "Oldest to Newest" +msgstr "Älteste zuerst" + +#: ../../mod/directory.php:407 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." + +#: ../../mod/bookmarks.php:40 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" + +#: ../../mod/bookmarks.php:62 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" + +#: ../../mod/bookmarks.php:73 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: ../../mod/openid.php:72 ../../mod/openid.php:179 ../../mod/post.php:285 #, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" +msgid "Welcome %s. Remote authentication successful." +msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Xchan-Suche" +#: ../../mod/block.php:27 ../../mod/page.php:36 +msgid "Invalid item." +msgstr "Ungültiges Element." -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" +#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." -#: ../../mod/xchan.php:37 ../../mod/menu.php:136 ../../mod/mitem.php:111 +#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:214 +#: ../../mod/page.php:89 ../../index.php:237 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: ../../mod/id.php:11 +msgid "First Name" +msgstr "Vorname" + +#: ../../mod/id.php:12 +msgid "Last Name" +msgstr "Nachname" + +#: ../../mod/id.php:13 +msgid "Nickname" +msgstr "Spitzname" + +#: ../../mod/id.php:14 +msgid "Full Name" +msgstr "Voller Name" + +#: ../../mod/id.php:20 +msgid "Profile Photo 16px" +msgstr "Profilfoto 16 px" + +#: ../../mod/id.php:21 +msgid "Profile Photo 32px" +msgstr "Profilfoto 32 px" + +#: ../../mod/id.php:22 +msgid "Profile Photo 48px" +msgstr "Profilfoto 48 px" + +#: ../../mod/id.php:23 +msgid "Profile Photo 64px" +msgstr "Profilfoto 64 px" + +#: ../../mod/id.php:24 +msgid "Profile Photo 80px" +msgstr "Profilfoto 80 px" + +#: ../../mod/id.php:25 +msgid "Profile Photo 128px" +msgstr "Profilfoto 128 px" + +#: ../../mod/id.php:26 +msgid "Timezone" +msgstr "Zeitzone" + +#: ../../mod/id.php:27 +msgid "Homepage URL" +msgstr "Homepage-URL" + +#: ../../mod/id.php:29 +msgid "Birth Year" +msgstr "Geburtsjahr" + +#: ../../mod/id.php:30 +msgid "Birth Month" +msgstr "Geburtsmonat" + +#: ../../mod/id.php:31 +msgid "Birth Day" +msgstr "Geburtstag" + +#: ../../mod/id.php:32 +msgid "Birthdate" +msgstr "Geburtsdatum" + +#: ../../mod/id.php:33 ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Geschlecht" + +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" + +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." + +#: ../../mod/like.php:21 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." + +#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165 +msgid "Invalid request." +msgstr "Ungültige Anfrage." + +#: ../../mod/like.php:142 +msgid "thing" +msgstr "Sache" + +#: ../../mod/like.php:188 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." + +#: ../../mod/like.php:236 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." + +#: ../../mod/like.php:414 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s stimmt %2$ss %3$s zu" + +#: ../../mod/like.php:416 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s lehnt %2$ss %3$s ab" + +#: ../../mod/like.php:418 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s enthält sich zu %2$ss %3$s" + +#: ../../mod/like.php:420 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil" + +#: ../../mod/like.php:422 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s nicht teil" + +#: ../../mod/like.php:424 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" + +#: ../../mod/like.php:520 +msgid "Action completed." +msgstr "Aktion durchgeführt." + +#: ../../mod/like.php:521 +msgid "Thank you." +msgstr "Vielen Dank." + +#: ../../mod/uexport.php:51 ../../mod/uexport.php:52 +msgid "Export Channel" +msgstr "Kanal exportieren" + +#: ../../mod/uexport.php:53 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." + +#: ../../mod/uexport.php:54 +msgid "Export Content" +msgstr "Kanal und Inhalte exportieren" + +#: ../../mod/uexport.php:55 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." + +#: ../../mod/uexport.php:56 +msgid "Export your posts from a given year." +msgstr "Exportiert die Beiträge des angegebenen Jahres." + +#: ../../mod/uexport.php:58 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." + +#: ../../mod/uexport.php:59 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." + +#: ../../mod/uexport.php:60 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." + +#: ../../mod/uexport.php:61 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Abwesend" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" + +#: ../../mod/common.php:10 +msgid "No channel." +msgstr "Kein Kanal." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." + +#: ../../mod/ping.php:260 +msgid "sent you a private message" +msgstr "hat Dir eine private Nachricht geschickt" + +#: ../../mod/ping.php:308 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" + +#: ../../mod/ping.php:350 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" + +#: ../../mod/help.php:147 +msgid "Documentation Search" +msgstr "Suche in der Dokumentation" + +#: ../../mod/help.php:184 ../../mod/help.php:190 ../../mod/help.php:196 +msgid "Help:" +msgstr "Hilfe:" + +#: ../../mod/help.php:211 ../../index.php:234 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: ../../mod/help.php:235 +msgid "$Projectname Documentation" +msgstr "$Projectname-Dokumentation" + +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." + +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Diesen Kanal löschen" + +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "WARNING: " +msgstr "WARNUNG: " + +#: ../../mod/removeme.php:58 +msgid "This channel will be completely removed from the network. " +msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." + +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" + +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" + +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" + +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" + +#: ../../mod/removeme.php:61 ../../mod/settings.php:1109 +msgid "Remove Channel" +msgstr "Kanal löschen" + +#: ../../mod/filer.php:48 +msgid "- select -" +msgstr "– auswählen –" + +#: ../../mod/mitem.php:24 ../../mod/menu.php:140 +msgid "Menu not found." +msgstr "Menü nicht gefunden" + +#: ../../mod/mitem.php:48 +msgid "Unable to create element." +msgstr "Element konnte nicht erstellt werden." + +#: ../../mod/mitem.php:72 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." + +#: ../../mod/mitem.php:88 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." + +#: ../../mod/mitem.php:116 ../../mod/menu.php:162 ../../mod/xchan.php:37 msgid "Not found." msgstr "Nicht gefunden." -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" +#: ../../mod/mitem.php:149 ../../mod/mitem.php:222 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" +#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1053 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." +#: ../../mod/mitem.php:152 ../../mod/mitem.php:168 +msgid "Link Name" +msgstr "Name des Links" -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" +#: ../../mod/mitem.php:153 ../../mod/mitem.php:227 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" -#: ../../mod/api.php:105 ../../mod/settings.php:974 ../../mod/settings.php:979 -#: ../../mod/settings.php:1064 ../../mod/admin.php:396 -msgid "Yes" -msgstr "Ja" +#: ../../mod/mitem.php:153 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." -#: ../../mod/api.php:106 ../../mod/settings.php:974 ../../mod/settings.php:979 -#: ../../mod/settings.php:1064 ../../mod/admin.php:394 -msgid "No" -msgstr "Nein" +#: ../../mod/mitem.php:154 ../../mod/mitem.php:228 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Block-Name" +#: ../../mod/mitem.php:155 ../../mod/mitem.php:229 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" -#: ../../mod/connedit.php:75 ../../mod/connections.php:37 +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" + +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" + +#: ../../mod/mitem.php:157 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" + +#: ../../mod/mitem.php:158 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" + +#: ../../mod/mitem.php:166 +msgid "Menu:" +msgstr "Menü:" + +#: ../../mod/mitem.php:169 +msgid "Link Target" +msgstr "Ziel des Links" + +#: ../../mod/mitem.php:172 +msgid "Edit menu" +msgstr "Menü bearbeiten" + +#: ../../mod/mitem.php:175 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" + +#: ../../mod/mitem.php:176 +msgid "Drop element" +msgstr "Bestandteil löschen" + +#: ../../mod/mitem.php:177 +msgid "New element" +msgstr "Neues Bestandteil" + +#: ../../mod/mitem.php:178 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" + +#: ../../mod/mitem.php:179 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" + +#: ../../mod/mitem.php:180 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" + +#: ../../mod/mitem.php:181 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" + +#: ../../mod/mitem.php:198 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." + +#: ../../mod/mitem.php:211 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." + +#: ../../mod/mitem.php:213 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." + +#: ../../mod/mitem.php:220 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" + +#: ../../mod/mitem.php:226 +msgid "Link text" +msgstr "Link Text" + +#: ../../mod/connedit.php:75 msgid "Could not access contact record." msgstr "Konnte nicht auf den Kontakteintrag zugreifen." -#: ../../mod/connedit.php:99 ../../mod/connections.php:51 +#: ../../mod/connedit.php:99 msgid "Could not locate selected profile." msgstr "Gewähltes Profil nicht gefunden." -#: ../../mod/connedit.php:204 ../../mod/connections.php:94 +#: ../../mod/connedit.php:219 msgid "Connection updated." msgstr "Verbindung aktualisiert." -#: ../../mod/connedit.php:206 ../../mod/connections.php:96 +#: ../../mod/connedit.php:221 msgid "Failed to update connection record." msgstr "Konnte den Verbindungseintrag nicht aktualisieren." -#: ../../mod/connedit.php:252 +#: ../../mod/connedit.php:268 msgid "is now connected to" msgstr "ist jetzt verbunden mit" -#: ../../mod/connedit.php:365 +#: ../../mod/connedit.php:391 msgid "Could not access address book record." msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../mod/connedit.php:379 +#: ../../mod/connedit.php:405 msgid "Refresh failed - channel is currently unavailable." msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." -#: ../../mod/connedit.php:386 -msgid "Channel has been unblocked" -msgstr "Kanal nicht mehr blockiert" - -#: ../../mod/connedit.php:387 -msgid "Channel has been blocked" -msgstr "Kanal blockiert" - -#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 -#: ../../mod/connedit.php:443 +#: ../../mod/connedit.php:414 ../../mod/connedit.php:423 +#: ../../mod/connedit.php:432 ../../mod/connedit.php:441 +#: ../../mod/connedit.php:454 msgid "Unable to set address book parameters." msgstr "Konnte die Adressbuch-Parameter nicht setzen." -#: ../../mod/connedit.php:398 -msgid "Channel has been unignored" -msgstr "Kanal wird nicht mehr ignoriert" - -#: ../../mod/connedit.php:399 -msgid "Channel has been ignored" -msgstr "Kanal wird ignoriert" - -#: ../../mod/connedit.php:410 -msgid "Channel has been unarchived" -msgstr "Kanal wurde aus dem Archiv zurück geholt" - -#: ../../mod/connedit.php:411 -msgid "Channel has been archived" -msgstr "Kanal wurde archiviert" - -#: ../../mod/connedit.php:422 -msgid "Channel has been unhidden" -msgstr "Kanal wird nicht mehr versteckt" - -#: ../../mod/connedit.php:423 -msgid "Channel has been hidden" -msgstr "Kanal wurde versteckt" - -#: ../../mod/connedit.php:438 -msgid "Channel has been approved" -msgstr "Kanal wurde zugelassen" - -#: ../../mod/connedit.php:439 -msgid "Channel has been unapproved" -msgstr "Zulassung des Kanals entfernt" - -#: ../../mod/connedit.php:467 +#: ../../mod/connedit.php:478 msgid "Connection has been removed." msgstr "Verbindung wurde gelöscht." -#: ../../mod/connedit.php:487 +#: ../../mod/connedit.php:497 #, php-format msgid "View %s's profile" msgstr "%ss Profil ansehen" -#: ../../mod/connedit.php:491 +#: ../../mod/connedit.php:501 msgid "Refresh Permissions" msgstr "Zugriffsrechte neu laden" -#: ../../mod/connedit.php:494 +#: ../../mod/connedit.php:504 msgid "Fetch updated permissions" msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../mod/connedit.php:498 +#: ../../mod/connedit.php:508 msgid "Recent Activity" msgstr "Kürzliche Aktivitäten" -#: ../../mod/connedit.php:501 +#: ../../mod/connedit.php:511 msgid "View recent posts and comments" msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:737 +#: ../../mod/connedit.php:515 ../../mod/admin.php:785 msgid "Unblock" msgstr "Freigeben" -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:736 +#: ../../mod/connedit.php:515 ../../mod/admin.php:784 msgid "Block" msgstr "Blockieren" -#: ../../mod/connedit.php:510 +#: ../../mod/connedit.php:518 msgid "Block (or Unblock) all communications with this connection" msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 +#: ../../mod/connedit.php:519 +msgid "This connection is blocked!" +msgstr "Die Verbindung ist geblockt!" + +#: ../../mod/connedit.php:523 msgid "Unignore" msgstr "Nicht ignorieren" -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -#: ../../mod/notifications.php:51 +#: ../../mod/connedit.php:523 ../../mod/notifications.php:51 msgid "Ignore" msgstr "Ignorieren" -#: ../../mod/connedit.php:517 +#: ../../mod/connedit.php:526 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" -#: ../../mod/connedit.php:520 +#: ../../mod/connedit.php:527 +msgid "This connection is ignored!" +msgstr "Die Verbindung wird ignoriert!" + +#: ../../mod/connedit.php:531 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: ../../mod/connedit.php:520 +#: ../../mod/connedit.php:531 msgid "Archive" msgstr "Archivieren" -#: ../../mod/connedit.php:523 +#: ../../mod/connedit.php:534 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" -#: ../../mod/connedit.php:526 +#: ../../mod/connedit.php:535 +msgid "This connection is archived!" +msgstr "Die Verbindung ist archiviert!" + +#: ../../mod/connedit.php:539 msgid "Unhide" msgstr "Wieder sichtbar machen" -#: ../../mod/connedit.php:526 +#: ../../mod/connedit.php:539 msgid "Hide" msgstr "Verstecken" -#: ../../mod/connedit.php:529 +#: ../../mod/connedit.php:542 msgid "Hide or Unhide this connection from your other connections" msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../mod/connedit.php:536 +#: ../../mod/connedit.php:543 +msgid "This connection is hidden!" +msgstr "Die Verbindung ist versteckt!" + +#: ../../mod/connedit.php:550 msgid "Delete this connection" msgstr "Verbindung löschen" -#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 +#: ../../mod/connedit.php:631 msgid "Approve this connection" msgstr "Verbindung genehmigen" -#: ../../mod/connedit.php:611 +#: ../../mod/connedit.php:631 msgid "Accept connection to allow communication" msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../mod/connedit.php:627 -#, php-format -msgid "Connections: settings for %s" -msgstr "Verbindungseinstellungen für %s" +#: ../../mod/connedit.php:636 +msgid "Set Affinity" +msgstr "Beziehung festlegen" -#: ../../mod/connedit.php:628 +#: ../../mod/connedit.php:639 +msgid "Set Profile" +msgstr "Profil festlegen" + +#: ../../mod/connedit.php:642 +msgid "Set Affinity & Profile" +msgstr "Beziehung und Profile festlegen" + +#: ../../mod/connedit.php:659 msgid "Apply these permissions automatically" msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../mod/connedit.php:632 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Wende die auf dieser Seite gewählten Berechtigungen auf alle neuen Verbindungen an." +#: ../../mod/connedit.php:661 +msgid "This connection's address is" +msgstr "Die Adresse dieses Kontakts ist" -#: ../../mod/connedit.php:636 +#: ../../mod/connedit.php:664 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet." + +#: ../../mod/connedit.php:666 msgid "Slide to adjust your degree of friendship" msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../mod/connedit.php:637 ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" +#: ../../mod/connedit.php:668 +msgid "Slide to adjust your rating" +msgstr "Verschieben, um Deine Bewertung einzustellen" -#: ../../mod/connedit.php:638 ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" +#: ../../mod/connedit.php:669 ../../mod/connedit.php:674 +msgid "Optionally explain your rating" +msgstr "Optional kannst Du Deine Bewertung begründen" -#: ../../mod/connedit.php:645 +#: ../../mod/connedit.php:671 +msgid "Custom Filter" +msgstr "Benutzerdefinierter Filter" + +#: ../../mod/connedit.php:672 +msgid "Only import posts with this text" +msgstr "Nur Beiträge mit diesem Text importieren" + +#: ../../mod/connedit.php:672 ../../mod/connedit.php:673 msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." -msgstr "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert. Bitte sieh Dir die Zugriffsrechte auf dieser Seite an und ändere sie, wenn Du willst. Dieser Kontakt kann evtl. nicht mit Dir kommunizieren, bevor Du nicht auf dieser Seite auf „Senden“ geklickt hast – erst dieser Klick speichert die gewünschten Zugriffsrechte." +"words one per line or #tags or /patterns/, leave blank to import all posts" +msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Posts zu importieren." -#: ../../mod/connedit.php:648 +#: ../../mod/connedit.php:673 +msgid "Do not import posts with this text" +msgstr "Beiträge mit diesem Text nicht importieren" + +#: ../../mod/connedit.php:675 +msgid "This information is public!" +msgstr "Diese Information ist öffentlich!" + +#: ../../mod/connedit.php:680 +msgid "Connection Pending Approval" +msgstr "Verbindung wartet auf Bestätigung" + +#: ../../mod/connedit.php:681 +msgid "Connection Request" +msgstr "Verbindungsanfrage" + +#: ../../mod/connedit.php:682 +#, php-format +msgid "" +"(%s) would like to connect with you. Please approve this connection to allow" +" communication." +msgstr "(%s) möchte sich mit Dir verbinden. Bitte genehmige die Verbindung, um Kommunikation zu ermöglichen." + +#: ../../mod/connedit.php:683 ../../mod/admin.php:781 +msgid "Approve" +msgstr "Genehmigen" + +#: ../../mod/connedit.php:684 +msgid "Approve Later" +msgstr "Später genehmigen" + +#: ../../mod/connedit.php:687 msgid "inherited" msgstr "geerbt" -#: ../../mod/connedit.php:651 -msgid "Connection has no individual permissions!" -msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" - -#: ../../mod/connedit.php:652 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen." - -#: ../../mod/connedit.php:654 -msgid "Profile Visibility" -msgstr "Sichtbarkeit des Profils" - -#: ../../mod/connedit.php:655 +#: ../../mod/connedit.php:689 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../mod/connedit.php:656 -msgid "Contact Information / Notes" -msgstr "Kontaktinformationen / Notizen" - -#: ../../mod/connedit.php:657 -msgid "Edit contact notes" -msgstr "Kontaktnotizen bearbeiten" - -#: ../../mod/connedit.php:659 +#: ../../mod/connedit.php:691 msgid "Their Settings" msgstr "Deren Einstellungen" -#: ../../mod/connedit.php:660 +#: ../../mod/connedit.php:692 msgid "My Settings" msgstr "Meine Einstellungen" -#: ../../mod/connedit.php:662 -msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." -msgstr "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert, und Du hast keine Voreinstellungen für die Zugriffsrechte von Verbindungen angelegt. Bitte sieht Dir die Einstellungen an, ändere sie bei Bedarf und klicke [Senden], um den Vorgang abzuschließen." - -#: ../../mod/connedit.php:663 -msgid "Clear/Disable Automatic Permissions" -msgstr "Automatische Berechtigungen abschalten/entfernen" - -#: ../../mod/connedit.php:664 -msgid "Forum Members" -msgstr "Forum Mitglieder" - -#: ../../mod/connedit.php:665 -msgid "Soapbox" -msgstr "Marktschreier" - -#: ../../mod/connedit.php:666 -msgid "Full Sharing (typical social network permissions)" -msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" - -#: ../../mod/connedit.php:667 -msgid "Cautious Sharing " -msgstr "Vorsichtiges Teilen" - -#: ../../mod/connedit.php:668 -msgid "Follow Only" -msgstr "Nur folgen" - -#: ../../mod/connedit.php:669 +#: ../../mod/connedit.php:694 msgid "Individual Permissions" msgstr "Individuelle Zugriffsrechte" -#: ../../mod/connedit.php:670 +#: ../../mod/connedit.php:695 msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Einige Berechtigungen werden von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen." +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden." -#: ../../mod/connedit.php:671 -msgid "Advanced Permissions" -msgstr "Zugriffsrechte für Fortgeschrittene" +#: ../../mod/connedit.php:696 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../mod/connedit.php:672 -msgid "Simple Permissions (select one and submit)" -msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" - -#: ../../mod/connedit.php:676 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "%ss Profil besuchen - %s" - -#: ../../mod/connedit.php:677 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freigeben" - -#: ../../mod/connedit.php:678 -msgid "Ignore contact" -msgstr "Kontakt ignorieren" - -#: ../../mod/connedit.php:679 -msgid "Repair URL settings" -msgstr "URL-Einstellungen reparieren" - -#: ../../mod/connedit.php:680 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" - -#: ../../mod/connedit.php:682 -msgid "Delete contact" -msgstr "Kontakt löschen" - -#: ../../mod/connedit.php:686 +#: ../../mod/connedit.php:697 msgid "Last update:" msgstr "Letzte Aktualisierung:" -#: ../../mod/connedit.php:688 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" -#: ../../mod/connedit.php:690 -msgid "Update now" -msgstr "Jetzt aktualisieren" +#: ../../mod/magic.php:69 +msgid "Hub not found." +msgstr "Server nicht gefunden." -#: ../../mod/connedit.php:696 -msgid "Currently blocked" -msgstr "Derzeit blockiert" +#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." -#: ../../mod/connedit.php:697 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" +#: ../../mod/pconfig.php:49 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" -#: ../../mod/connedit.php:698 -msgid "Currently archived" -msgstr "Derzeit archiviert" - -#: ../../mod/connedit.php:699 -msgid "Currently pending" -msgstr "Derzeit anstehend" - -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix – "Das Netzwerk"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Fortfahren" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" - -#: ../../mod/connect.php:88 +#: ../../mod/pconfig.php:50 msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." - -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" - -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." - -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" -msgstr "Bearbeite Beitrag" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eintrag löschen?" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Element nicht verfügbar." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" - -#: ../../mod/dav.php:121 -msgid "RedMatrix channel" -msgstr "RedMatrix-Kanal" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Bild-Anpassung fehlgeschlagen." - -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." - -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bild ist größer als das Limit von %d" - -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Kann Bild nicht verarbeiten." - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto nicht verfügbar." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Datei hochladen:" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Wähle ein Profil:" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" - -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:983 -msgid "or" -msgstr "oder" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "ein Foto aus meinen Fotoalben" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Bild zuschneiden" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Bearbeitung fertigstellen" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Hochladen des Bilds fehlgeschlagen." - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." - -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ungültiges Element." - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." - -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:102 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "Seite nicht gefunden." - -#: ../../mod/network.php:84 -msgid "No such group" -msgstr "Sammlung nicht gefunden" - -#: ../../mod/network.php:122 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" - -#: ../../mod/network.php:176 -msgid "Collection is empty" -msgstr "Sammlung ist leer" - -#: ../../mod/network.php:184 -msgid "Collection: " -msgstr "Sammlung:" - -#: ../../mod/network.php:197 -msgid "Connection: " -msgstr "Verbindung:" - -#: ../../mod/network.php:200 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." - -#: ../../mod/events.php:87 -msgid "Event can not end before it has started." -msgstr "Termin-Ende liegt vor dem Beginn." - -#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 -msgid "Unable to generate preview." -msgstr "Vorschau konnte nicht erzeugt werden." - -#: ../../mod/events.php:96 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." - -#: ../../mod/events.php:114 -msgid "Event not found." -msgstr "Termin nicht gefunden." - -#: ../../mod/events.php:396 -msgid "l, F j" -msgstr "l, j. F" - -#: ../../mod/events.php:418 -msgid "Edit event" -msgstr "Termin bearbeiten" - -#: ../../mod/events.php:419 -msgid "Delete event" -msgstr "Termin löschen" - -#: ../../mod/events.php:473 -msgid "Create New Event" -msgstr "Neuen Termin erstellen" - -#: ../../mod/events.php:474 ../../mod/photos.php:827 -msgid "Previous" -msgstr "Voriges" - -#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 -msgid "Next" -msgstr "Nächste" - -#: ../../mod/events.php:476 -msgid "Export" -msgstr "Exportieren" - -#: ../../mod/events.php:504 -msgid "Event removed" -msgstr "Termin gelöscht" - -#: ../../mod/events.php:507 -msgid "Failed to remove event" -msgstr "Termin konnte nicht gelöscht werden" - -#: ../../mod/events.php:625 -msgid "Event details" -msgstr "Termin-Details" - -#: ../../mod/events.php:626 -msgid "Starting date and Title are required." -msgstr "Startdatum und Titel sind erforderlich." - -#: ../../mod/events.php:628 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" - -#: ../../mod/events.php:630 -msgid "Event Starts:" -msgstr "Termin beginnt:" - -#: ../../mod/events.php:637 -msgid "Finish date/time is not known or not relevant" -msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" - -#: ../../mod/events.php:639 -msgid "Event Finishes:" -msgstr "Termin endet:" - -#: ../../mod/events.php:641 ../../mod/events.php:642 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" - -#: ../../mod/events.php:641 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." - -#: ../../mod/events.php:643 -msgid "Description:" -msgstr "Beschreibung:" - -#: ../../mod/events.php:647 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:649 -msgid "Share this event" -msgstr "Den Termin teilen" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt nun %2$ss %3$s" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." #: ../../mod/pubsites.php:16 msgid "Public Sites" @@ -4611,12 +5003,12 @@ msgstr "Öffentliche Server" #: ../../mod/pubsites.php:19 msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen." +"The listed sites allow public registration for the $Projectname network. All" +" sites in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some sites may require subscription or" +" provide tiered service plans. The provider links may " +"provide additional details." +msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung bei $Projectname. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen anderen Servern ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den verlinkten Seiten könnten nähere Details dazu stehen." #: ../../mod/pubsites.php:25 msgid "Rate this hub" @@ -4650,47 +5042,2423 @@ msgstr "Bewerten" msgid "View ratings" msgstr "Bewertungen ansehen" -#: ../../mod/settings.php:73 +#: ../../mod/filestorage.php:82 +msgid "Permission Denied." +msgstr "Zugriff verweigert." + +#: ../../mod/filestorage.php:98 +msgid "File not found." +msgstr "Datei nicht gefunden." + +#: ../../mod/filestorage.php:141 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" + +#: ../../mod/filestorage.php:150 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" + +#: ../../mod/filestorage.php:151 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" + +#: ../../mod/filestorage.php:152 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" + +#: ../../mod/filestorage.php:154 +msgid "Copy/paste this code to attach file to a post" +msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" + +#: ../../mod/filestorage.php:155 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" + +#: ../../mod/filestorage.php:157 +msgid "Share this file" +msgstr "Diese Datei freigeben" + +#: ../../mod/filestorage.php:158 +msgid "Show URL to this file" +msgstr "URL zu dieser Datei anzeigen" + +#: ../../mod/filestorage.php:159 +msgid "Notify your contacts about this file" +msgstr "Meine Kontakte über diese Datei benachrichtigen" + +#: ../../mod/layouts.php:121 ../../mod/layouts.php:179 +#: ../../mod/editlayout.php:161 +msgid "Layout Name" +msgstr "Layout-Name" + +#: ../../mod/layouts.php:124 ../../mod/editlayout.php:159 +msgid "Layout Description (Optional)" +msgstr "Layout-Beschreibung (optional)" + +#: ../../mod/layouts.php:176 +msgid "Comanche page description language help" +msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" + +#: ../../mod/layouts.php:180 +msgid "Layout Description" +msgstr "Layout-Beschreibung" + +#: ../../mod/layouts.php:185 +msgid "Download PDL file" +msgstr "PDL-Datei herunterladen" + +#: ../../mod/poke.php:164 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" + +#: ../../mod/poke.php:165 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" + +#: ../../mod/poke.php:166 +msgid "Recipient" +msgstr "Empfänger" + +#: ../../mod/poke.php:167 +msgid "Choose what you wish to do to recipient" +msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" + +#: ../../mod/poke.php:170 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: ../../mod/network.php:91 +msgid "No such group" +msgstr "Sammlung nicht gefunden" + +#: ../../mod/network.php:131 +msgid "No such channel" +msgstr "Kanal nicht gefunden" + +#: ../../mod/network.php:136 +msgid "forum" +msgstr "Forum" + +#: ../../mod/network.php:148 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" + +#: ../../mod/network.php:207 +msgid "Collection is empty" +msgstr "Sammlung ist leer" + +#: ../../mod/network.php:216 +msgid "Collection: " +msgstr "Sammlung:" + +#: ../../mod/network.php:242 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." + +#: ../../mod/chat.php:19 ../../mod/channel.php:25 +msgid "You must be logged in to see this page." +msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." + +#: ../../mod/chat.php:171 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" + +#: ../../mod/chat.php:182 +msgid "Leave Room" +msgstr "Raum verlassen" + +#: ../../mod/chat.php:183 +msgid "Delete This Room" +msgstr "Diesen Raum löschen" + +#: ../../mod/chat.php:184 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" + +#: ../../mod/chat.php:185 +msgid "I am online" +msgstr "Ich bin online" + +#: ../../mod/chat.php:187 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" + +#: ../../mod/chat.php:205 ../../mod/chat.php:227 +msgid "New Chatroom" +msgstr "Neuer Chatraum" + +#: ../../mod/chat.php:206 +msgid "Chatroom Name" +msgstr "Name des Chatraums" + +#: ../../mod/chat.php:223 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" + +#: ../../mod/search.php:209 +#, php-format +msgid "Items tagged with: %s" +msgstr "Beiträge mit Schlagwort: %s" + +#: ../../mod/search.php:211 +#, php-format +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" + +#: ../../mod/message.php:34 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: ../../mod/channel.php:97 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." + +#: ../../mod/editpost.php:20 ../../mod/editblock.php:78 +#: ../../mod/editblock.php:94 ../../mod/editlayout.php:76 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Element nicht gefunden" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." + +#: ../../mod/editpost.php:55 +msgid "Delete item?" +msgstr "Eintrag löschen?" + +#: ../../mod/editpost.php:122 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:185 +msgid "Insert YouTube video" +msgstr "YouTube-Video einfügen" + +#: ../../mod/editpost.php:123 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:186 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis [.ogg]-Video einfügen" + +#: ../../mod/editpost.php:124 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:187 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis [.ogg]-Audio einfügen" + +#: ../../mod/editpost.php:165 ../../mod/rpost.php:128 +msgid "Edit post" +msgstr "Bearbeite Beitrag" + +#: ../../mod/dreport.php:15 +msgid "Invalid message" +msgstr "Ungültige Beitrags-ID (mid)" + +#: ../../mod/dreport.php:25 +msgid "no results" +msgstr "keine Ergebnisse" + +#: ../../mod/dreport.php:30 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Zustellungsbericht für %1$s" + +#: ../../mod/dreport.php:39 +msgid "channel sync processed" +msgstr "Kanal-Sync verarbeitet" + +#: ../../mod/dreport.php:43 +msgid "queued" +msgstr "zur Warteschlange hinzugefügt" + +#: ../../mod/dreport.php:47 +msgid "posted" +msgstr "zugestellt" + +#: ../../mod/dreport.php:51 +msgid "accepted for delivery" +msgstr "für Zustellung akzeptiert" + +#: ../../mod/dreport.php:55 +msgid "updated" +msgstr "aktualisiert" + +#: ../../mod/dreport.php:58 +msgid "update ignored" +msgstr "Aktualisierung ignoriert" + +#: ../../mod/dreport.php:61 +msgid "permission denied" +msgstr "Zugriff verweigert" + +#: ../../mod/editblock.php:118 +msgid "Delete block?" +msgstr "Block löschen?" + +#: ../../mod/editblock.php:180 +msgid "Edit Block" +msgstr "Block bearbeiten" + +#: ../../mod/home.php:57 ../../mod/home.php:63 ../../mod/siteinfo.php:157 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../mod/home.php:73 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" + +#: ../../mod/item.php:174 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." + +#: ../../mod/item.php:407 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." + +#: ../../mod/item.php:447 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." + +#: ../../mod/item.php:896 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." + +#: ../../mod/item.php:1163 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." + +#: ../../mod/item.php:1170 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." + +#: ../../mod/item.php:1177 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." + +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Theme-Einstellungen aktualisiert." + +#: ../../mod/admin.php:160 +msgid "# Accounts" +msgstr "Anzahl der Konten" + +#: ../../mod/admin.php:161 +msgid "# blocked accounts" +msgstr "Anzahl der blockierten Konten" + +#: ../../mod/admin.php:162 +msgid "# expired accounts" +msgstr "Anzahl der abgelaufenen Konten" + +#: ../../mod/admin.php:163 +msgid "# expiring accounts" +msgstr "Anzahl der ablaufenden Konten" + +#: ../../mod/admin.php:174 +msgid "# Channels" +msgstr "Anzahl der Kanäle" + +#: ../../mod/admin.php:175 +msgid "# primary" +msgstr "Anzahl der primären Kanäle" + +#: ../../mod/admin.php:176 +msgid "# clones" +msgstr "Anzahl der Klone" + +#: ../../mod/admin.php:182 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" + +#: ../../mod/admin.php:198 ../../mod/admin.php:409 ../../mod/admin.php:506 +#: ../../mod/admin.php:774 ../../mod/admin.php:938 ../../mod/admin.php:1030 +#: ../../mod/admin.php:1070 ../../mod/admin.php:1230 ../../mod/admin.php:1264 +#: ../../mod/admin.php:1349 +msgid "Administration" +msgstr "Administration" + +#: ../../mod/admin.php:199 +msgid "Summary" +msgstr "Zusammenfassung" + +#: ../../mod/admin.php:202 +msgid "Registered accounts" +msgstr "Registrierte Konten" + +#: ../../mod/admin.php:203 ../../mod/admin.php:510 +msgid "Pending registrations" +msgstr "Ausstehende Registrierungen" + +#: ../../mod/admin.php:204 +msgid "Registered channels" +msgstr "Registrierte Kanäle" + +#: ../../mod/admin.php:205 ../../mod/admin.php:511 +msgid "Active plugins" +msgstr "Aktive Plug-Ins" + +#: ../../mod/admin.php:206 +msgid "Version" +msgstr "Version" + +#: ../../mod/admin.php:321 +msgid "Site settings updated." +msgstr "Site-Einstellungen aktualisiert." + +#: ../../mod/admin.php:358 ../../mod/settings.php:790 +msgid "mobile" +msgstr "mobil" + +#: ../../mod/admin.php:360 +msgid "experimental" +msgstr "experimentell" + +#: ../../mod/admin.php:362 +msgid "unsupported" +msgstr "nicht unterstützt" + +#: ../../mod/admin.php:387 +msgid "Yes - with approval" +msgstr "Ja - mit Zustimmung" + +#: ../../mod/admin.php:393 +msgid "My site is not a public server" +msgstr "Mein Server ist kein öffentlicher Server" + +#: ../../mod/admin.php:394 +msgid "My site has paid access only" +msgstr "Mein Server erlaubt nur bezahlten Zugang" + +#: ../../mod/admin.php:395 +msgid "My site has free access only" +msgstr "Mein Server erlaubt ausschließlich freien Zugang" + +#: ../../mod/admin.php:396 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" + +#: ../../mod/admin.php:412 ../../mod/register.php:207 +msgid "Registration" +msgstr "Registrierung" + +#: ../../mod/admin.php:413 +msgid "File upload" +msgstr "Dateiupload" + +#: ../../mod/admin.php:414 +msgid "Policies" +msgstr "Richtlinien" + +#: ../../mod/admin.php:419 +msgid "Site name" +msgstr "Seitenname" + +#: ../../mod/admin.php:420 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../mod/admin.php:421 +msgid "Administrator Information" +msgstr "Administrator-Informationen" + +#: ../../mod/admin.php:421 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." + +#: ../../mod/admin.php:422 +msgid "System language" +msgstr "System-Sprache" + +#: ../../mod/admin.php:423 +msgid "System theme" +msgstr "System-Theme" + +#: ../../mod/admin.php:423 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" + +#: ../../mod/admin.php:424 +msgid "Mobile system theme" +msgstr "Mobile System-Theme:" + +#: ../../mod/admin.php:424 +msgid "Theme for mobile devices" +msgstr "Theme für mobile Geräte" + +#: ../../mod/admin.php:426 +msgid "Allow Feeds as Connections" +msgstr "Feeds als Verbindungen erlauben" + +#: ../../mod/admin.php:426 +msgid "(Heavy system resource usage)" +msgstr "(führt zu hoher Systemlast)" + +#: ../../mod/admin.php:427 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" + +#: ../../mod/admin.php:427 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." + +#: ../../mod/admin.php:428 +msgid "Does this site allow new member registration?" +msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" + +#: ../../mod/admin.php:429 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" + +#: ../../mod/admin.php:430 +msgid "Register text" +msgstr "Registrierungstext" + +#: ../../mod/admin.php:430 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." + +#: ../../mod/admin.php:431 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" + +#: ../../mod/admin.php:431 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." + +#: ../../mod/admin.php:432 +msgid "Preserve site homepage URL" +msgstr "Homepage-URL schützen" + +#: ../../mod/admin.php:432 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." + +#: ../../mod/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "Konten gelten nach X Tagen als unbenutzt" + +#: ../../mod/admin.php:433 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." + +#: ../../mod/admin.php:434 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" + +#: ../../mod/admin.php:434 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." + +#: ../../mod/admin.php:435 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" + +#: ../../mod/admin.php:435 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." + +#: ../../mod/admin.php:436 +msgid "Not allowed email domains" +msgstr "Nicht erlaubte Domains für E-Mails" + +#: ../../mod/admin.php:436 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." + +#: ../../mod/admin.php:437 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" + +#: ../../mod/admin.php:437 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist." + +#: ../../mod/admin.php:438 +msgid "Verify Email Addresses" +msgstr "E-Mail-Adressen überprüfen" + +#: ../../mod/admin.php:438 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." + +#: ../../mod/admin.php:439 +msgid "Force publish" +msgstr "Veröffentlichung erzwingen" + +#: ../../mod/admin.php:439 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." + +#: ../../mod/admin.php:440 +msgid "Disable discovery tab" +msgstr "Den „Entdecken“-Reiter ausblenden" + +#: ../../mod/admin.php:440 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden." + +#: ../../mod/admin.php:441 +msgid "login on Homepage" +msgstr "Anmeldemaske auf der Homepage" + +#: ../../mod/admin.php:441 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." + +#: ../../mod/admin.php:443 +msgid "Proxy user" +msgstr "Proxy Benutzer" + +#: ../../mod/admin.php:444 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: ../../mod/admin.php:445 +msgid "Network timeout" +msgstr "Netzwerk-Timeout" + +#: ../../mod/admin.php:445 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." + +#: ../../mod/admin.php:446 +msgid "Delivery interval" +msgstr "Auslieferung Intervall" + +#: ../../mod/admin.php:446 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." + +#: ../../mod/admin.php:447 +msgid "Deliveries per process" +msgstr "Zustellungen pro Prozess" + +#: ../../mod/admin.php:447 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." + +#: ../../mod/admin.php:448 +msgid "Poll interval" +msgstr "Abfrageintervall" + +#: ../../mod/admin.php:448 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." + +#: ../../mod/admin.php:449 +msgid "Maximum Load Average" +msgstr "Maximales Load Average" + +#: ../../mod/admin.php:449 +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:450 +msgid "Expiration period in days for imported (matrix/network) content" +msgstr "Zeitraum in Tagen, nach dem importierte Inhalte (aus dem Grid/Netzwerk) gelöscht werden sollen" + +#: ../../mod/admin.php:450 +msgid "0 for no expiration of imported content" +msgstr "0 = keine Löschung importierter Inhalte" + +#: ../../mod/admin.php:498 +msgid "No server found" +msgstr "Kein Server gefunden" + +#: ../../mod/admin.php:505 ../../mod/admin.php:788 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:505 +msgid "for channel" +msgstr "für Kanal" + +#: ../../mod/admin.php:505 +msgid "on server" +msgstr "auf Server" + +#: ../../mod/admin.php:505 +msgid "Status" +msgstr "Status" + +#: ../../mod/admin.php:507 +msgid "Server" +msgstr "Server" + +#: ../../mod/admin.php:524 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" + +#: ../../mod/admin.php:534 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." + +#: ../../mod/admin.php:537 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s wurde erfolgreich ausgeführt." + +#: ../../mod/admin.php:541 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." + +#: ../../mod/admin.php:544 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-Funktion %s konnte nicht gefunden werden." + +#: ../../mod/admin.php:560 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." + +#: ../../mod/admin.php:564 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Aktualisierungen" + +#: ../../mod/admin.php:566 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" + +#: ../../mod/admin.php:567 +msgid "Attempt to execute this update step automatically" +msgstr "Versuche, diesen Updateschritt automatisch auszuführen" + +#: ../../mod/admin.php:599 +msgid "Queue Statistics" +msgstr "Warteschlangenstatistiken" + +#: ../../mod/admin.php:600 +msgid "Total Entries" +msgstr "Einträge insgesamt" + +#: ../../mod/admin.php:601 +msgid "Priority" +msgstr "Priorität" + +#: ../../mod/admin.php:602 +msgid "Destination URL" +msgstr "Ziel-URL" + +#: ../../mod/admin.php:603 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markieren" + +#: ../../mod/admin.php:604 +msgid "Empty queue for this hub" +msgstr "Warteschlange für diesen Hub leeren" + +#: ../../mod/admin.php:605 +msgid "Last known contact" +msgstr "Letzter Kontakt" + +#: ../../mod/admin.php:641 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s Konto blockiert/freigegeben" +msgstr[1] "%s Konten blockiert/freigegeben" + +#: ../../mod/admin.php:649 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s Konto gelöscht" +msgstr[1] "%s Konten gelöscht" + +#: ../../mod/admin.php:685 +msgid "Account not found" +msgstr "Konto nicht gefunden" + +#: ../../mod/admin.php:697 +#, php-format +msgid "Account '%s' deleted" +msgstr "Konto '%s' gelöscht" + +#: ../../mod/admin.php:705 +#, php-format +msgid "Account '%s' blocked" +msgstr "Konto '%s' blockiert" + +#: ../../mod/admin.php:713 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Konto '%s' freigegeben" + +#: ../../mod/admin.php:775 ../../mod/admin.php:787 +msgid "Users" +msgstr "Benutzer" + +#: ../../mod/admin.php:777 ../../mod/admin.php:941 +msgid "select all" +msgstr "Alle auswählen" + +#: ../../mod/admin.php:778 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" + +#: ../../mod/admin.php:779 +msgid "Request date" +msgstr "Antragsdatum" + +#: ../../mod/admin.php:780 +msgid "No registrations." +msgstr "Keine Registrierungen." + +#: ../../mod/admin.php:782 +msgid "Deny" +msgstr "Verweigern" + +#: ../../mod/admin.php:788 +msgid "Register date" +msgstr "Registrierungs-Datum" + +#: ../../mod/admin.php:788 +msgid "Last login" +msgstr "Letzte Anmeldung" + +#: ../../mod/admin.php:788 +msgid "Expires" +msgstr "Verfällt" + +#: ../../mod/admin.php:788 +msgid "Service Class" +msgstr "Service-Klasse" + +#: ../../mod/admin.php:790 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?" + +#: ../../mod/admin.php:791 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" + +#: ../../mod/admin.php:827 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s Kanal gesperrt/freigegeben" +msgstr[1] "%s Kanäle gesperrt/freigegeben" + +#: ../../mod/admin.php:836 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "Code für %s Kanal gesperrt/freigegeben" +msgstr[1] "Code für %s Kanäle gesperrt/freigegeben" + +#: ../../mod/admin.php:843 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s Kanal gelöscht" +msgstr[1] "%s Kanäle gelöscht" + +#: ../../mod/admin.php:863 +msgid "Channel not found" +msgstr "Kanal nicht gefunden" + +#: ../../mod/admin.php:874 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanal '%s' gelöscht" + +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanal '%s' gesperrt" + +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" + +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Code für Kanal '%s' freigegeben" + +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Code für Kanal '%s' gesperrt" + +#: ../../mod/admin.php:943 +msgid "Censor" +msgstr "Sperren" + +#: ../../mod/admin.php:944 +msgid "Uncensor" +msgstr "Freigeben" + +#: ../../mod/admin.php:945 +msgid "Allow Code" +msgstr "Code erlauben" + +#: ../../mod/admin.php:946 +msgid "Disallow Code" +msgstr "Code sperren" + +#: ../../mod/admin.php:948 +msgid "UID" +msgstr "UID" + +#: ../../mod/admin.php:948 ../../mod/profiles.php:447 +msgid "Address" +msgstr "Adresse" + +#: ../../mod/admin.php:950 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" + +#: ../../mod/admin.php:951 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" + +#: ../../mod/admin.php:991 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-In %s deaktiviert." + +#: ../../mod/admin.php:995 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-In %s aktiviert." + +#: ../../mod/admin.php:1005 ../../mod/admin.php:1203 +msgid "Disable" +msgstr "Deaktivieren" + +#: ../../mod/admin.php:1008 ../../mod/admin.php:1205 +msgid "Enable" +msgstr "Aktivieren" + +#: ../../mod/admin.php:1032 ../../mod/admin.php:1232 +msgid "Toggle" +msgstr "Umschalten" + +#: ../../mod/admin.php:1040 ../../mod/admin.php:1242 +msgid "Author: " +msgstr "Autor: " + +#: ../../mod/admin.php:1041 ../../mod/admin.php:1243 +msgid "Maintainer: " +msgstr "Betreuer:" + +#: ../../mod/admin.php:1168 +msgid "No themes found." +msgstr "Keine Theme gefunden." + +#: ../../mod/admin.php:1224 +msgid "Screenshot" +msgstr "Bildschirmfoto" + +#: ../../mod/admin.php:1270 +msgid "[Experimental]" +msgstr "[Experimentell]" + +#: ../../mod/admin.php:1271 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" + +#: ../../mod/admin.php:1295 +msgid "Log settings updated." +msgstr "Protokoll-Einstellungen aktualisiert." + +#: ../../mod/admin.php:1352 +msgid "Clear" +msgstr "Leeren" + +#: ../../mod/admin.php:1358 +msgid "Debugging" +msgstr "Debugging" + +#: ../../mod/admin.php:1359 +msgid "Log file" +msgstr "Protokolldatei" + +#: ../../mod/admin.php:1359 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis." + +#: ../../mod/admin.php:1360 +msgid "Log level" +msgstr "Protokollstufe" + +#: ../../mod/admin.php:1406 +msgid "New Profile Field" +msgstr "Neues Profilfeld" + +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "Field nickname" +msgstr "Kurzname für das Feld" + +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "System name of field" +msgstr "Systemname des Feldes" + +#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 +msgid "Input type" +msgstr "Art des Inhalts" + +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Field Name" +msgstr "Feldname" + +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Label on profile pages" +msgstr "Bezeichnung auf Profilseiten" + +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Help text" +msgstr "Hilfetext" + +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Additional info (optional)" +msgstr "Zusätzliche Informationen (optional)" + +#: ../../mod/admin.php:1420 +msgid "Field definition not found" +msgstr "Feld-Definition nicht gefunden" + +#: ../../mod/admin.php:1426 +msgid "Edit Profile Field" +msgstr "Profilfeld bearbeiten" + +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installiert." + +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Fehlerhafte App." + +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Code einbetten" + +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "App bearbeiten" + +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "App erstellen" + +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Name der App" + +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" + +#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 +msgid "Description" +msgstr "Beschreibung" + +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL zum Icon" + +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" + +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versions-ID" + +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Preis der App" + +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" + +#: ../../mod/menu.php:45 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." + +#: ../../mod/menu.php:56 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." + +#: ../../mod/menu.php:94 ../../mod/menu.php:106 +msgid "Menu Name" +msgstr "Name des Menüs" + +#: ../../mod/menu.php:94 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" + +#: ../../mod/menu.php:95 ../../mod/menu.php:107 +msgid "Menu Title" +msgstr "Menütitel" + +#: ../../mod/menu.php:95 +msgid "Visible on webpage - leave empty for no title" +msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" + +#: ../../mod/menu.php:96 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" + +#: ../../mod/menu.php:96 ../../mod/menu.php:153 +msgid "Menu may be used to store saved bookmarks" +msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" + +#: ../../mod/menu.php:97 ../../mod/menu.php:155 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" + +#: ../../mod/menu.php:109 +msgid "Drop" +msgstr "Löschen" + +#: ../../mod/menu.php:113 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" + +#: ../../mod/menu.php:115 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" + +#: ../../mod/menu.php:116 ../../mod/menu.php:150 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" + +#: ../../mod/menu.php:117 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" + +#: ../../mod/menu.php:132 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." + +#: ../../mod/menu.php:145 +msgid "Edit Menu" +msgstr "Menü bearbeiten" + +#: ../../mod/menu.php:149 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" + +#: ../../mod/menu.php:151 +msgid "Menu name" +msgstr "Menü Name" + +#: ../../mod/menu.php:151 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" + +#: ../../mod/menu.php:152 +msgid "Menu title" +msgstr "Menü Titel" + +#: ../../mod/menu.php:152 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" + +#: ../../mod/menu.php:153 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" + +#: ../../mod/notify.php:53 ../../mod/notifications.php:94 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." + +#: ../../mod/notify.php:57 ../../mod/notifications.php:98 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" + +#: ../../mod/page.php:126 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Kanal hinzufügen" + +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "Ein Kanal ist Deine eigene Sammlung von zusammengehörigen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deines Hubs zulässt." + +#: ../../mod/new_channel.php:112 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Name des Kanals" + +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " + +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" + +#: ../../mod/new_channel.php:115 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst." + +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Oder importiere einen bestehenden Kanal von einem anderen Server" + +#: ../../mod/new_channel.php:118 +msgid "" +"Please choose a channel type (such as social networking or community forum) " +"and privacy requirements so we can select the best permissions for you" +msgstr "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können" + +#: ../../mod/new_channel.php:119 +msgid "Channel Type" +msgstr "Kanaltyp" + +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" +msgstr "Mehr Informationen über Rollen" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ungültiger Anfrage-Identifikator." + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Verwerfen" + +#: ../../mod/pdledit.php:13 +msgid "Layout updated." +msgstr "Layout aktualisiert." + +#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 +msgid "Edit System Page Description" +msgstr "Systemseitenbeschreibung bearbeiten" + +#: ../../mod/pdledit.php:48 +msgid "Layout not found." +msgstr "Layout nicht gefunden." + +#: ../../mod/pdledit.php:54 +msgid "Module Name:" +msgstr "Modulname:" + +#: ../../mod/pdledit.php:55 +msgid "Layout Help" +msgstr "Layout-Hilfe" + +#: ../../mod/subthread.php:102 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt nun %2$ss %3$s" + +#: ../../mod/lostpass.php:15 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: ../../mod/lostpass.php:29 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." + +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" + +#: ../../mod/lostpass.php:40 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" + +#: ../../mod/lostpass.php:63 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." + +#: ../../mod/lostpass.php:86 ../../boot.php:1505 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" + +#: ../../mod/lostpass.php:87 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." + +#: ../../mod/lostpass.php:88 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: ../../mod/lostpass.php:89 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" + +#: ../../mod/lostpass.php:90 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" + +#: ../../mod/lostpass.php:91 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." + +#: ../../mod/lostpass.php:108 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: ../../mod/lostpass.php:123 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" + +#: ../../mod/lostpass.php:124 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." + +#: ../../mod/lostpass.php:125 +msgid "Email Address" +msgstr "E-Mail Adresse" + +#: ../../mod/lostpass.php:126 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ../../mod/photos.php:79 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." + +#: ../../mod/photos.php:100 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../mod/photos.php:127 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../mod/photos.php:170 ../../mod/photos.php:970 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../mod/photos.php:464 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" + +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." + +#: ../../mod/photos.php:552 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." + +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." + +#: ../../mod/photos.php:583 +msgid "Upload Photos" +msgstr "Fotos hochladen" + +#: ../../mod/photos.php:587 +msgid "Enter an album name" +msgstr "Namen für ein neues Album eingeben" + +#: ../../mod/photos.php:588 +msgid "or select an existing album (doubleclick)" +msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" + +#: ../../mod/photos.php:589 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" + +#: ../../mod/photos.php:616 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" + +#: ../../mod/photos.php:660 ../../mod/photos.php:1197 +#: ../../mod/photos.php:1214 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" + +#: ../../mod/photos.php:688 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" + +#: ../../mod/photos.php:690 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" + +#: ../../mod/photos.php:714 ../../mod/photos.php:1247 +msgid "View Photo" +msgstr "Foto ansehen" + +#: ../../mod/photos.php:743 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../mod/photos.php:788 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." + +#: ../../mod/photos.php:790 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../mod/photos.php:848 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" + +#: ../../mod/photos.php:855 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:866 ../../mod/events.php:528 +msgid "Previous" +msgstr "Voriges" + +#: ../../mod/photos.php:870 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" + +#: ../../mod/photos.php:875 ../../mod/events.php:529 ../../mod/setup.php:285 +msgid "Next" +msgstr "Nächste" + +#: ../../mod/photos.php:915 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Entferne" + +#: ../../mod/photos.php:949 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../mod/photos.php:951 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" + +#: ../../mod/photos.php:952 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" + +#: ../../mod/photos.php:955 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" + +#: ../../mod/photos.php:956 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" + +#: ../../mod/photos.php:959 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../mod/photos.php:961 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" + +#: ../../mod/photos.php:965 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" + +#: ../../mod/photos.php:968 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" + +#: ../../mod/photos.php:1160 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" + +#: ../../mod/photos.php:1165 +msgid "Map" +msgstr "Karte" + +#: ../../mod/photos.php:1253 +msgid "View Album" +msgstr "Album ansehen" + +#: ../../mod/photos.php:1276 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../mod/dav.php:121 +msgid "$Projectname channel" +msgstr "$Projectname-Kanal" + +#: ../../mod/rate.php:157 +msgid "Website:" +msgstr "Webseite:" + +#: ../../mod/rate.php:160 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" + +#: ../../mod/rate.php:161 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" + +#: ../../mod/rate.php:162 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" + +#: ../../mod/events.php:21 +msgid "Calendar entries imported." +msgstr "Kalendereinträge wurden importiert." + +#: ../../mod/events.php:23 +msgid "No calendar entries found." +msgstr "Keine Kalendereinträge gefunden." + +#: ../../mod/events.php:96 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." + +#: ../../mod/events.php:98 ../../mod/events.php:107 ../../mod/events.php:127 +msgid "Unable to generate preview." +msgstr "Vorschau konnte nicht erzeugt werden." + +#: ../../mod/events.php:105 +msgid "Event title and start time are required." +msgstr "Titel und Startzeit des Termins sind erforderlich." + +#: ../../mod/events.php:125 ../../mod/events.php:250 +msgid "Event not found." +msgstr "Termin nicht gefunden." + +#: ../../mod/events.php:448 +msgid "l, F j" +msgstr "l, j. F" + +#: ../../mod/events.php:470 +msgid "Edit event" +msgstr "Termin bearbeiten" + +#: ../../mod/events.php:472 +msgid "Delete event" +msgstr "Termin löschen" + +#: ../../mod/events.php:506 +msgid "calendar" +msgstr "Kalender" + +#: ../../mod/events.php:527 +msgid "Create New Event" +msgstr "Neuen Termin erstellen" + +#: ../../mod/events.php:530 +msgid "Export" +msgstr "Exportieren" + +#: ../../mod/events.php:533 +msgid "Import" +msgstr "Import" + +#: ../../mod/events.php:564 +msgid "Event removed" +msgstr "Termin gelöscht" + +#: ../../mod/events.php:567 +msgid "Failed to remove event" +msgstr "Termin konnte nicht gelöscht werden" + +#: ../../mod/events.php:681 +msgid "Event details" +msgstr "Termin-Details" + +#: ../../mod/events.php:682 +msgid "Starting date and Title are required." +msgstr "Startdatum und Titel sind erforderlich." + +#: ../../mod/events.php:684 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" + +#: ../../mod/events.php:686 +msgid "Event Starts:" +msgstr "Termin beginnt:" + +#: ../../mod/events.php:693 +msgid "Finish date/time is not known or not relevant" +msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" + +#: ../../mod/events.php:695 +msgid "Event Finishes:" +msgstr "Termin endet:" + +#: ../../mod/events.php:697 ../../mod/events.php:698 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" + +#: ../../mod/events.php:697 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." + +#: ../../mod/events.php:703 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:705 +msgid "Share this event" +msgstr "Den Termin teilen" + +#: ../../mod/impel.php:192 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" + +#: ../../mod/impel.php:195 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s fehlgeschlagen" + +#: ../../mod/probe.php:24 ../../mod/probe.php:30 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" + +#: ../../mod/match.php:22 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" + +#: ../../mod/match.php:31 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." + +#: ../../mod/match.php:63 +msgid "is interested in:" +msgstr "interessiert sich für:" + +#: ../../mod/match.php:70 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: ../../mod/profile_photo.php:111 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." + +#: ../../mod/profile_photo.php:165 +msgid "Image resize failed." +msgstr "Bild-Anpassung fehlgeschlagen." + +#: ../../mod/profile_photo.php:209 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." + +#: ../../mod/profile_photo.php:247 +msgid "Image upload failed." +msgstr "Hochladen des Bilds fehlgeschlagen." + +#: ../../mod/profile_photo.php:266 +msgid "Unable to process image." +msgstr "Kann Bild nicht verarbeiten." + +#: ../../mod/profile_photo.php:294 +msgid "female" +msgstr "weiblich" + +#: ../../mod/profile_photo.php:295 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s hat ihr %2$s aktualisiert" + +#: ../../mod/profile_photo.php:296 +msgid "male" +msgstr "männlich" + +#: ../../mod/profile_photo.php:297 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s hat sein %2$s aktualisiert" + +#: ../../mod/profile_photo.php:299 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s hat sein/ihr %2$s aktualisiert" + +#: ../../mod/profile_photo.php:301 +msgid "profile photo" +msgstr "Profilfoto" + +#: ../../mod/profile_photo.php:365 ../../mod/profile_photo.php:406 +msgid "Photo not available." +msgstr "Foto nicht verfügbar." + +#: ../../mod/profile_photo.php:447 +msgid "Upload File:" +msgstr "Datei hochladen:" + +#: ../../mod/profile_photo.php:448 +msgid "Select a profile:" +msgstr "Wähle ein Profil:" + +#: ../../mod/profile_photo.php:449 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" + +#: ../../mod/profile_photo.php:454 ../../mod/settings.php:972 +msgid "or" +msgstr "oder" + +#: ../../mod/profile_photo.php:454 +msgid "skip this step" +msgstr "diesen Schritt überspringen" + +#: ../../mod/profile_photo.php:454 +msgid "select a photo from your photo albums" +msgstr "ein Foto aus meinen Fotoalben" + +#: ../../mod/profile_photo.php:470 +msgid "Crop Image" +msgstr "Bild zuschneiden" + +#: ../../mod/profile_photo.php:471 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." + +#: ../../mod/profile_photo.php:473 +msgid "Done Editing" +msgstr "Bearbeitung fertigstellen" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal hinzugefügt." + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Schlagwort entfernt" + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" + +#: ../../mod/ratings.php:69 +msgid "No ratings" +msgstr "Keine Bewertungen" + +#: ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Bewertungen" + +#: ../../mod/ratings.php:100 +msgid "Rating: " +msgstr "Bewertung: " + +#: ../../mod/ratings.php:101 +msgid "Website: " +msgstr "Webseite: " + +#: ../../mod/ratings.php:103 +msgid "Description: " +msgstr "Beschreibung: " + +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Diese Website ist kein Verzeichnis-Server" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Konnte den Empfänger nicht finden." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." + +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../mod/mail.php:138 +msgid "Message deleted." +msgstr "Nachricht gelöscht." + +#: ../../mod/mail.php:154 +msgid "Message recalled." +msgstr "Nachricht widerrufen." + +#: ../../mod/mail.php:221 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: ../../mod/mail.php:222 ../../mod/mail.php:352 +msgid "To:" +msgstr "An:" + +#: ../../mod/mail.php:227 ../../mod/mail.php:341 ../../mod/mail.php:354 +msgid "Subject:" +msgstr "Betreff:" + +#: ../../mod/mail.php:231 ../../mod/mail.php:357 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../mod/mail.php:238 +msgid "Send" +msgstr "Absenden" + +#: ../../mod/mail.php:322 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: ../../mod/mail.php:323 +msgid "Recall message" +msgstr "Nachricht widerrufen" + +#: ../../mod/mail.php:325 +msgid "Message has been recalled." +msgstr "Die Nachricht wurde widerrufen." + +#: ../../mod/mail.php:345 +msgid "Delete Conversation" +msgstr "Unterhaltung löschen" + +#: ../../mod/mail.php:347 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." + +#: ../../mod/mail.php:351 +msgid "Send Reply" +msgstr "Antwort senden" + +#: ../../mod/webpages.php:191 +msgid "Page Title" +msgstr "Seitentitel" + +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." + +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." + +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." + +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." + +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registrierung auf einem anderen, angeschlossenen Server" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Passwort" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" + +#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 +msgid "Block Name" +msgstr "Block-Name" + +#: ../../mod/blocks.php:149 +msgid "Block Title" +msgstr "Titel des Blocks" + +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." + +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Dieses Konto löschen" + +#: ../../mod/removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." + +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" + +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt" + +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:697 +msgid "Remove Account" +msgstr "Konto entfernen" + +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "Keine Dienstklassenbeschränkungen gefunden." + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Element nicht verfügbar." + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "Quelle erstellt." + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "Quelle aktualisiert." + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "*" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +msgstr "Neue Quelle" + +#: ../../mod/sources.php:101 ../../mod/sources.php:133 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "Quelle nicht gefunden." + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "Quelle bearbeiten" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "Quelle löschen" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "Quelle gelöscht" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "Konnte die Quelle nicht löschen." + +#: ../../mod/lockview.php:37 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." + +#: ../../mod/lockview.php:58 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: ../../mod/acl.php:222 +msgid "network" +msgstr "Netzwerk" + +#: ../../mod/acl.php:232 +msgid "RSS" +msgstr "RSS" + +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Bitte melde dich an." + +#: ../../mod/rmagic.php:40 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." + +#: ../../mod/rmagic.php:40 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" + +#: ../../mod/rmagic.php:44 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." + +#: ../../mod/rmagic.php:84 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" + +#: ../../mod/rmagic.php:85 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" + +#: ../../mod/rmagic.php:86 +msgid "Authenticate" +msgstr "Authentifizieren" + +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "Dieser Verzeichnis-Server benötigt ein Zugangstoken" + +#: ../../mod/siteinfo.php:111 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: ../../mod/siteinfo.php:132 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" + +#: ../../mod/siteinfo.php:145 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" + +#: ../../mod/siteinfo.php:158 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." + +#: ../../mod/siteinfo.php:160 +msgid "Tag: " +msgstr "Schlagwort: " + +#: ../../mod/siteinfo.php:162 +msgid "Last background fetch: " +msgstr "Letzter Hintergrundabruf:" + +#: ../../mod/siteinfo.php:164 +msgid "Current load average: " +msgstr "Aktuelles Load Average:" + +#: ../../mod/siteinfo.php:167 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" + +#: ../../mod/siteinfo.php:168 +msgid "" +"Please visit redmatrix.me to learn more" +" about $Projectname." +msgstr "Bitte besuche redmatrix.me, um mehr über $Projectname zu erfahren." + +#: ../../mod/siteinfo.php:169 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" + +#: ../../mod/siteinfo.php:171 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" + +#: ../../mod/siteinfo.php:172 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" + +#: ../../mod/siteinfo.php:174 +msgid "Site Administrators" +msgstr "Administratoren" + +#: ../../mod/import.php:27 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Dein Vertrag erlaubt nur %d Kanäle." + +#: ../../mod/import.php:65 ../../mod/import_items.php:38 +msgid "Nothing to import." +msgstr "Nichts zu importieren." + +#: ../../mod/import.php:89 ../../mod/import_items.php:62 +msgid "Unable to download data from old server" +msgstr "Daten können vom alten Server nicht heruntergeladen werden" + +#: ../../mod/import.php:95 ../../mod/import_items.php:68 +msgid "Imported file is empty." +msgstr "Die importierte Datei ist leer." + +#: ../../mod/import.php:115 ../../mod/import_items.php:82 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." + +#: ../../mod/import.php:148 +msgid "No channel. Import failed." +msgstr "Kein Kanal. Import fehlgeschlagen." + +#: ../../mod/import.php:493 +msgid "You must be logged in to use this feature." +msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." + +#: ../../mod/import.php:498 +msgid "Import Channel" +msgstr "Kanal importieren" + +#: ../../mod/import.php:499 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." + +#: ../../mod/import.php:500 ../../mod/import_items.php:121 +msgid "File to Upload" +msgstr "Hochzuladende Datei:" + +#: ../../mod/import.php:501 +msgid "Or provide the old server/hub details" +msgstr "Oder gib die Details Deines bisherigen Red-Servers ein" + +#: ../../mod/import.php:502 +msgid "Your old identity address (xyz@example.com)" +msgstr "Bisherige Kanal-Adresse (xyz@example.com)" + +#: ../../mod/import.php:503 +msgid "Your old login email address" +msgstr "Deine alte Login-E-Mail-Adresse" + +#: ../../mod/import.php:504 +msgid "Your old login password" +msgstr "Dein altes Passwort" + +#: ../../mod/import.php:505 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." + +#: ../../mod/import.php:506 +msgid "Make this hub my primary location" +msgstr "Dieser Red-Server ist mein primärer Server." + +#: ../../mod/import.php:507 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" + +#: ../../mod/import.php:508 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." + +#: ../../mod/thing.php:111 +msgid "Thing updated" +msgstr "Sache aktualisiert" + +#: ../../mod/thing.php:163 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" + +#: ../../mod/thing.php:167 +msgid "Thing added" +msgstr "Sache hinzugefügt" + +#: ../../mod/thing.php:193 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:256 +msgid "Show Thing" +msgstr "Sache anzeigen" + +#: ../../mod/thing.php:263 +msgid "item not found." +msgstr "Eintrag nicht gefunden" + +#: ../../mod/thing.php:296 +msgid "Edit Thing" +msgstr "Sache bearbeiten" + +#: ../../mod/thing.php:298 ../../mod/thing.php:348 +msgid "Select a profile" +msgstr "Wähle ein Profil" + +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" + +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" + +#: ../../mod/thing.php:304 ../../mod/thing.php:353 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" + +#: ../../mod/thing.php:306 ../../mod/thing.php:354 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" + +#: ../../mod/thing.php:308 ../../mod/thing.php:355 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" + +#: ../../mod/thing.php:346 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." + +#: ../../mod/invite.php:76 +msgid "Please join us on $Projectname" +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" + +#: ../../mod/invite.php:132 +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Gib folgenden Einladungs-Code ein:" + +#: ../../mod/invite.php:135 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" + +#: ../../mod/invite.php:137 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." + +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "oder besuche" + +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" + +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_home.php:21 ../../mod/update_network.php:23 +#: ../../mod/update_search.php:46 ../../mod/update_public.php:21 +msgid "[Embedded content - reload page to view]" +msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]" + +#: ../../mod/viewsrc.php:40 +msgid "Source of Item" +msgstr "Quelle des Elements" + +#: ../../mod/settings.php:76 msgid "Name is required" msgstr "Name ist erforderlich" -#: ../../mod/settings.php:77 +#: ../../mod/settings.php:80 msgid "Key and Secret are required" msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../mod/settings.php:120 -msgid "Diaspora Policy Settings updated." -msgstr "Diaspora-Einstellungen aktualisiert." - -#: ../../mod/settings.php:228 +#: ../../mod/settings.php:231 msgid "Passwords do not match. Password unchanged." msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." -#: ../../mod/settings.php:232 +#: ../../mod/settings.php:235 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." -#: ../../mod/settings.php:246 +#: ../../mod/settings.php:249 msgid "Password changed." msgstr "Kennwort geändert." -#: ../../mod/settings.php:248 +#: ../../mod/settings.php:251 msgid "Password update failed. Please try again." msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." -#: ../../mod/settings.php:262 +#: ../../mod/settings.php:265 msgid "Not valid email." msgstr "Keine gültige E-Mail Adresse." -#: ../../mod/settings.php:265 +#: ../../mod/settings.php:268 msgid "Protected email address. Cannot change to that email." msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." -#: ../../mod/settings.php:274 +#: ../../mod/settings.php:277 msgid "System failure storing new email. Please try again." msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." -#: ../../mod/settings.php:513 +#: ../../mod/settings.php:518 msgid "Settings updated." msgstr "Einstellungen aktualisiert." @@ -4753,496 +7521,626 @@ msgstr "Kein Name" msgid "Remove authorization" msgstr "Authorisierung aufheben" -#: ../../mod/settings.php:663 +#: ../../mod/settings.php:662 msgid "No feature settings configured" msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../mod/settings.php:676 -msgid "Feature Settings" -msgstr "Funktions-Einstellungen" +#: ../../mod/settings.php:669 +msgid "Feature/Addon Settings" +msgstr "Funktions-/Addon-Einstellungen" -#: ../../mod/settings.php:679 -msgid "Diaspora Policy Settings" -msgstr "Diaspora-Einstellungen" - -#: ../../mod/settings.php:680 -msgid "Allow any Diaspora member to comment on your public posts." -msgstr "Allen Diaspora-Mitgliedern erlauben, Deine öffentlichen Beiträge zu kommentieren." - -#: ../../mod/settings.php:681 -msgid "Submit Diaspora Policy Settings" -msgstr "Diaspora-Einstellungen speichern" - -#: ../../mod/settings.php:704 +#: ../../mod/settings.php:692 msgid "Account Settings" msgstr "Konto-Einstellungen" -#: ../../mod/settings.php:705 -msgid "Password Settings" -msgstr "Kennwort-Einstellungen" +#: ../../mod/settings.php:693 +msgid "Enter New Password:" +msgstr "Neues Passwort eingeben:" -#: ../../mod/settings.php:706 -msgid "New Password:" -msgstr "Neues Passwort:" +#: ../../mod/settings.php:694 +msgid "Confirm New Password:" +msgstr "Neues Passwort bestätigen:" -#: ../../mod/settings.php:707 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: ../../mod/settings.php:707 +#: ../../mod/settings.php:694 msgid "Leave password fields blank unless changing" msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" -#: ../../mod/settings.php:709 ../../mod/settings.php:1045 +#: ../../mod/settings.php:696 ../../mod/settings.php:1027 msgid "Email Address:" msgstr "Email Adresse:" -#: ../../mod/settings.php:710 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Konto entfernen" +#: ../../mod/settings.php:698 +msgid "Remove this account including all its channels" +msgstr "Dieses Konto inklusive all seiner Kanäle löschen" -#: ../../mod/settings.php:711 -msgid "Remove this account from this server including all its channels" -msgstr "Lösche dieses Konto einschließlich aller zugehörigen Kanäle von diesem Server" - -#: ../../mod/settings.php:712 ../../mod/settings.php:1126 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden." - -#: ../../mod/settings.php:728 +#: ../../mod/settings.php:714 msgid "Off" msgstr "Aus" -#: ../../mod/settings.php:728 +#: ../../mod/settings.php:714 msgid "On" msgstr "An" -#: ../../mod/settings.php:735 +#: ../../mod/settings.php:721 msgid "Additional Features" msgstr "Zusätzliche Funktionen" -#: ../../mod/settings.php:759 +#: ../../mod/settings.php:745 msgid "Connector Settings" msgstr "Connector-Einstellungen" -#: ../../mod/settings.php:798 +#: ../../mod/settings.php:784 msgid "No special theme for mobile devices" msgstr "Keine spezielle Theme für mobile Geräte" -#: ../../mod/settings.php:801 +#: ../../mod/settings.php:787 #, php-format msgid "%s - (Experimental)" msgstr "%s – (experimentell)" -#: ../../mod/settings.php:804 ../../mod/admin.php:367 -msgid "mobile" -msgstr "mobil" - -#: ../../mod/settings.php:840 +#: ../../mod/settings.php:826 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../mod/settings.php:846 +#: ../../mod/settings.php:827 +msgid "Theme Settings" +msgstr "Theme-Einstellungen" + +#: ../../mod/settings.php:828 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Theme-Einstellungen" + +#: ../../mod/settings.php:829 +msgid "Content Settings" +msgstr "Inhaltseinstellungen" + +#: ../../mod/settings.php:835 msgid "Display Theme:" msgstr "Anzeige-Theme:" -#: ../../mod/settings.php:847 +#: ../../mod/settings.php:836 msgid "Mobile Theme:" msgstr "Mobile Theme:" -#: ../../mod/settings.php:848 +#: ../../mod/settings.php:837 msgid "Enable user zoom on mobile devices" msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../mod/settings.php:849 +#: ../../mod/settings.php:838 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../mod/settings.php:849 +#: ../../mod/settings.php:838 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../mod/settings.php:850 +#: ../../mod/settings.php:839 msgid "Maximum number of conversations to load at any time:" msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../mod/settings.php:850 +#: ../../mod/settings.php:839 msgid "Maximum of 100 items" msgstr "Maximum: 100 Beiträge" -#: ../../mod/settings.php:851 -msgid "Don't show emoticons" -msgstr "Emoticons nicht anzeigen" +#: ../../mod/settings.php:840 +msgid "Show emoticons (smilies) as images" +msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../mod/settings.php:852 +#: ../../mod/settings.php:841 msgid "Link post titles to source" msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../mod/settings.php:853 +#: ../../mod/settings.php:842 msgid "System Page Layout Editor - (advanced)" msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../mod/settings.php:856 +#: ../../mod/settings.php:845 msgid "Use blog/list mode on channel page" msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" -#: ../../mod/settings.php:856 ../../mod/settings.php:857 +#: ../../mod/settings.php:845 ../../mod/settings.php:846 msgid "(comments displayed separately)" msgstr "(Kommentare werden separat angezeigt)" -#: ../../mod/settings.php:857 +#: ../../mod/settings.php:846 msgid "Use blog/list mode on matrix page" msgstr "Blog-/Listenmodus auf der Matrixseite verwenden" -#: ../../mod/settings.php:858 +#: ../../mod/settings.php:847 msgid "Channel page max height of content (in pixels)" msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" -#: ../../mod/settings.php:858 ../../mod/settings.php:859 +#: ../../mod/settings.php:847 ../../mod/settings.php:848 msgid "click to expand content exceeding this height" msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../mod/settings.php:859 +#: ../../mod/settings.php:848 msgid "Matrix page max height of content (in pixels)" msgstr "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)" -#: ../../mod/settings.php:893 +#: ../../mod/settings.php:882 msgid "Nobody except yourself" msgstr "Niemand außer Dir selbst" -#: ../../mod/settings.php:894 +#: ../../mod/settings.php:883 msgid "Only those you specifically allow" msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../mod/settings.php:895 +#: ../../mod/settings.php:884 msgid "Approved connections" msgstr "Angenommene Verbindungen" -#: ../../mod/settings.php:896 +#: ../../mod/settings.php:885 msgid "Any connections" msgstr "Beliebige Verbindungen" -#: ../../mod/settings.php:897 +#: ../../mod/settings.php:886 msgid "Anybody on this website" msgstr "Jeder auf dieser Website" -#: ../../mod/settings.php:898 +#: ../../mod/settings.php:887 msgid "Anybody in this network" msgstr "Alle Red-Nutzer" -#: ../../mod/settings.php:899 +#: ../../mod/settings.php:888 msgid "Anybody authenticated" msgstr "Jeder authentifizierte" -#: ../../mod/settings.php:900 +#: ../../mod/settings.php:889 msgid "Anybody on the internet" msgstr "Jeder im Internet" -#: ../../mod/settings.php:974 +#: ../../mod/settings.php:963 msgid "Publish your default profile in the network directory" msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../mod/settings.php:979 +#: ../../mod/settings.php:968 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:988 +#: ../../mod/settings.php:977 msgid "Your channel address is" msgstr "Deine Kanal-Adresse lautet" -#: ../../mod/settings.php:1036 +#: ../../mod/settings.php:1018 msgid "Channel Settings" msgstr "Kanal-Einstellungen" -#: ../../mod/settings.php:1043 +#: ../../mod/settings.php:1025 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../mod/settings.php:1046 +#: ../../mod/settings.php:1028 msgid "Your Timezone:" msgstr "Ihre Zeitzone:" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1029 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../mod/settings.php:1047 +#: ../../mod/settings.php:1029 msgid "Geographical location to display on your posts" msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1030 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1032 msgid "Adult Content" msgstr "Nicht jugendfreie Inhalte" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1032 msgid "" "This channel frequently or regularly publishes adult content. (Please tag " "any adult material and/or nudity with #NSFW)" msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" -#: ../../mod/settings.php:1052 +#: ../../mod/settings.php:1034 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../mod/settings.php:1054 +#: ../../mod/settings.php:1036 msgid "Your permissions are already configured. Click to view/adjust" msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1038 msgid "Hide my online presence" msgstr "Meine Online-Präsenz verbergen" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1038 msgid "Prevents displaying in your profile that you are online" msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" -#: ../../mod/settings.php:1058 +#: ../../mod/settings.php:1040 msgid "Simple Privacy Settings:" msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../mod/settings.php:1059 +#: ../../mod/settings.php:1041 msgid "" "Very Public - extremely permissive (should be used with caution)" msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../mod/settings.php:1060 +#: ../../mod/settings.php:1042 msgid "" "Typical - default public, privacy when desired (similar to social " "network permissions but with improved privacy)" msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" -#: ../../mod/settings.php:1061 +#: ../../mod/settings.php:1043 msgid "Private - default private, never open or public" msgstr "Privat – Standard privat, nie offen oder öffentlich" -#: ../../mod/settings.php:1062 +#: ../../mod/settings.php:1044 msgid "Blocked - default blocked to/from everybody" msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1046 msgid "Allow others to tag your posts" msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1046 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1048 msgid "Advanced Privacy Settings" msgstr "Fortgeschrittene Privatsphäre-Einstellungen" -#: ../../mod/settings.php:1068 +#: ../../mod/settings.php:1050 msgid "Expire other channel content after this many days" msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../mod/settings.php:1068 +#: ../../mod/settings.php:1050 msgid "0 or blank prevents expiration" msgstr "0 oder kein Inhalt verhindern das Verfallen" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1051 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1051 msgid "May reduce spam activity" msgstr "Kann die Spam-Aktivität verringern" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1052 msgid "Default Post Permissions" msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" -#: ../../mod/settings.php:1071 ../../mod/mitem.php:161 ../../mod/mitem.php:204 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" - -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1057 msgid "Channel permissions category:" msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1063 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1063 msgid "Useful to reduce spamming" msgstr "Nützlich, um Spam zu verringern" -#: ../../mod/settings.php:1084 +#: ../../mod/settings.php:1066 msgid "Notification Settings" msgstr "Benachrichtigungs-Einstellungen" -#: ../../mod/settings.php:1085 +#: ../../mod/settings.php:1067 msgid "By default post a status message when:" msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1068 msgid "accepting a friend request" msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1069 msgid "joining a forum/community" msgstr "Du einem Forum beitrittst" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1070 msgid "making an interesting profile change" msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1071 msgid "Send a notification email when:" msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1072 msgid "You receive a connection request" msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../mod/settings.php:1091 +#: ../../mod/settings.php:1073 msgid "Your connections are confirmed" msgstr "Eine Verbindung bestätigt wurde" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1074 msgid "Someone writes on your profile wall" msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../mod/settings.php:1093 +#: ../../mod/settings.php:1075 msgid "Someone writes a followup comment" msgstr "Jemand einen Beitrag kommentiert" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1076 msgid "You receive a private message" msgstr "Du eine private Nachricht erhältst" -#: ../../mod/settings.php:1095 +#: ../../mod/settings.php:1077 msgid "You receive a friend suggestion" msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../mod/settings.php:1096 +#: ../../mod/settings.php:1078 msgid "You are tagged in a post" msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../mod/settings.php:1097 +#: ../../mod/settings.php:1079 msgid "You are poked/prodded/etc. in a post" msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../mod/settings.php:1100 +#: ../../mod/settings.php:1082 msgid "Show visual notifications including:" msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../mod/settings.php:1102 +#: ../../mod/settings.php:1084 msgid "Unseen matrix activity" msgstr "Ungesehene Matrix-Aktivität" -#: ../../mod/settings.php:1103 +#: ../../mod/settings.php:1085 msgid "Unseen channel activity" msgstr "Ungesehene Kanal-Aktivität" -#: ../../mod/settings.php:1104 +#: ../../mod/settings.php:1086 msgid "Unseen private messages" msgstr "Ungelesene persönliche Nachrichten" -#: ../../mod/settings.php:1104 ../../mod/settings.php:1109 -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 +#: ../../mod/settings.php:1086 ../../mod/settings.php:1091 +#: ../../mod/settings.php:1092 ../../mod/settings.php:1093 msgid "Recommended" msgstr "Empfohlen" -#: ../../mod/settings.php:1105 +#: ../../mod/settings.php:1087 msgid "Upcoming events" msgstr "Baldige Termine" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1088 msgid "Events today" msgstr "Heutige Termine" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1089 msgid "Upcoming birthdays" msgstr "Baldige Geburtstage" -#: ../../mod/settings.php:1107 +#: ../../mod/settings.php:1089 msgid "Not available in all themes" msgstr "Nicht in allen Themes verfügbar" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1090 msgid "System (personal) notifications" msgstr "System – (persönliche) Benachrichtigungen" -#: ../../mod/settings.php:1109 +#: ../../mod/settings.php:1091 msgid "System info messages" msgstr "System – Info-Nachrichten" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1092 msgid "System critical alerts" msgstr "System – kritische Warnungen" -#: ../../mod/settings.php:1111 +#: ../../mod/settings.php:1093 msgid "New connections" msgstr "Neue Verbindungen" -#: ../../mod/settings.php:1112 +#: ../../mod/settings.php:1094 msgid "System Registrations" msgstr "System – Registrierungen" -#: ../../mod/settings.php:1113 +#: ../../mod/settings.php:1095 msgid "" "Also show new wall posts, private messages and connections under Notices" msgstr "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an" -#: ../../mod/settings.php:1115 +#: ../../mod/settings.php:1097 msgid "Notify me of events this many days in advance" msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" -#: ../../mod/settings.php:1115 +#: ../../mod/settings.php:1097 msgid "Must be greater than 0" msgstr "Muss größer als 0 sein" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1099 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1100 msgid "Change the behaviour of this account for special situations" msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" -#: ../../mod/settings.php:1121 +#: ../../mod/settings.php:1103 msgid "" "Please enable expert mode (in Settings > " "Additional features) to adjust!" msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" -#: ../../mod/settings.php:1122 +#: ../../mod/settings.php:1104 msgid "Miscellaneous Settings" msgstr "Sonstige Einstellungen" -#: ../../mod/settings.php:1124 +#: ../../mod/settings.php:1105 +msgid "Default photo upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Fotos" + +#: ../../mod/settings.php:1106 +msgid "Default file upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Dateien" + +#: ../../mod/settings.php:1108 msgid "Personal menu to display in your channel pages" msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../mod/settings.php:1125 -msgid "Remove this channel" +#: ../../mod/settings.php:1110 +msgid "Remove this channel." msgstr "Diesen Kanal löschen" -#: ../../mod/cloud.php:120 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Xchan-Suche" -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Schlagwort entfernt" +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" +#: ../../mod/manage.php:130 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" +#: ../../mod/manage.php:138 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" -#: ../../mod/tagrm.php:133 ../../mod/delegate.php:130 ../../mod/photos.php:873 -msgid "Remove" -msgstr "Entferne" +#: ../../mod/manage.php:161 +msgid "Current Channel" +msgstr "Aktueller Kanal" + +#: ../../mod/manage.php:163 +msgid "Switch to one of your channels by selecting it." +msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." + +#: ../../mod/manage.php:164 +msgid "Default Channel" +msgstr "Standard Kanal" + +#: ../../mod/manage.php:165 +msgid "Make Default" +msgstr "Zum Standard machen" + +#: ../../mod/manage.php:168 +#, php-format +msgid "%d new messages" +msgstr "%d neue Nachrichten" + +#: ../../mod/manage.php:169 +#, php-format +msgid "%d new introductions" +msgstr "%d neue Vorstellungen" + +#: ../../mod/manage.php:171 +msgid "Delegated Channels" +msgstr "Delegierte Kanäle" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" + +#: ../../mod/connections.php:52 ../../mod/connections.php:150 +msgid "Blocked" +msgstr "Blockiert" + +#: ../../mod/connections.php:57 ../../mod/connections.php:157 +msgid "Ignored" +msgstr "Ignoriert" + +#: ../../mod/connections.php:62 ../../mod/connections.php:171 +msgid "Hidden" +msgstr "Versteckt" + +#: ../../mod/connections.php:67 ../../mod/connections.php:164 +msgid "Archived" +msgstr "Archiviert" + +#: ../../mod/connections.php:128 +msgid "Suggest new connections" +msgstr "Neue Verbindungen vorschlagen" + +#: ../../mod/connections.php:131 +msgid "New Connections" +msgstr "Neue Verbindungen" + +#: ../../mod/connections.php:134 +msgid "Show pending (new) connections" +msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" + +#: ../../mod/connections.php:137 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Alle Verbindungen" + +#: ../../mod/connections.php:140 +msgid "Show all connections" +msgstr "Alle Verbindungen anzeigen" + +#: ../../mod/connections.php:143 +msgid "Unblocked" +msgstr "Freigegeben" + +#: ../../mod/connections.php:146 +msgid "Only show unblocked connections" +msgstr "Nur freigegebene Verbindungen anzeigen" + +#: ../../mod/connections.php:153 +msgid "Only show blocked connections" +msgstr "Nur blockierte Verbindungen anzeigen" + +#: ../../mod/connections.php:160 +msgid "Only show ignored connections" +msgstr "Nur ignorierte Verbindungen anzeigen" + +#: ../../mod/connections.php:167 +msgid "Only show archived connections" +msgstr "Nur archivierte Verbindungen anzeigen" + +#: ../../mod/connections.php:174 +msgid "Only show hidden connections" +msgstr "Nur versteckte Verbindungen anzeigen" + +#: ../../mod/connections.php:225 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:226 +msgid "Edit connection" +msgstr "Verbindung bearbeiten" + +#: ../../mod/connections.php:264 +msgid "Search your connections" +msgstr "Verbindungen durchsuchen" + +#: ../../mod/connections.php:265 +msgid "Finding: " +msgstr "Ergebnisse:" + +#: ../../mod/editlayout.php:112 +msgid "Delete layout?" +msgstr "Layout löschen?" + +#: ../../mod/editlayout.php:178 +msgid "Edit Layout" +msgstr "Layout bearbeiten" + +#: ../../mod/editwebpage.php:153 +msgid "Delete webpage?" +msgstr "Webseite löschen?" + +#: ../../mod/editwebpage.php:172 +msgid "Page link title" +msgstr "Seitentitel-Link" + +#: ../../mod/editwebpage.php:222 +msgid "Edit Webpage" +msgstr "Webseite bearbeiten" #: ../../mod/group.php:20 msgid "Collection created." @@ -5260,11 +8158,11 @@ msgstr "Sammlung aktualisiert." msgid "Create a collection of channels." msgstr "Erstelle eine Sammlung von Kanälen." -#: ../../mod/group.php:87 ../../mod/group.php:183 +#: ../../mod/group.php:87 ../../mod/group.php:180 msgid "Collection Name: " msgstr "Name der Sammlung:" -#: ../../mod/group.php:89 ../../mod/group.php:186 +#: ../../mod/group.php:89 ../../mod/group.php:183 msgid "Members are visible to other channels" msgstr "Mitglieder sind sichtbar für andere Kanäle" @@ -5276,481 +8174,537 @@ msgstr "Sammlung gelöscht." msgid "Unable to remove collection." msgstr "Löschen der Sammlung nicht möglich." -#: ../../mod/group.php:182 +#: ../../mod/group.php:179 msgid "Collection Editor" msgstr "Sammlung-Editor" -#: ../../mod/group.php:196 +#: ../../mod/group.php:193 msgid "Members" msgstr "Mitglieder" -#: ../../mod/group.php:198 +#: ../../mod/group.php:195 msgid "All Connected Channels" msgstr "Alle verbundenen Kanäle" -#: ../../mod/group.php:233 +#: ../../mod/group.php:227 msgid "Click on a channel to add or remove." msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../mod/siteinfo.php:93 +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Fortfahren" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." + +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" + +#: ../../mod/connect.php:92 ../../mod/connect.php:113 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" + +#: ../../mod/viewconnections.php:59 +msgid "No connections." +msgstr "Keine Verbindungen." + +#: ../../mod/viewconnections.php:72 #, php-format -msgid "Version %s" -msgstr "Version %s" +msgid "Visit %s's profile [%s]" +msgstr "%ss Profil [%s] besuchen" -#: ../../mod/siteinfo.php:114 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" +#: ../../mod/locs.php:21 ../../mod/locs.php:49 +msgid "Location not found." +msgstr "Klon nicht gefunden." -#: ../../mod/siteinfo.php:127 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" +#: ../../mod/locs.php:57 +msgid "Location lookup failed." +msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" -#: ../../mod/siteinfo.php:136 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:137 +#: ../../mod/locs.php:61 msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." +"Please select another location to become primary before removing the primary" +" location." +msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." -#: ../../mod/siteinfo.php:139 -msgid "Tag: " -msgstr "Schlagwort: " +#: ../../mod/locs.php:93 +msgid "No locations found." +msgstr "Keine Klon-Adressen gefunden." -#: ../../mod/siteinfo.php:141 -msgid "Last background fetch: " -msgstr "Letzter Hintergrundabruf:" +#: ../../mod/locs.php:104 +msgid "Manage Channel Locations" +msgstr "Klon-Adressen verwalten" -#: ../../mod/siteinfo.php:144 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" +#: ../../mod/locs.php:105 +msgid "Location (address)" +msgstr "URL (Adresse)" -#: ../../mod/siteinfo.php:145 +#: ../../mod/locs.php:106 +msgid "Primary Location" +msgstr "Primärer Klon" + +#: ../../mod/locs.php:107 +msgid "Drop location" +msgstr "Klon löschen" + +#: ../../mod/post.php:234 msgid "" -"Please visit RedMatrix.me to learn more" -" about the Red Matrix." -msgstr "Bitte besuchen Sie RedMatrix.me, um mehr über RedMatrix zu erfahren." +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." -#: ../../mod/siteinfo.php:146 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../mod/setup.php:191 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Server-Einrichtung" -#: ../../mod/siteinfo.php:149 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" - -#: ../../mod/siteinfo.php:151 -msgid "Site Administrators" -msgstr "Administratoren" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Hilfe:" - -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" -msgstr "Nicht gefunden" - -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" -msgstr "Red Matrix Server - Installation" - -#: ../../mod/setup.php:172 +#: ../../mod/setup.php:195 msgid "Could not connect to database." msgstr "Kann nicht mit der Datenbank verbinden." -#: ../../mod/setup.php:176 +#: ../../mod/setup.php:199 msgid "" "Could not connect to specified site URL. Possible SSL certificate or DNS " "issue." msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." -#: ../../mod/setup.php:183 +#: ../../mod/setup.php:206 msgid "Could not create table." msgstr "Kann Tabelle nicht erstellen." -#: ../../mod/setup.php:189 +#: ../../mod/setup.php:211 msgid "Your site database has been installed." msgstr "Die Datenbank Deines Hubs wurde installiert." -#: ../../mod/setup.php:194 +#: ../../mod/setup.php:215 msgid "" "You may need to import the file \"install/schema_xxx.sql\" manually using a " "database client." msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 +#: ../../mod/setup.php:216 ../../mod/setup.php:284 ../../mod/setup.php:734 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Lies die Datei \"install/INSTALL.txt\"." -#: ../../mod/setup.php:261 +#: ../../mod/setup.php:281 msgid "System check" msgstr "Systemprüfung" -#: ../../mod/setup.php:266 +#: ../../mod/setup.php:286 msgid "Check again" msgstr "Bitte nochmal prüfen" -#: ../../mod/setup.php:289 +#: ../../mod/setup.php:308 msgid "Database connection" msgstr "Datenbank Verbindung" -#: ../../mod/setup.php:290 +#: ../../mod/setup.php:309 msgid "" -"In order to install Red Matrix we need to know how to connect to your " +"In order to install $Projectname we need to know how to connect to your " "database." -msgstr "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." +msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." -#: ../../mod/setup.php:291 +#: ../../mod/setup.php:310 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." -#: ../../mod/setup.php:292 +#: ../../mod/setup.php:311 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." -#: ../../mod/setup.php:296 +#: ../../mod/setup.php:315 msgid "Database Server Name" msgstr "Datenbank-Servername" -#: ../../mod/setup.php:296 +#: ../../mod/setup.php:315 msgid "Default is localhost" msgstr "Standard ist localhost" -#: ../../mod/setup.php:297 +#: ../../mod/setup.php:316 msgid "Database Port" msgstr "Datenbank-Port" -#: ../../mod/setup.php:297 +#: ../../mod/setup.php:316 msgid "Communication port number - use 0 for default" msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" -#: ../../mod/setup.php:298 +#: ../../mod/setup.php:317 msgid "Database Login Name" msgstr "Datenbank-Benutzername" -#: ../../mod/setup.php:299 +#: ../../mod/setup.php:318 msgid "Database Login Password" msgstr "Datenbank-Kennwort" -#: ../../mod/setup.php:300 +#: ../../mod/setup.php:319 msgid "Database Name" msgstr "Datenbank-Name" -#: ../../mod/setup.php:301 +#: ../../mod/setup.php:320 msgid "Database Type" msgstr "Datenbanktyp" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 +#: ../../mod/setup.php:322 ../../mod/setup.php:363 msgid "Site administrator email address" msgstr "E-Mail Adresse des Seiten-Administrators" -#: ../../mod/setup.php:303 ../../mod/setup.php:347 +#: ../../mod/setup.php:322 ../../mod/setup.php:363 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." -#: ../../mod/setup.php:304 ../../mod/setup.php:349 +#: ../../mod/setup.php:323 ../../mod/setup.php:365 msgid "Website URL" msgstr "Server-URL" -#: ../../mod/setup.php:304 ../../mod/setup.php:349 +#: ../../mod/setup.php:323 ../../mod/setup.php:365 msgid "Please use SSL (https) URL if available." msgstr "Nutze wenn möglich eine SSL-URL (https)." -#: ../../mod/setup.php:307 ../../mod/setup.php:352 +#: ../../mod/setup.php:325 ../../mod/setup.php:367 msgid "Please select a default timezone for your website" msgstr "Standard-Zeitzone für Deinen Server" -#: ../../mod/setup.php:335 +#: ../../mod/setup.php:352 msgid "Site settings" msgstr "Seiteneinstellungen" -#: ../../mod/setup.php:395 +#: ../../mod/setup.php:417 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." -#: ../../mod/setup.php:396 +#: ../../mod/setup.php:418 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron." msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." -#: ../../mod/setup.php:400 +#: ../../mod/setup.php:422 msgid "PHP executable path" msgstr "PHP Pfad zu ausführbarer Datei" -#: ../../mod/setup.php:400 +#: ../../mod/setup.php:422 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." -#: ../../mod/setup.php:405 +#: ../../mod/setup.php:427 msgid "Command line PHP" msgstr "PHP Befehlszeile" -#: ../../mod/setup.php:414 +#: ../../mod/setup.php:436 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." -#: ../../mod/setup.php:415 +#: ../../mod/setup.php:437 msgid "This is required for message delivery to work." msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." -#: ../../mod/setup.php:417 +#: ../../mod/setup.php:440 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: ../../mod/setup.php:438 +#: ../../mod/setup.php:458 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." + +#: ../../mod/setup.php:463 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Du kannst diese Einstellungen in der php.ini des Servers ändern." + +#: ../../mod/setup.php:465 +msgid "PHP upload limits" +msgstr "PHP-Hochladebeschränkungen" + +#: ../../mod/setup.php:488 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." -#: ../../mod/setup.php:439 +#: ../../mod/setup.php:489 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." -#: ../../mod/setup.php:441 +#: ../../mod/setup.php:492 msgid "Generate encryption keys" msgstr "Verschlüsselungsschlüssel generieren" -#: ../../mod/setup.php:448 +#: ../../mod/setup.php:504 msgid "libCurl PHP module" msgstr "libCurl-PHP-Modul" -#: ../../mod/setup.php:449 +#: ../../mod/setup.php:505 msgid "GD graphics PHP module" msgstr "GD-Grafik-PHP-Modul" -#: ../../mod/setup.php:450 +#: ../../mod/setup.php:506 msgid "OpenSSL PHP module" msgstr "OpenSSL-PHP-Modul" -#: ../../mod/setup.php:451 +#: ../../mod/setup.php:507 msgid "mysqli or postgres PHP module" msgstr "mysqli oder postgres PHP-Modul" -#: ../../mod/setup.php:452 +#: ../../mod/setup.php:508 msgid "mb_string PHP module" msgstr "mb_string-PHP-Modul" -#: ../../mod/setup.php:453 +#: ../../mod/setup.php:509 msgid "mcrypt PHP module" msgstr "mcrypt-PHP-Modul" -#: ../../mod/setup.php:458 ../../mod/setup.php:460 +#: ../../mod/setup.php:510 +msgid "xml PHP module" +msgstr "xml-PHP-Modul" + +#: ../../mod/setup.php:514 ../../mod/setup.php:516 msgid "Apache mod_rewrite module" msgstr "Apache-mod_rewrite-Modul" -#: ../../mod/setup.php:458 +#: ../../mod/setup.php:514 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." -#: ../../mod/setup.php:464 ../../mod/setup.php:467 +#: ../../mod/setup.php:520 ../../mod/setup.php:523 msgid "proc_open" msgstr "proc_open" -#: ../../mod/setup.php:464 +#: ../../mod/setup.php:520 msgid "" "Error: proc_open is required but is either not installed or has been " "disabled in php.ini" msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" -#: ../../mod/setup.php:472 +#: ../../mod/setup.php:528 msgid "Error: libCURL PHP module required but not installed." msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." -#: ../../mod/setup.php:476 +#: ../../mod/setup.php:532 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." -#: ../../mod/setup.php:480 +#: ../../mod/setup.php:536 msgid "Error: openssl PHP module required but not installed." msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." -#: ../../mod/setup.php:484 +#: ../../mod/setup.php:540 msgid "" "Error: mysqli or postgres PHP module required but neither are installed." msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." -#: ../../mod/setup.php:488 +#: ../../mod/setup.php:544 msgid "Error: mb_string PHP module required but not installed." msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." -#: ../../mod/setup.php:492 +#: ../../mod/setup.php:548 msgid "Error: mcrypt PHP module required but not installed." msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." -#: ../../mod/setup.php:508 +#: ../../mod/setup.php:552 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." + +#: ../../mod/setup.php:570 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." -#: ../../mod/setup.php:509 +#: ../../mod/setup.php:571 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." -#: ../../mod/setup.php:510 +#: ../../mod/setup.php:572 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named .htconfig.php in your Red top folder." msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst." -#: ../../mod/setup.php:511 +#: ../../mod/setup.php:573 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"install/INSTALL.txt\" for instructions." msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." -#: ../../mod/setup.php:514 +#: ../../mod/setup.php:576 msgid ".htconfig.php is writable" msgstr ".htconfig.php ist beschreibbar" -#: ../../mod/setup.php:524 +#: ../../mod/setup.php:590 msgid "" "Red uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." -#: ../../mod/setup.php:525 +#: ../../mod/setup.php:591 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the Red top level folder." msgstr "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses." -#: ../../mod/setup.php:526 ../../mod/setup.php:544 +#: ../../mod/setup.php:592 ../../mod/setup.php:613 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../mod/setup.php:527 +#: ../../mod/setup.php:593 #, php-format msgid "" "Note: as a security measure, you should give the web server write access to " "%s only--not the template files (.tpl) that it contains." msgstr "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." -#: ../../mod/setup.php:530 +#: ../../mod/setup.php:596 #, php-format msgid "%s is writable" msgstr "%s ist beschreibbar" -#: ../../mod/setup.php:543 +#: ../../mod/setup.php:612 msgid "" "Red uses the store directory to save uploaded files. The web server needs to" " have write access to the store directory under the Red top level folder" msgstr "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" -#: ../../mod/setup.php:547 +#: ../../mod/setup.php:616 msgid "store is writable" msgstr "store ist schreibbar" -#: ../../mod/setup.php:577 +#: ../../mod/setup.php:649 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access" " to this site." msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." -#: ../../mod/setup.php:578 +#: ../../mod/setup.php:650 msgid "" "If you have https access to your website or allow connections to TCP port " "443 (the https: port), you MUST use a browser-valid certificate. You MUST " "NOT use self-signed certificates!" msgstr "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." -#: ../../mod/setup.php:579 +#: ../../mod/setup.php:651 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." -#: ../../mod/setup.php:580 +#: ../../mod/setup.php:652 msgid "" "If your certificate is not recognized, members of other sites (who may " "themselves have valid certificates) will get a warning message on their own " "site complaining about security issues." msgstr "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." -#: ../../mod/setup.php:581 +#: ../../mod/setup.php:653 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." -#: ../../mod/setup.php:582 +#: ../../mod/setup.php:654 msgid "" "Providers are available that issue free certificates which are browser-" "valid." msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." -#: ../../mod/setup.php:584 +#: ../../mod/setup.php:656 msgid "SSL certificate validation" msgstr "SSL Zertifikatverifizierung" -#: ../../mod/setup.php:590 +#: ../../mod/setup.php:662 msgid "" "Url rewrite in .htaccess is not working. Check your server " "configuration.Test: " msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" -#: ../../mod/setup.php:592 +#: ../../mod/setup.php:665 msgid "Url rewrite is working" msgstr "Url rewrite funktioniert" -#: ../../mod/setup.php:602 +#: ../../mod/setup.php:674 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." -#: ../../mod/setup.php:625 +#: ../../mod/setup.php:698 msgid "Errors encountered creating database tables." msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../mod/setup.php:660 +#: ../../mod/setup.php:732 msgid "

What next

" msgstr "

Was als Nächstes

" -#: ../../mod/setup.php:661 +#: ../../mod/setup.php:733 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Kein Kanal." +#: ../../mod/sharedwithme.php:94 +msgid "Files: shared with me" +msgstr "Dateien, die mit mir geteilt wurden" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" +#: ../../mod/sharedwithme.php:96 +msgid "NEW" +msgstr "NEU" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +#: ../../mod/sharedwithme.php:99 +msgid "Remove all files" +msgstr "Alle Dateien löschen" + +#: ../../mod/sharedwithme.php:100 +msgid "Remove this file" +msgstr "Diese Datei löschen" #: ../../mod/suggest.php:35 msgid "" @@ -5758,908 +8712,6 @@ msgid "" "hours." msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" -msgstr "Blockiert" - -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" -msgstr "Ignoriert" - -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" -msgstr "Versteckt" - -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" -msgstr "Archiviert" - -#: ../../mod/connections.php:231 ../../mod/connections.php:246 -msgid "All" -msgstr "Alle" - -#: ../../mod/connections.php:271 -msgid "Suggest new connections" -msgstr "Neue Verbindungen vorschlagen" - -#: ../../mod/connections.php:274 -msgid "New Connections" -msgstr "Neue Verbindungen" - -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" - -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle Verbindungen" - -#: ../../mod/connections.php:283 -msgid "Show all connections" -msgstr "Alle Verbindungen anzeigen" - -#: ../../mod/connections.php:286 -msgid "Unblocked" -msgstr "Freigegeben" - -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" -msgstr "Nur freigegebene Verbindungen anzeigen" - -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" -msgstr "Nur blockierte Verbindungen anzeigen" - -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" -msgstr "Nur ignorierte Verbindungen anzeigen" - -#: ../../mod/connections.php:310 -msgid "Only show archived connections" -msgstr "Nur archivierte Verbindungen anzeigen" - -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" -msgstr "Nur versteckte Verbindungen anzeigen" - -#: ../../mod/connections.php:372 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:373 -msgid "Edit connection" -msgstr "Verbindung bearbeiten" - -#: ../../mod/connections.php:411 -msgid "Search your connections" -msgstr "Verbindungen durchsuchen" - -#: ../../mod/connections.php:412 -msgid "Finding: " -msgstr "Ergebnisse:" - -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webseite" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "Block" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "Layout" - -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" - -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" - -#: ../../mod/item.php:165 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." - -#: ../../mod/item.php:424 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." - -#: ../../mod/item.php:466 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." - -#: ../../mod/item.php:865 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." - -#: ../../mod/item.php:1083 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." - -#: ../../mod/item.php:1089 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." - -#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:82 -#: ../../mod/directory.php:22 ../../mod/viewconnections.php:17 -#: ../../mod/photos.php:429 -msgid "Public access denied." -msgstr "Öffentlicher Zugang verweigert." - -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Sache aktualisiert" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Sache hinzugefügt" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Sache anzeigen" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Eintrag nicht gefunden" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Sache bearbeiten" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Wähle ein Profil" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" - -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Abwesend" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal hinzugefügt." - -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." - -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "Netzwerk" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout aktualisiert." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout nicht gefunden." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulname:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Layout-Hilfe" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installiert." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Fehlerhafte App." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Code einbetten" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bearbeiten" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App erstellen" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Name der App" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" - -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Beschreibung" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL zum Icon" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versions-ID" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Preis der App" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "– auswählen –" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Dein Vertrag erlaubt nur %d Kanäle." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Nichts zu importieren." - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Daten können vom alten Server nicht heruntergeladen werden" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Die importierte Datei ist leer." - -#: ../../mod/import.php:106 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." - -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." - -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." - -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." - -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import abgeschlossen." - -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." -msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." - -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Kanal importieren" - -#: ../../mod/import.php:493 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich." - -#: ../../mod/import.php:494 -msgid "File to Upload" -msgstr "Hochzuladende Datei:" - -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Oder gib die Details Deines bisherigen Red-Servers ein" - -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Bisherige Kanal-Adresse (xyz@example.com)" - -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "Deine alte Login-E-Mail-Adresse" - -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "Dein altes Passwort" - -#: ../../mod/import.php:499 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." - -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" -msgstr "Dieser Red-Server ist mein primärer Server." - -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Existierende Beiträge importieren, falls möglich" - -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Layout bearbeiten" - -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Layout löschen?" - -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Layout löschen" - -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." -msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Raum verlassen" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Diesen Raum löschen" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ich bin online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Neuer Chatraum" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Name des Chatraums" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" - -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Webseite bearbeiten" - -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Webseite löschen?" - -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Webseite löschen" - -#: ../../mod/dirsearch.php:20 ../../mod/regdir.php:22 -msgid "This site is not a directory server" -msgstr "Diese Website ist kein Verzeichnis-Server" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." - -#: ../../mod/lostpass.php:85 ../../boot.php:1560 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-Mail Adresse" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Zurücksetzen" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Webseite:" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Schließe Dich uns an und werde Teil der Red-Matrix" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" - -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Schließe Dich uns in der RedMatrix an!" - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Gib folgenden Einladungs-Code ein:" - -#: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)" - -#: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Gib meine RedMatrix-Adresse im Suchfeld ein." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "oder besuche" - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Klon nicht gefunden." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "Der primäre Klon kann nicht gelöscht werden." - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Keine Klon-Adressen gefunden." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Klon-Adressen verwalten" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "URL (Adresse)" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Primärer Klon" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Klon löschen" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Quelle erstellt." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Quelle aktualisiert." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Neue Quelle" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Name des Kanals" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Quelle nicht gefunden." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Quelle bearbeiten" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Quelle löschen" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Quelle gelöscht" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." - -#: ../../mod/menu.php:31 -msgid "Menu updated." -msgstr "Menü aktualisiert." - -#: ../../mod/menu.php:35 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." - -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Menü erstellt." - -#: ../../mod/menu.php:44 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." - -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Menüs verwalten" - -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Löschen" - -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" - -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Neues Menü erstellen" - -#: ../../mod/menu.php:83 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" - -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" - -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" - -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Neues Menü" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Menü Name" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" - -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Menü Titel" - -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Menu may be used to store saved bookmarks" -msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" - -#: ../../mod/menu.php:108 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menü nicht gefunden" - -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Menü gelöscht." - -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." - -#: ../../mod/menu.php:122 -msgid "Edit Menu" -msgstr "Menü bearbeiten" - -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" - -#: ../../mod/menu.php:130 ../../mod/mitem.php:213 -msgid "Modify" -msgstr "Ändern" - -#: ../../mod/filestorage.php:81 -msgid "Permission Denied." -msgstr "Zugriff verweigert." - -#: ../../mod/filestorage.php:97 -msgid "File not found." -msgstr "Datei nicht gefunden." - -#: ../../mod/filestorage.php:140 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" - -#: ../../mod/filestorage.php:149 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" - -#: ../../mod/filestorage.php:150 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" - -#: ../../mod/filestorage.php:151 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" - -#: ../../mod/filestorage.php:153 -msgid "Copy/paste this code to attach file to a post" -msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" - -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" - -#: ../../mod/filestorage.php:156 -msgid "Attach this file to a new post" -msgstr "Diese Datei an einen neuen Beitrag anhängen" - -#: ../../mod/filestorage.php:157 -msgid "Show URL to this file" -msgstr "URL zu dieser Datei anzeigen" - -#: ../../mod/filestorage.php:158 -msgid "Do not show in shared with me folder of your connections" -msgstr "Nicht im Ordner „Dateien, die mit mir geteilt wurden“ meiner Verbindungen anzeigen" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Freundschaftsempfehlung senden." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Server nicht gefunden." - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Empfänger" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." - -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Sichtbar für:" - #: ../../mod/profiles.php:18 ../../mod/profiles.php:174 #: ../../mod/profiles.php:231 ../../mod/profiles.php:600 msgid "Profile not found." @@ -6717,10 +8769,6 @@ msgstr "Religion" msgid "Political Views" msgstr "Politische Ansichten" -#: ../../mod/profiles.php:431 -msgid "Gender" -msgstr "Geschlecht" - #: ../../mod/profiles.php:435 msgid "Sexual Preference" msgstr "Sexuelle Orientierung" @@ -6733,10 +8781,6 @@ msgstr "Webseite" msgid "Interests" msgstr "Hobbys/Interessen" -#: ../../mod/profiles.php:447 ../../mod/admin.php:871 -msgid "Address" -msgstr "Adresse" - #: ../../mod/profiles.php:537 msgid "Profile updated." msgstr "Profil aktualisiert." @@ -6901,7 +8945,7 @@ msgstr "Schule/Ausbildung" msgid "This is your default profile." msgstr "Das ist Dein Standardprofil." -#: ../../mod/profiles.php:728 ../../mod/directory.php:188 +#: ../../mod/profiles.php:728 msgid "Age: " msgstr "Alter:" @@ -6917,111 +8961,21 @@ msgstr "Sachen zum Profil hinzufügen" msgid "Include desirable objects in your profile" msgstr "Binde begehrenswerte Dinge in Dein Profil ein" -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Keine Bewertungen" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Bewertungen" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Bewertung: " +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Webseite: " - -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Beschreibung: " - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für diese Seite" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Hinzufügen" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Keine Einträge." - -#: ../../mod/directory.php:194 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d Bewertung" -msgstr[1] "%d Bewertungen" - -#: ../../mod/directory.php:206 -msgid "Gender: " -msgstr "Geschlecht:" - -#: ../../mod/directory.php:208 -msgid "Status: " -msgstr "Status:" - -#: ../../mod/directory.php:210 -msgid "Homepage: " -msgstr "Webseite:" - -#: ../../mod/directory.php:213 -msgid "Hometown: " -msgstr "Wohnort:" - -#: ../../mod/directory.php:215 -msgid "About: " -msgstr "Über:" - -#: ../../mod/directory.php:273 -msgid "Public Forum:" -msgstr "Öffentliches Forum:" - -#: ../../mod/directory.php:276 -msgid "Keywords: " -msgstr "Schlüsselwörter:" - -#: ../../mod/directory.php:331 -msgid "Finding:" -msgstr "Ergebnisse:" - -#: ../../mod/directory.php:336 -msgid "next page" -msgstr "nächste Seite" - -#: ../../mod/directory.php:336 -msgid "previous page" -msgstr "vorherige Seite" - -#: ../../mod/directory.php:353 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Sichtbar für" #: ../../mod/rbmark.php:88 msgid "Select a bookmark folder" @@ -7039,1575 +8993,30 @@ msgstr "URL des Lesezeichens" msgid "Or enter new bookmark folder name" msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Kanal exportieren" +#: ../../mod/import_items.php:101 +msgid "Import completed" +msgstr "Import abgeschlossen" -#: ../../mod/uexport.php:35 +#: ../../mod/import_items.php:119 +msgid "Import Items" +msgstr "Beiträge importieren" + +#: ../../mod/import_items.php:120 msgid "" -"Export your basic channel information to a small file. This acts as a " -"backup of your connections, permissions, profile and basic data, which can " -"be used to import your data to a new hub, but\tdoes not contain your " -"content." -msgstr "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." +"Use this form to import existing posts and content from an export file." +msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" +#: ../../view/theme/redbasic/php/config.php:82 +msgid "Focus (Hubzilla default)" +msgstr "Focus (Voreinstellung für Hubzilla)" -#: ../../mod/uexport.php:37 -msgid "" -"Export your channel information and all the content to a JSON backup. This " -"backs up all of your connections, permissions, profile data and all of your " -"content, but is generally not suitable for importing a channel to a new hub " -"as this file may be VERY large. Please be patient - it may take several " -"minutes for this download to begin." -msgstr "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Inhalte Deines Kanals, ist aber nicht unbedingt für den Import eines Kanals auf einem anderen Hub geeignet, da die Datei SEHR groß werden kann. Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Keine Verbindungen." - -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "%ss Profil [%s] besuchen" - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Theme-Einstellungen aktualisiert." - -#: ../../mod/admin.php:97 ../../mod/admin.php:415 -msgid "Site" -msgstr "Seite" - -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "Konten" - -#: ../../mod/admin.php:99 ../../mod/admin.php:863 -msgid "Channels" -msgstr "Kanäle" - -#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996 -msgid "Plugins" -msgstr "Plug-Ins" - -#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195 -msgid "Themes" -msgstr "Themes" - -#: ../../mod/admin.php:102 ../../mod/admin.php:517 -msgid "Server" -msgstr "Server" - -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "Profilkonfiguration" - -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "DB-Aktualisierungen" - -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282 -msgid "Logs" -msgstr "Protokolle" - -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" - -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" - -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" - -#: ../../mod/admin.php:211 ../../mod/admin.php:414 ../../mod/admin.php:516 -#: ../../mod/admin.php:726 ../../mod/admin.php:862 ../../mod/admin.php:953 -#: ../../mod/admin.php:995 ../../mod/admin.php:1158 ../../mod/admin.php:1194 -#: ../../mod/admin.php:1281 -msgid "Administration" -msgstr "Administration" - -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "Zusammenfassung" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Registrierte Benutzer" - -#: ../../mod/admin.php:216 ../../mod/admin.php:520 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Version" - -#: ../../mod/admin.php:219 ../../mod/admin.php:521 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" - -#: ../../mod/admin.php:330 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." - -#: ../../mod/admin.php:369 -msgid "experimental" -msgstr "experimentell" - -#: ../../mod/admin.php:371 -msgid "unsupported" -msgstr "nicht unterstützt" - -#: ../../mod/admin.php:395 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" - -#: ../../mod/admin.php:401 -msgid "My site is not a public server" -msgstr "Mein Server ist kein öffentlicher Server" - -#: ../../mod/admin.php:402 -msgid "My site has paid access only" -msgstr "Mein Server erlaubt nur bezahlten Zugang" - -#: ../../mod/admin.php:403 -msgid "My site has free access only" -msgstr "Mein Server erlaubt ausschließlich freien Zugang" - -#: ../../mod/admin.php:404 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" - -#: ../../mod/admin.php:417 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registrierung" - -#: ../../mod/admin.php:418 -msgid "File upload" -msgstr "Dateiupload" - -#: ../../mod/admin.php:419 -msgid "Policies" -msgstr "Richtlinien" - -#: ../../mod/admin.php:424 -msgid "Site name" -msgstr "Seitenname" - -#: ../../mod/admin.php:425 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:426 -msgid "Administrator Information" -msgstr "Administrator-Informationen" - -#: ../../mod/admin.php:426 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." - -#: ../../mod/admin.php:427 -msgid "System language" -msgstr "System-Sprache" - -#: ../../mod/admin.php:428 -msgid "System theme" -msgstr "System-Theme" - -#: ../../mod/admin.php:428 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" - -#: ../../mod/admin.php:429 -msgid "Mobile system theme" -msgstr "Mobile System-Theme:" - -#: ../../mod/admin.php:429 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" - -#: ../../mod/admin.php:431 -msgid "Enable Diaspora Protocol" -msgstr "Diaspora-Protokoll aktivieren" - -#: ../../mod/admin.php:431 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Kommunikation mit Diaspora und Friendica – experimentell" - -#: ../../mod/admin.php:432 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" - -#: ../../mod/admin.php:432 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" - -#: ../../mod/admin.php:433 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" - -#: ../../mod/admin.php:433 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." - -#: ../../mod/admin.php:434 -msgid "Does this site allow new member registration?" -msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" - -#: ../../mod/admin.php:435 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" - -#: ../../mod/admin.php:436 -msgid "Register text" -msgstr "Registrierungstext" - -#: ../../mod/admin.php:436 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." - -#: ../../mod/admin.php:437 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" - -#: ../../mod/admin.php:437 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." - -#: ../../mod/admin.php:438 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" - -#: ../../mod/admin.php:438 -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:439 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" - -#: ../../mod/admin.php:439 -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:440 -msgid "Not allowed email domains" -msgstr "Nicht erlaubte Domains für E-Mails" - -#: ../../mod/admin.php:440 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." - -#: ../../mod/admin.php:441 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" - -#: ../../mod/admin.php:441 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist." - -#: ../../mod/admin.php:442 -msgid "Verify Email Addresses" -msgstr "E-Mail-Adressen überprüfen" - -#: ../../mod/admin.php:442 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." - -#: ../../mod/admin.php:443 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" - -#: ../../mod/admin.php:443 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." - -#: ../../mod/admin.php:444 -msgid "Disable discovery tab" -msgstr "Den „Entdecken“-Reiter ausblenden" - -#: ../../mod/admin.php:444 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden." - -#: ../../mod/admin.php:445 -msgid "No login on Homepage" -msgstr "Kein Login auf der Homepage" - -#: ../../mod/admin.php:445 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)." - -#: ../../mod/admin.php:447 -msgid "Proxy user" -msgstr "Proxy Benutzer" - -#: ../../mod/admin.php:448 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../mod/admin.php:449 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" - -#: ../../mod/admin.php:449 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." - -#: ../../mod/admin.php:450 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" - -#: ../../mod/admin.php:450 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." - -#: ../../mod/admin.php:451 -msgid "Poll interval" -msgstr "Abfrageintervall" - -#: ../../mod/admin.php:451 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." - -#: ../../mod/admin.php:452 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" - -#: ../../mod/admin.php:452 -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:508 -msgid "No server found" -msgstr "Kein Server gefunden" - -#: ../../mod/admin.php:515 ../../mod/admin.php:740 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:515 -msgid "for channel" -msgstr "für Kanal" - -#: ../../mod/admin.php:515 -msgid "on server" -msgstr "auf Server" - -#: ../../mod/admin.php:515 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:536 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: ../../mod/admin.php:546 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." - -#: ../../mod/admin.php:549 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." - -#: ../../mod/admin.php:553 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." - -#: ../../mod/admin.php:556 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." - -#: ../../mod/admin.php:571 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." - -#: ../../mod/admin.php:575 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" - -#: ../../mod/admin.php:577 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" - -#: ../../mod/admin.php:578 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" - -#: ../../mod/admin.php:604 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s Nutzer blockiert/freigegeben" -msgstr[1] "%s Nutzer blockiert/freigegeben" - -#: ../../mod/admin.php:611 -#, 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:640 -msgid "Account not found" -msgstr "Konto nicht gefunden" - -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' unblocked" -msgstr "Benutzer '%s' freigegeben" - -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' blocked" -msgstr "Benutzer '%s' blockiert" - -#: ../../mod/admin.php:727 ../../mod/admin.php:739 -msgid "Users" -msgstr "Benutzer" - -#: ../../mod/admin.php:729 ../../mod/admin.php:865 -msgid "select all" -msgstr "Alle auswählen" - -#: ../../mod/admin.php:730 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" - -#: ../../mod/admin.php:731 -msgid "Request date" -msgstr "Antragsdatum" - -#: ../../mod/admin.php:732 -msgid "No registrations." -msgstr "Keine Registrierungen." - -#: ../../mod/admin.php:733 -msgid "Approve" -msgstr "Genehmigen" - -#: ../../mod/admin.php:734 -msgid "Deny" -msgstr "Verweigern" - -#: ../../mod/admin.php:740 -msgid "Register date" -msgstr "Registrierungs-Datum" - -#: ../../mod/admin.php:740 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: ../../mod/admin.php:740 -msgid "Expires" -msgstr "Verfällt" - -#: ../../mod/admin.php:740 -msgid "Service Class" -msgstr "Service-Klasse" - -#: ../../mod/admin.php:742 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?" - -#: ../../mod/admin.php:743 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" - -#: ../../mod/admin.php:776 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s Kanal gesperrt/freigegeben" -msgstr[1] "%s Kanäle gesperrt/freigegeben" - -#: ../../mod/admin.php:783 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s Kanal gelöscht" -msgstr[1] "%s Kanäle gelöscht" - -#: ../../mod/admin.php:802 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" - -#: ../../mod/admin.php:813 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" - -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" - -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" - -#: ../../mod/admin.php:867 -msgid "Censor" -msgstr "Sperren" - -#: ../../mod/admin.php:868 -msgid "Uncensor" -msgstr "Freigeben" - -#: ../../mod/admin.php:871 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:873 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" - -#: ../../mod/admin.php:874 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" - -#: ../../mod/admin.php:913 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." - -#: ../../mod/admin.php:917 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-In %s aktiviert." - -#: ../../mod/admin.php:927 ../../mod/admin.php:1129 -msgid "Disable" -msgstr "Deaktivieren" - -#: ../../mod/admin.php:929 ../../mod/admin.php:1131 -msgid "Enable" -msgstr "Aktivieren" - -#: ../../mod/admin.php:955 ../../mod/admin.php:1160 -msgid "Toggle" -msgstr "Umschalten" - -#: ../../mod/admin.php:963 ../../mod/admin.php:1170 -msgid "Author: " -msgstr "Autor: " - -#: ../../mod/admin.php:964 ../../mod/admin.php:1171 -msgid "Maintainer: " -msgstr "Betreuer:" - -#: ../../mod/admin.php:1093 -msgid "No themes found." -msgstr "Keine Theme gefunden." - -#: ../../mod/admin.php:1152 -msgid "Screenshot" -msgstr "Bildschirmfoto" - -#: ../../mod/admin.php:1200 -msgid "[Experimental]" -msgstr "[Experimentell]" - -#: ../../mod/admin.php:1201 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" - -#: ../../mod/admin.php:1228 -msgid "Log settings updated." -msgstr "Protokoll-Einstellungen aktualisiert." - -#: ../../mod/admin.php:1284 -msgid "Clear" -msgstr "Leeren" - -#: ../../mod/admin.php:1290 -msgid "Debugging" -msgstr "Debugging" - -#: ../../mod/admin.php:1291 -msgid "Log file" -msgstr "Protokolldatei" - -#: ../../mod/admin.php:1291 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis." - -#: ../../mod/admin.php:1292 -msgid "Log level" -msgstr "Protokollstufe" - -#: ../../mod/admin.php:1339 -msgid "New Profile Field" -msgstr "Neues Profilfeld" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Field nickname" -msgstr "Kurzname für das Feld" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "System name of field" -msgstr "Systemname des Feldes" - -#: ../../mod/admin.php:1341 ../../mod/admin.php:1362 -msgid "Input type" -msgstr "Art des Inhalts" - -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Field Name" -msgstr "Feldname" - -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Label on profile pages" -msgstr "Bezeichnung auf Profilseiten" - -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Help text" -msgstr "Hilfetext" - -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Additional info (optional)" -msgstr "Zusätzliche Informationen (optional)" - -#: ../../mod/admin.php:1354 -msgid "Field definition not found" -msgstr "Feld-Definition nicht gefunden" - -#: ../../mod/admin.php:1360 -msgid "Edit Profile Field" -msgstr "Profilfeld bearbeiten" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." - -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." - -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Bitte melde dich an." - -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Dieses Konto löschen" - -#: ../../mod/removeaccount.php:58 -msgid "" -"This will completely remove this account including all its channels from the" -" network. Once this has been done it is not recoverable." -msgstr "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden." - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]" - -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" -msgstr "Wall Fotos" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "interessiert sich für:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - G:i" - -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menü-Element aktualisiert." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menü-Bestandteil hinzugefügt." - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Menü-Bestandteile verwalten" - -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Neues Menü-Bestandteil" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Link Text" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "URL des Links" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use RedMatrix magic-auth if available" -msgstr "Verwende die automatische RedMatrix-Authentifizierung (magic-auth), wenn verfügbar" - -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" - -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Stimmen gesamt" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Durchschnittliche Bewertung" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Diesen Kanal löschen" - -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet, kann dieser Prozess nicht wieder rückgängig gemacht werden." - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" - -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanal löschen" - -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hilfe zu dieser Funktion" - -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Layout-Name" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren." - -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Ungültige Anfrage." - -#: ../../mod/like.php:143 -msgid "thing" -msgstr "Sache" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." - -#: ../../mod/like.php:228 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." - -#: ../../mod/like.php:387 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s stimmt %2$ss %3$s zu" - -#: ../../mod/like.php:389 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s lehnt %2$ss %3$s ab" - -#: ../../mod/like.php:391 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s enthält sich zu %2$ss %3$s" - -#: ../../mod/like.php:393 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s teil" - -#: ../../mod/like.php:395 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s nicht teil" - -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" - -#: ../../mod/like.php:481 -msgid "Action completed." -msgstr "Aktion durchgeführt." - -#: ../../mod/like.php:482 -msgid "Thank you." -msgstr "Vielen Dank." - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Konnte den Empfänger nicht finden." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Nachricht gelöscht." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Nachricht widerrufen." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "An:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Betreff:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Absenden" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Nachricht nicht gefunden." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Nachricht widerrufen" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Die Nachricht wurde widerrufen." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Private Unterhaltung" - -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Antwort senden" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Verwerfen" - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Kanal hinzufügen" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Ein Kanal ist Deine eigene Sammlung von zusammengehörigen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deines Hubs zulässt." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Oder importiere einen bestehenden Kanal von einem anderen Server" - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können" - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Kanaltyp" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Mehr Informationen über Rollen" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../mod/photos.php:159 ../../mod/photos.php:924 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" - -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." - -#: ../../mod/photos.php:523 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." - -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." - -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Fotos hochladen" - -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:909 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" - -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:910 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" - -#: ../../mod/photos.php:556 -msgid "Do not show a status post for this upload" -msgstr "Keine Statusnachricht für diesen Upload anzeigen" - -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" - -#: ../../mod/photos.php:625 ../../mod/photos.php:1149 -#: ../../mod/photos.php:1165 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" - -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" - -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" - -#: ../../mod/photos.php:675 ../../mod/photos.php:1197 -msgid "View Photo" -msgstr "Foto ansehen" - -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." - -#: ../../mod/photos.php:751 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../mod/photos.php:903 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../mod/photos.php:905 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../mod/photos.php:906 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../mod/photos.php:913 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../mod/photos.php:915 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../mod/photos.php:919 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" - -#: ../../mod/photos.php:922 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" - -#: ../../mod/photos.php:1114 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../mod/photos.php:1203 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../mod/photos.php:1226 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" - -#: ../../mod/channel.php:87 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrierung auf einem anderen, angeschlossenen Server" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Passwort" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authentifizieren" - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Umfrage" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Ergebnisse" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Keine Dienstklassenbeschränkungen gefunden." - -#: ../../mod/sharedwithme.php:99 -msgid "Files: shared with me" -msgstr "Dateien, die mit mir geteilt wurden" - -#: ../../mod/sharedwithme.php:103 -msgid "Remove all files" -msgstr "Alle Dateien löschen" - -#: ../../mod/sharedwithme.php:104 -msgid "Remove this file" -msgstr "Diese Datei löschen" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Standard-Schema" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../view/theme/apw/php/config.php:259 #: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "Theme-Einstellungen" -#: ../../view/theme/apw/php/config.php:260 #: ../../view/theme/redbasic/php/config.php:103 -msgid "Set scheme" -msgstr "Schema" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Schriftart" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Icon-Set" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Ausmaß der großen Schatten (Voreinstellung 15px 15px 15px)" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Ausmaß der kleinen Schatten (Voreinstellung 5px 5px 5px)" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Farbe der Schatten (Voreinstellung #000)" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Ecken-Radius (Voreinstellung 5px)" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Zeilenhöhe in Beiträgen und Kommentaren" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Hintergrundbild" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Hintergrunddatei" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Hintergrundfarbe" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Hintergrundbild für die Section" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Hintergrundfarbe für die Section" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Farbe für Beiträge – Hex benutzen" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Farbe für Links – Hex benutzen" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Maximale Breite von Beiträgen (Voreinstellung 400px)" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Minimale Breite von Beiträgen (Voreinstellung 240px)" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Breite des \"generic content wrapper\" (Voreinstellung 48%)" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Schriftfarbe – Hex benutzen" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Größe des Hintergrund-Elements" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Deckkraft der Beiträge" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Nur Beitragsvorschau anzeigen" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Zeige die Seitenleiste auf der Kanal-Seite" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Farbe der Navigationsleiste" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Beitragsfluss" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Linker Rand des Section Elements" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Rechter Rand des Section Elements" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Breite der Section" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Linker Rand des Aside-Elements" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Rechter Rand des Aside-Elements" - -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Light (Red Matrix default)" -msgstr "Hell (RedMatrix-Voreinstellung)" +msgid "Select scheme" +msgstr "Schema wählen" #: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" @@ -8689,6 +9098,14 @@ msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" msgid "Set font-size for the entire application" msgstr "Schriftgröße für die gesamte Anwendung" +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Example: 14px" +msgstr "Beispiel: 14px" + +#: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Schriftgröße für Beiträge und Kommentare" + #: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-color for posts and comments" msgstr "Schriftfarbe für Beiträge und Kommentare" @@ -8702,12 +9119,16 @@ msgid "Set shadow depth of photos" msgstr "Schattentiefe von Fotos" #: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of conversation regions" -msgstr "Maximalbreite der Unterhaltungsbereiche" +msgid "Set maximum width of content region in pixel" +msgstr "Maximalbreite des Inhaltsbereichs in Pixel festlegen" + +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Leave empty for default width" +msgstr "Leer lassen für Standardbreite" #: ../../view/theme/redbasic/php/config.php:129 -msgid "Center conversation regions" -msgstr "Konversationsbereich zentrieren" +msgid "Left align page content" +msgstr "Seiteninhalt linksbündig anzeigen" #: ../../view/theme/redbasic/php/config.php:130 msgid "Set minimum opacity of nav bar - to hide it" @@ -8721,49 +9142,51 @@ msgstr "Größe der Avatare von Themenstartern" msgid "Set size of followup author photos" msgstr "Größe der Avatare von Kommentatoren" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Sloppy photo albums" -msgstr "Schräge Fotoalben" - -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Are you a clean desk or a messy desk person?" -msgstr "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?" - -#: ../../boot.php:1357 +#: ../../boot.php:1302 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1360 +#: ../../boot.php:1305 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1527 +#: ../../boot.php:1472 msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können." +"Create an account to access services and applications within the Hubzilla" +msgstr "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können." -#: ../../boot.php:1555 +#: ../../boot.php:1500 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1556 +#: ../../boot.php:1501 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1559 +#: ../../boot.php:1504 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:1674 -msgid "permission denied" -msgstr "Zugriff verweigert" - -#: ../../boot.php:1675 -msgid "Got Zot?" -msgstr "Haste schon Zot?" - -#: ../../boot.php:2158 +#: ../../boot.php:2130 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" + +#: ../../boot.php:2265 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." + +#: ../../boot.php:2268 +#, php-format +msgid "[hubzilla] Website SSL error for %s" +msgstr "[hubzilla] Website-SSL-Fehler für %s" + +#: ../../boot.php:2305 +msgid "Cron/Scheduled tasks not running." +msgstr "Cron-Aufgaben laufen nicht." + +#: ../../boot.php:2309 +#, php-format +msgid "[hubzilla] Cron tasks not running on %s" +msgstr "[hubzilla] Cron-Aufgaben für %s laufen nicht" diff --git a/view/de/hstrings.php b/view/de/hstrings.php index 2679e9eb1..c890dbc29 100644 --- a/view/de/hstrings.php +++ b/view/de/hstrings.php @@ -5,79 +5,429 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; -$a->strings["Profile Photos"] = "Profilfotos"; +$a->strings["No username found in import file."] = "Kein Benutzername in der Importdatei gefunden."; +$a->strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; +$a->strings["Import completed."] = "Import abgeschlossen."; +$a->strings["parent"] = "Übergeordnetes Verzeichnis"; +$a->strings["Collection"] = "Ordner"; +$a->strings["Principal"] = "Prinzipal"; +$a->strings["Addressbook"] = "Adressbuch"; +$a->strings["Calendar"] = "Kalender"; +$a->strings["Schedule Inbox"] = "Posteingang für überwachte Kalender"; +$a->strings["Schedule Outbox"] = "Postausgang für überwachte Kalender"; +$a->strings["Unknown"] = "Unbekannt"; +$a->strings["%1\$s used"] = "%1\$s verwendet"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s von %2\$s verwendet (%3\$s%)"; +$a->strings["Files"] = "Dateien"; +$a->strings["Total"] = "Summe"; +$a->strings["Shared"] = "Geteilt"; +$a->strings["Create"] = "Erstelle"; +$a->strings["Upload"] = "Hochladen"; +$a->strings["Name"] = "Name"; +$a->strings["Type"] = "Typ"; +$a->strings["Size"] = "Größe"; +$a->strings["Last Modified"] = "Zuletzt geändert"; +$a->strings["Edit"] = "Bearbeiten"; +$a->strings["Delete"] = "Löschen"; +$a->strings["Create new folder"] = "Neuen Ordner anlegen"; +$a->strings["Upload file"] = "Datei hochladen"; +$a->strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; +$a->strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; +$a->strings["Can view my connections"] = "Kann meine Verbindungen sehen"; +$a->strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; +$a->strings["Can view my webpages"] = "Kann meine Webseiten sehen"; +$a->strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +$a->strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; +$a->strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; +$a->strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; +$a->strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; +$a->strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; +$a->strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; +$a->strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; +$a->strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; +$a->strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; +$a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; +$a->strings["Social Networking"] = "Soziales Netzwerk"; +$a->strings["Mostly Public"] = "Weitgehend öffentlich"; +$a->strings["Restricted"] = "Beschränkt"; +$a->strings["Private"] = "Privat"; +$a->strings["Community Forum"] = "Forum"; +$a->strings["Feed Republish"] = "Teilen von Feeds"; +$a->strings["Special Purpose"] = "Für besondere Zwecke"; +$a->strings["Celebrity/Soapbox"] = "Mitteilungs-Kanal (keine Kommentare)"; +$a->strings["Group Repository"] = "Gruppenarchiv"; +$a->strings["Other"] = "Andere"; +$a->strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen"; +$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; +$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; +$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; $a->strings["Permission denied."] = "Zugang verweigert"; +$a->strings["Room is full"] = "Der Raum ist voll"; +$a->strings["Miscellaneous"] = "Verschiedenes"; +$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; +$a->strings["Required"] = "Benötigt"; +$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["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; +$a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; +$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +$a->strings["General Features"] = "Allgemeine Funktionen"; +$a->strings["Content Expiration"] = "Verfall von Inhalten"; +$a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."; +$a->strings["Multiple Profiles"] = "Mehrfachprofile"; +$a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können"; +$a->strings["Advanced Profiles"] = "Erweiterte Profile"; +$a->strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; +$a->strings["Profile Import/Export"] = "Profil-Import/Export"; +$a->strings["Save and load profile details across sites/channels"] = "Speichere Dein Profil, um es in einen anderen Kanal zu importieren"; +$a->strings["Web Pages"] = "Webseiten"; +$a->strings["Provide managed web pages on your channel"] = "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"; +$a->strings["Private Notes"] = "Private Notizen"; +$a->strings["Enables a tool to store notes and reminders"] = "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren"; +$a->strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; +$a->strings["Change channels directly from within the navigation dropdown menu"] = "Wechsle direkt über das Navigationsmenü zu anderen Kanälen"; +$a->strings["Photo Location"] = "Aufnahmeort"; +$a->strings["If location data is available on uploaded photos, link this to a map."] = "Aufnahmeort des Fotos auf einer Karte verlinken, falls verfügbar."; +$a->strings["Expert Mode"] = "Expertenmodus"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren"; +$a->strings["Premium Channel"] = "Premium-Kanal"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; +$a->strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; +$a->strings["Use Markdown"] = "Markdown benutzen"; +$a->strings["Allow use of \"Markdown\" to format posts"] = "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen"; +$a->strings["Large Photos"] = "Große Fotos"; +$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt."; +$a->strings["Channel Sources"] = "Kanal-Quellen"; +$a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds"; +$a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)"; +$a->strings["Enable voting tools"] = "Umfragewerkzeuge aktivieren"; +$a->strings["Provide a class of post which others can vote on"] = "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)"; +$a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; +$a->strings["Search by Date"] = "Suche nach Datum"; +$a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; +$a->strings["Collections Filter"] = "Filter für Sammlung"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchanfragen"; +$a->strings["Save search terms for re-use"] = "Suchbegriffe zur Wiederverwendung abspeichern"; +$a->strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast"; +$a->strings["Network New Tab"] = "Netzwerkreiter Neu"; +$a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"; +$a->strings["Affinity Tool"] = "Beziehungs-Tool"; +$a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung"; +$a->strings["Connection Filtering"] = "Filter für Sammlungen"; +$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtert eingehende Beiträge anhand von Schlüsselwörtern."; +$a->strings["Suggest Channels"] = "Kanäle vorschlagen"; +$a->strings["Show channel suggestions"] = "Kanalvorschläge anzeigen"; +$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; +$a->strings["Tagging"] = "Verschlagworten"; +$a->strings["Ability to tag existing posts"] = "Möglichkeit, um existierende Beiträge zu verschlagworten"; +$a->strings["Post Categories"] = "Beitrags-Kategorien"; +$a->strings["Add categories to your posts"] = "Kategorien für Beiträge"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; +$a->strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; +$a->strings["Dislike Posts"] = "Gefällt-mir-nicht Beiträge"; +$a->strings["Ability to dislike posts/comments"] = "„Gefällt mir nicht“ ermöglichen"; +$a->strings["Star Posts"] = "Beiträge mit Sternchen versehen"; +$a->strings["Ability to mark special posts with a star indicator"] = "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"; +$a->strings["Tag Cloud"] = "Schlagwort-Wolke"; +$a->strings["Provide a personal tag cloud on your channel page"] = "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen"; +$a->strings["Default"] = "Standard"; +$a->strings["Delete this item?"] = "Dieses Element löschen?"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["[+] show all"] = "[+] Alle anzeigen"; +$a->strings["[-] show less"] = "[-] Weniger anzeigen"; +$a->strings["[+] expand"] = "[+] aufklappen"; +$a->strings["[-] collapse"] = "[-] einklappen"; +$a->strings["Password too short"] = "Kennwort zu kurz"; +$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; +$a->strings["everybody"] = "alle"; +$a->strings["Secret Passphrase"] = "geheime Passphrase"; +$a->strings["Passphrase hint"] = "Hinweis zur Passphrase"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; +$a->strings["close all"] = "Alle schließen"; +$a->strings["Nothing new here"] = "Nichts Neues hier"; +$a->strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; +$a->strings["Rating"] = "Bewertung"; +$a->strings["Describe (optional)"] = "Beschreibung (optional)"; +$a->strings["Submit"] = "Bestätigen"; +$a->strings["Please enter a link URL"] = "Gib eine URL ein:"; +$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.prefixFromNow"] = " "; +$a->strings["ago"] = "her"; +$a->strings["from now"] = "von jetzt"; +$a->strings["less than a minute"] = "weniger als eine Minute"; +$a->strings["about a minute"] = "ungefähr eine Minute"; +$a->strings["%d minutes"] = "%d Minuten"; +$a->strings["about an hour"] = "ungefähr eine Stunde"; +$a->strings["about %d hours"] = "ungefähr %d Stunden"; +$a->strings["a day"] = "ein Tag"; +$a->strings["%d days"] = "%d Tage"; +$a->strings["about a month"] = "ungefähr ein Monat"; +$a->strings["%d months"] = "%d Monate"; +$a->strings["about a year"] = "ungefähr ein Jahr"; +$a->strings["%d years"] = "%d Jahre"; +$a->strings[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; +$a->strings["January"] = "Januar"; +$a->strings["February"] = "Februar"; +$a->strings["March"] = "März"; +$a->strings["April"] = "April"; +$a->strings["__ctx:long__ May"] = "Mai"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "Dezember"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mär"; +$a->strings["Apr"] = "Apr"; +$a->strings["__ctx:short__ May"] = "Mai"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Aug"; +$a->strings["Sep"] = "Sep"; +$a->strings["Oct"] = "Okt"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dez"; +$a->strings["Sunday"] = "Sonntag"; +$a->strings["Monday"] = "Montag"; +$a->strings["Tuesday"] = "Dienstag"; +$a->strings["Wednesday"] = "Mittwoch"; +$a->strings["Thursday"] = "Donnerstag"; +$a->strings["Friday"] = "Freitag"; +$a->strings["Saturday"] = "Samstag"; +$a->strings["Sun"] = "So"; +$a->strings["Mon"] = "Mp"; +$a->strings["Tue"] = "Di"; +$a->strings["Wed"] = "Mi"; +$a->strings["Thu"] = "Do"; +$a->strings["Fri"] = "Fr"; +$a->strings["Sat"] = "Sa"; +$a->strings["__ctx:calendar__ today"] = "heute"; +$a->strings["__ctx:calendar__ month"] = "Monat"; +$a->strings["__ctx:calendar__ week"] = "Woche"; +$a->strings["__ctx:calendar__ day"] = "Tag"; +$a->strings["__ctx:calendar__ All day"] = "Ganztägig"; +$a->strings["Frequently"] = "Häufig"; +$a->strings["Hourly"] = "Stündlich"; +$a->strings["Twice daily"] = "Zwei Mal am Tag"; +$a->strings["Daily"] = "Täglich"; +$a->strings["Weekly"] = "Wöchentlich"; +$a->strings["Monthly"] = "Monatlich"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-Mail"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings[" and "] = "und"; +$a->strings["public profile"] = "öffentliches Profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; +$a->strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; +$a->strings["Connect"] = "Verbinden"; +$a->strings["New window"] = "Neues Fenster"; +$a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"; +$a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; +$a->strings["photo"] = "Foto"; +$a->strings["event"] = "Termin"; +$a->strings["channel"] = "Kanal"; +$a->strings["status"] = "Status"; +$a->strings["comment"] = "Kommentar"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; +$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; +$a->strings["poked"] = "stupste"; +$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; +$a->strings["__ctx:title__ Likes"] = "Gefällt mir"; +$a->strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; +$a->strings["__ctx:title__ Agree"] = "Zustimmungen"; +$a->strings["__ctx:title__ Disagree"] = "Ablehnungen"; +$a->strings["__ctx:title__ Abstain"] = "Enthaltungen"; +$a->strings["__ctx:title__ Attending"] = "Zusagen"; +$a->strings["__ctx:title__ Not attending"] = "Absagen"; +$a->strings["__ctx:title__ Might attend"] = "Vielleicht"; +$a->strings["Select"] = "Auswählen"; +$a->strings["Private Message"] = "Private Nachricht"; +$a->strings["Message signature validated"] = "Signatur überprüft"; +$a->strings["Message signature incorrect"] = "Signatur nicht korrekt"; +$a->strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Gespeichert unter:"; +$a->strings["from %s"] = "via %s"; +$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s"; +$a->strings["Expires: %s"] = "Verfällt: %s"; +$a->strings["View in context"] = "Im Zusammenhang anschauen"; +$a->strings["Please wait"] = "Bitte warten"; +$a->strings["remove"] = "lösche"; +$a->strings["Loading..."] = "Lädt ..."; +$a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; +$a->strings["View Source"] = "Quelle anzeigen"; +$a->strings["Follow Thread"] = "Unterhaltung folgen"; +$a->strings["View Status"] = "Status ansehen"; +$a->strings["View Profile"] = "Profil ansehen"; +$a->strings["View Photos"] = "Fotos ansehen"; +$a->strings["Activity/Posts"] = "Aktivitäten/Beiträge"; +$a->strings["Edit Connection"] = "Verbindung bearbeiten"; +$a->strings["Send PM"] = "Sende PN"; +$a->strings["Poke"] = "Anstupsen"; +$a->strings["%s likes this."] = "%s gefällt das."; +$a->strings["%s doesn't like this."] = "%s gefällt das nicht."; +$a->strings["%2\$d people like this."] = array( + 0 => "%2\$d Person gefällt das.", + 1 => "%2\$d Leuten gefällt das.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "%2\$d Person gefällt das nicht.", + 1 => "%2\$d Leuten gefällt das nicht.", +); +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => ", und %d andere", +); +$a->strings["%s like this."] = "%s gefällt das."; +$a->strings["%s don't like this."] = "%s gefällt das nicht."; +$a->strings["Visible to everybody"] = "Sichtbar für jeden"; +$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; +$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; +$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; +$a->strings["Tag term:"] = "Schlagwort:"; +$a->strings["Save to Folder:"] = "Speichern in Ordner:"; +$a->strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; +$a->strings["Preview"] = "Vorschau"; +$a->strings["Share"] = "Teilen"; +$a->strings["Page link name"] = "Link zur Seite"; +$a->strings["Post as"] = "Veröffentlichen als"; +$a->strings["Bold"] = "Fett"; +$a->strings["Italic"] = "Kursiv"; +$a->strings["Underline"] = "Unterstrichen"; +$a->strings["Quote"] = "Zitat"; +$a->strings["Code"] = "Code"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["upload photo"] = "Foto hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anfügen"; +$a->strings["Insert web link"] = "Link einfügen"; +$a->strings["web link"] = "Web-Link"; +$a->strings["Insert video link"] = "Video-Link einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Link einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Standort"; +$a->strings["set location"] = "Standort"; +$a->strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; +$a->strings["Clear browser location"] = "Browser-Standort löschen"; +$a->strings["clear location"] = "Standort löschen"; +$a->strings["Title (optional)"] = "Titel (optional)"; +$a->strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +$a->strings["Permission settings"] = "Berechtigungs-Einstellungen"; +$a->strings["permissions"] = "Berechtigungen"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com"; +$a->strings["Set expiration date"] = "Verfallsdatum"; +$a->strings["Encrypt text"] = "Text verschlüsseln"; +$a->strings["OK"] = "Ok"; +$a->strings["Cancel"] = "Abbrechen"; +$a->strings["Discover"] = "Entdecken"; +$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; +$a->strings["Commented Order"] = "Neueste Kommentare"; +$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; +$a->strings["Posted Order"] = "Neueste Beiträge"; +$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; +$a->strings["Personal"] = "Persönlich"; +$a->strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; +$a->strings["New"] = "Neu"; +$a->strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; +$a->strings["Starred"] = "Markiert"; +$a->strings["Favourite Posts"] = "Markierte Beiträge"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; +$a->strings["Channel"] = "Kanal"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["About"] = "Über"; +$a->strings["Profile Details"] = "Profil-Details"; +$a->strings["Photos"] = "Fotos"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Files and Storage"] = "Dateien und Speicher"; +$a->strings["Chatrooms"] = "Chaträume"; +$a->strings["Bookmarks"] = "Lesezeichen"; +$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +$a->strings["Webpages"] = "Webseiten"; +$a->strings["Manage Webpages"] = "Webseiten verwalten"; +$a->strings["View all"] = "Alles anzeigen"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "Gefällt mir", + 1 => "Gefällt mir", +); +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "Gefällt nicht", + 1 => "Gefällt nicht", +); +$a->strings["__ctx:noun__ Attending"] = array( + 0 => "Zusage", + 1 => "Zusagen", +); +$a->strings["__ctx:noun__ Not Attending"] = array( + 0 => "Absage", + 1 => "Absagen", +); +$a->strings["__ctx:noun__ Undecided"] = array( + 0 => " Unentschlossen", + 1 => "Unentschlossene", +); +$a->strings["__ctx:noun__ Agree"] = array( + 0 => "Zustimmung", + 1 => "Zustimmungen", +); +$a->strings["__ctx:noun__ Disagree"] = array( + 0 => "Ablehnung", + 1 => "Ablehnungen", +); +$a->strings["__ctx:noun__ Abstain"] = array( + 0 => "Enthaltung", + 1 => "Enthaltungen", +); +$a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; $a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes"; $a->strings["Image file is empty."] = "Bilddatei ist leer."; $a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; $a->strings["Photo storage failed."] = "Foto speichern schlug fehl"; -$a->strings["Photo Albums"] = "Fotoalben"; $a->strings["Upload New Photos"] = "Lade neue Fotos hoch"; -$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; -$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; -$a->strings["New Page"] = "Neue Seite"; -$a->strings["Edit"] = "Bearbeiten"; -$a->strings["View"] = "Ansicht"; -$a->strings["Preview"] = "Vorschau"; -$a->strings["Actions"] = "Aktionen"; -$a->strings["Page Link"] = "Seiten-Link"; -$a->strings["Title"] = "Titel"; -$a->strings["Created"] = "Erstellt"; -$a->strings["Edited"] = "Geändert"; -$a->strings["Categories"] = "Kategorien"; -$a->strings["Apps"] = "Apps"; -$a->strings["System"] = "System"; -$a->strings["Personal"] = "Persönlich"; -$a->strings["Create Personal App"] = "Persönliche App erstellen"; -$a->strings["Edit Personal App"] = "Persönliche App bearbeiten"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken"; -$a->strings["Suggestions"] = "Vorschläge"; -$a->strings["See more..."] = "Mehr anzeigen …"; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; -$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen"; -$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"; -$a->strings["Notes"] = "Notizen"; -$a->strings["Save"] = "Speichern"; -$a->strings["Remove term"] = "Eintrag löschen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchanfragen"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Saved Folders"] = "Gespeicherte Ordner"; -$a->strings["Everything"] = "Alles"; -$a->strings["Archives"] = "Archive"; -$a->strings["Refresh"] = "Aktualisieren"; -$a->strings["Me"] = "Ich"; -$a->strings["Best Friends"] = "Beste Freunde"; -$a->strings["Friends"] = "Freunde"; -$a->strings["Co-workers"] = "Kollegen"; -$a->strings["Former Friends"] = "ehem. Freunde"; -$a->strings["Acquaintances"] = "Bekannte"; -$a->strings["Everybody"] = "Jeder"; -$a->strings["Account settings"] = "Konto-Einstellungen"; -$a->strings["Channel settings"] = "Kanal-Einstellungen"; -$a->strings["Additional features"] = "Zusätzliche Funktionen"; -$a->strings["Feature/Addon settings"] = "Plugin-Einstellungen"; -$a->strings["Display settings"] = "Anzeige-Einstellungen"; -$a->strings["Connected apps"] = "Verbundene Apps"; -$a->strings["Export channel"] = "Kanal exportieren"; -$a->strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; -$a->strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -$a->strings["Channel Sources"] = "Kanal-Quellen"; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Check Mail"] = "E-Mails abrufen"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["Chat Rooms"] = "Chaträume"; -$a->strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -$a->strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -$a->strings["photo/image"] = "Foto/Bild"; -$a->strings["Rate Me"] = "Bewerte mich"; -$a->strings["View Ratings"] = "Bewertungen ansehen"; -$a->strings["Public Hubs"] = "Öffentliche Hubs"; -$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung"; -$a->strings["redmatrix"] = "redmatrix"; +$a->strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung"; +$a->strings["\$projectname"] = "\$projectname"; $a->strings["Thank You,"] = "Danke."; $a->strings["%s Administrator"] = "der Administrator von %s"; $a->strings["%s "] = "%s "; @@ -116,6 +466,10 @@ $a->strings["Name:"] = "Name:"; $a->strings["Photo:"] = "Foto:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; $a->strings["[Red:Notify]"] = "[Red:Benachrichtigung]"; +$a->strings["view full size"] = "In Vollbildansicht anschauen"; +$a->strings["Administrator"] = "Administrator"; +$a->strings["No Subject"] = "Kein Betreff"; +$a->strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; $a->strings["prev"] = "vorherige"; $a->strings["first"] = "erste"; $a->strings["last"] = "letzte"; @@ -129,8 +483,8 @@ $a->strings["%d Connection"] = array( ); $a->strings["View Connections"] = "Verbindungen anzeigen"; $a->strings["Search"] = "Suche"; +$a->strings["Save"] = "Speichern"; $a->strings["poke"] = "anstupsen"; -$a->strings["poked"] = "stupste"; $a->strings["ping"] = "anpingen"; $a->strings["pinged"] = "pingte"; $a->strings["prod"] = "knuffen"; @@ -162,46 +516,29 @@ $a->strings["depressed"] = "deprimiert"; $a->strings["motivated"] = "motiviert"; $a->strings["relaxed"] = "entspannt"; $a->strings["surprised"] = "überrascht"; -$a->strings["Monday"] = "Montag"; -$a->strings["Tuesday"] = "Dienstag"; -$a->strings["Wednesday"] = "Mittwoch"; -$a->strings["Thursday"] = "Donnerstag"; -$a->strings["Friday"] = "Freitag"; -$a->strings["Saturday"] = "Samstag"; -$a->strings["Sunday"] = "Sonntag"; -$a->strings["January"] = "Januar"; -$a->strings["February"] = "Februar"; -$a->strings["March"] = "März"; -$a->strings["April"] = "April"; $a->strings["May"] = "Mai"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "August"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "Dezember"; $a->strings["unknown.???"] = "unbekannt.???"; $a->strings["bytes"] = "Bytes"; $a->strings["remove category"] = "Kategorie entfernen"; $a->strings["remove from file"] = "aus der Datei entfernen"; $a->strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; $a->strings["Link to Source"] = "Link zur Quelle"; -$a->strings["Select a page layout: "] = "Ein Seiten-Layout auswählen:"; $a->strings["default"] = "Standard"; -$a->strings["Page content type: "] = "Content-Typ der Seite:"; +$a->strings["Page layout"] = "Seiten-Layout"; +$a->strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen"; +$a->strings["Page content type"] = "Art des Seiteninhalts"; $a->strings["Select an alternate language"] = "Wähle eine alternative Sprache"; -$a->strings["photo"] = "Foto"; -$a->strings["event"] = "Termin"; -$a->strings["status"] = "Status"; -$a->strings["comment"] = "Kommentar"; $a->strings["activity"] = "Aktivität"; -$a->strings["Design"] = "Design"; +$a->strings["Design Tools"] = "Gestaltungswerkzeuge"; $a->strings["Blocks"] = "Blöcke"; $a->strings["Menus"] = "Menüs"; $a->strings["Layouts"] = "Layouts"; $a->strings["Pages"] = "Seiten"; -$a->strings["Collection"] = "Ordner"; +$a->strings["Visible to your default audience"] = "Standard-Sichtbarkeit"; +$a->strings["Show"] = "Anzeigen"; +$a->strings["Don't show"] = "Nicht anzeigen"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["Close"] = "Schließen"; $a->strings["Item was not found."] = "Beitrag wurde nicht gefunden."; $a->strings["No source file."] = "Keine Quelldatei."; $a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; @@ -216,63 +553,188 @@ $a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; $a->strings["Path not found."] = "Pfad nicht gefunden."; $a->strings["mkdir failed."] = "mkdir fehlgeschlagen."; $a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; -$a->strings["Delete this item?"] = "Dieses Element löschen?"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["[+] show all"] = "[+] Alle anzeigen"; -$a->strings["[-] show less"] = "[-] Weniger anzeigen"; -$a->strings["[+] expand"] = "[+] aufklappen"; -$a->strings["[-] collapse"] = "[-] einklappen"; -$a->strings["Password too short"] = "Kennwort zu kurz"; -$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; -$a->strings["everybody"] = "alle"; -$a->strings["Secret Passphrase"] = "geheime Passphrase"; -$a->strings["Passphrase hint"] = "Hinweis zur Passphrase"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; -$a->strings["close all"] = "Alle schließen"; -$a->strings["Nothing new here"] = "Nichts Neues hier"; -$a->strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; -$a->strings["Rating"] = "Bewertung"; -$a->strings["Describe (optional)"] = "Beschreibung (optional)"; -$a->strings["Submit"] = "Bestätigen"; -$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = " "; -$a->strings["ago"] = "her"; -$a->strings["from now"] = "von jetzt"; -$a->strings["less than a minute"] = "weniger als eine Minute"; -$a->strings["about a minute"] = "ungefähr eine Minute"; -$a->strings["%d minutes"] = "%d Minuten"; -$a->strings["about an hour"] = "ungefähr eine Stunde"; -$a->strings["about %d hours"] = "ungefähr %d Stunden"; -$a->strings["a day"] = "ein Tag"; -$a->strings["%d days"] = "%d Tage"; -$a->strings["about a month"] = "ungefähr ein Monat"; -$a->strings["%d months"] = "%d Monate"; -$a->strings["about a year"] = "ungefähr ein Jahr"; -$a->strings["%d years"] = "%d Jahre"; -$a->strings[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; -$a->strings["parent"] = "Übergeordnetes Verzeichnis"; -$a->strings["Principal"] = "Prinzipal"; -$a->strings["Addressbook"] = "Adressbuch"; -$a->strings["Calendar"] = "Kalender"; -$a->strings["Schedule Inbox"] = "Posteingang für überwachte Kalender"; -$a->strings["Schedule Outbox"] = "Postausgang für überwachte Kalender"; -$a->strings["Unknown"] = "Unbekannt"; -$a->strings["%1\$s used"] = "%1\$s verwendet"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s von %2\$s verwendet (%3\$s%)"; -$a->strings["Files"] = "Dateien"; -$a->strings["Total"] = "Summe"; -$a->strings["Shared"] = "Geteilt"; -$a->strings["Create"] = "Erstelle"; -$a->strings["Upload"] = "Hochladen"; -$a->strings["Name"] = "Name"; -$a->strings["Type"] = "Typ"; -$a->strings["Size"] = "Größe"; -$a->strings["Last Modified"] = "Zuletzt geändert"; -$a->strings["Delete"] = "Löschen"; -$a->strings["Create new folder"] = "Neuen Ordner anlegen"; -$a->strings["Upload file"] = "Datei hochladen"; -$a->strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; +$a->strings["Empty path"] = "Leere Pfadangabe"; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; +$a->strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; +$a->strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; +$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; +$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +$a->strings["New Page"] = "Neue Seite"; +$a->strings["View"] = "Ansicht"; +$a->strings["Actions"] = "Aktionen"; +$a->strings["Page Link"] = "Seiten-Link"; +$a->strings["Title"] = "Titel"; +$a->strings["Created"] = "Erstellt"; +$a->strings["Edited"] = "Geändert"; +$a->strings["Profile Photos"] = "Profilfotos"; +$a->strings["Male"] = "Männlich"; +$a->strings["Female"] = "Weiblich"; +$a->strings["Currently Male"] = "Momentan männlich"; +$a->strings["Currently Female"] = "Momentan weiblich"; +$a->strings["Mostly Male"] = "Größtenteils männlich"; +$a->strings["Mostly Female"] = "Größtenteils weiblich"; +$a->strings["Transgender"] = "Transsexuell"; +$a->strings["Intersex"] = "Zwischengeschlechtlich"; +$a->strings["Transsexual"] = "Transsexuell"; +$a->strings["Hermaphrodite"] = "Zwitter"; +$a->strings["Neuter"] = "Geschlechtslos"; +$a->strings["Non-specific"] = "unklar"; +$a->strings["Undecided"] = "Unentschieden"; +$a->strings["Males"] = "Männer"; +$a->strings["Females"] = "Frauen"; +$a->strings["Gay"] = "Schwul"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Keine Bevorzugung"; +$a->strings["Bisexual"] = "Bisexuell"; +$a->strings["Autosexual"] = "Autosexuell"; +$a->strings["Abstinent"] = "Enthaltsam"; +$a->strings["Virgin"] = "Jungfräulich"; +$a->strings["Deviant"] = "Abweichend"; +$a->strings["Fetish"] = "Fetisch"; +$a->strings["Oodles"] = "Unmengen"; +$a->strings["Nonsexual"] = "Sexlos"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Einsam"; +$a->strings["Available"] = "Verfügbar"; +$a->strings["Unavailable"] = "Nicht verfügbar"; +$a->strings["Has crush"] = "Verguckt"; +$a->strings["Infatuated"] = "Verknallt"; +$a->strings["Dating"] = "Lerne gerade jemanden kennen"; +$a->strings["Unfaithful"] = "Treulos"; +$a->strings["Sex Addict"] = "Sexabhängig"; +$a->strings["Friends"] = "Freunde"; +$a->strings["Friends/Benefits"] = "Freunde/Begünstigte"; +$a->strings["Casual"] = "Lose"; +$a->strings["Engaged"] = "Verlobt"; +$a->strings["Married"] = "Verheiratet"; +$a->strings["Imaginarily married"] = "Gewissermaßen verheiratet"; +$a->strings["Partners"] = "Partner"; +$a->strings["Cohabiting"] = "Lebensgemeinschaft"; +$a->strings["Common law"] = "Informelle Ehe"; +$a->strings["Happy"] = "Glücklich"; +$a->strings["Not looking"] = "Nicht Ausschau haltend"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrogen"; +$a->strings["Separated"] = "Getrennt"; +$a->strings["Unstable"] = "Labil"; +$a->strings["Divorced"] = "Geschieden"; +$a->strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; +$a->strings["Widowed"] = "Verwitwet"; +$a->strings["Uncertain"] = "Ungewiss"; +$a->strings["It's complicated"] = "Es ist kompliziert"; +$a->strings["Don't care"] = "Interessiert mich nicht"; +$a->strings["Ask me"] = "Frag mich mal"; +$a->strings["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet"; +$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$a->strings["Location:"] = "Ort:"; +$a->strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; +$a->strings["Not specified"] = "Keine Angabe"; +$a->strings["Needs Action"] = "Aktion erforderlich"; +$a->strings["Completed"] = "Abgeschlossen"; +$a->strings["In Process"] = "In Bearbeitung"; +$a->strings["Cancelled"] = "gestrichen"; +$a->strings["Site Admin"] = "Hub-Administration"; +$a->strings["Address Book"] = "Adressbuch"; +$a->strings["Login"] = "Anmelden"; +$a->strings["Channel Manager"] = "Kanal-Manager"; +$a->strings["Matrix"] = "Matrix"; +$a->strings["Settings"] = "Einstellungen"; +$a->strings["Channel Home"] = "Mein Kanal"; +$a->strings["Profile"] = "Profil"; +$a->strings["Events"] = "Termine"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["Help"] = "Hilfe"; +$a->strings["Mail"] = "Mail"; +$a->strings["Mood"] = "Laune"; +$a->strings["Chat"] = "Chat"; +$a->strings["Probe"] = "Testen"; +$a->strings["Suggest"] = "Empfehlen"; +$a->strings["Random Channel"] = "Zufälliger Kanal"; +$a->strings["Invite"] = "Einladen"; +$a->strings["Features"] = "Funktionen"; +$a->strings["Language"] = "Sprache"; +$a->strings["Post"] = "Beitrag"; +$a->strings["Profile Photo"] = "Profilfoto"; +$a->strings["Update"] = "Aktualisieren"; +$a->strings["Install"] = "Installieren"; +$a->strings["Purchase"] = "Kaufen"; +$a->strings["Logged out."] = "Ausgeloggt."; +$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +$a->strings["Login failed."] = "Login fehlgeschlagen."; +$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$a->strings["Install %s element: "] = "Element %s installieren: "; +$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; +$a->strings["webpage"] = "Webseite"; +$a->strings["layout"] = "Layout"; +$a->strings["block"] = "Block"; +$a->strings["menu"] = "Menü"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +$a->strings["post"] = "Beitrag"; +$a->strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; +$a->strings["$1 spoiler"] = "$1 Spoiler"; +$a->strings["$1 wrote:"] = "$1 schrieb:"; +$a->strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; +$a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt"; +$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; +$a->strings["An invitation is required."] = "Eine Einladung wird benötigt"; +$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden"; +$a->strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; +$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen"; +$a->strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; +$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; +$a->strings["your registration password"] = "Dein Registrierungspasswort"; +$a->strings["Registration details for %s"] = "Registrierungsdetails für %s"; +$a->strings["Account approved."] = "Account bestätigt."; +$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen"; +$a->strings["Account verified. Please login."] = "Konto geprüft. Bitte melde Dich an!"; +$a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; +$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; +$a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; +$a->strings["Channel location missing."] = "Adresse des Kanals fehlt."; +$a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; +$a->strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; +$a->strings["Protocol disabled."] = "Protokoll deaktiviert."; +$a->strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; +$a->strings["local account not found."] = "Lokales Konto nicht gefunden."; +$a->strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; +$a->strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +$a->strings["Advanced"] = "Fortgeschritten"; +$a->strings["Find Channels"] = "Finde Kanäle"; +$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; +$a->strings["Find"] = "Finde"; +$a->strings["Channel Suggestions"] = "Kanal-Vorschläge"; +$a->strings["Random Profile"] = "Zufallsprofil"; +$a->strings["Invite Friends"] = "Lade Freunde ein"; +$a->strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Kategorien"; +$a->strings["%d connection in common"] = array( + 0 => "%d gemeinsame Verbindung", + 1 => "%d gemeinsame Verbindungen", +); +$a->strings["show more"] = "mehr zeigen"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen."; +$a->strings["Add new connections to this collection (privacy group)"] = "Neue Verbindungen zu dieser Sammlung (Privatsphäre-Gruppe) hinzufügen"; +$a->strings["All Channels"] = "Alle Kanäle"; +$a->strings["edit"] = "Bearbeiten"; +$a->strings["Collections"] = "Sammlungen"; +$a->strings["Edit collection"] = "Sammlung bearbeiten"; +$a->strings["Add new collection"] = "Neue Sammlung hinzufügen"; +$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind"; +$a->strings["add"] = "hinzufügen"; $a->strings["Tags"] = "Schlagwörter"; $a->strings["Keywords"] = "Schlüsselwörter"; $a->strings["have"] = "habe"; @@ -283,96 +745,12 @@ $a->strings["like"] = "mag"; $a->strings["likes"] = "gefällt"; $a->strings["dislike"] = "verurteile"; $a->strings["dislikes"] = "missfällt"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "Gefällt mir", - 1 => "Gefällt mir", -); -$a->strings["General Features"] = "Allgemeine Funktionen"; -$a->strings["Content Expiration"] = "Verfall von Inhalten"; -$a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."; -$a->strings["Multiple Profiles"] = "Mehrfachprofile"; -$a->strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können"; -$a->strings["Advanced Profiles"] = "Erweiterte Profile"; -$a->strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; -$a->strings["Profile Import/Export"] = "Profil-Import/Export"; -$a->strings["Save and load profile details across sites/channels"] = "Speichere Dein Profil, um es in einen anderen Kanal zu importieren"; -$a->strings["Web Pages"] = "Webseiten"; -$a->strings["Provide managed web pages on your channel"] = "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"; -$a->strings["Private Notes"] = "Private Notizen"; -$a->strings["Enables a tool to store notes and reminders"] = "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren"; -$a->strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; -$a->strings["Change channels directly from within the navigation dropdown menu"] = "Wechsle direkt über das Navigationsmenü zu anderen Kanälen"; -$a->strings["Extended Identity Sharing"] = "Erweitertes Teilen von Identitäten"; -$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt."; -$a->strings["Expert Mode"] = "Expertenmodus"; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren"; -$a->strings["Premium Channel"] = "Premium-Kanal"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; -$a->strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; -$a->strings["Use Markdown"] = "Markdown benutzen"; -$a->strings["Allow use of \"Markdown\" to format posts"] = "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen"; -$a->strings["Large Photos"] = "Große Fotos"; -$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt."; -$a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds"; -$a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)"; -$a->strings["Enable voting tools"] = "Umfragewerkzeuge aktivieren"; -$a->strings["Provide a class of post which others can vote on"] = "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)"; -$a->strings["Flag Adult Photos"] = "Nicht jugendfreie Fotos markieren"; -$a->strings["Provide photo edit option to hide adult photos from default album view"] = "Stellt eine Option zum Verstecken von Fotos mit nicht jugendfreien Inhalten in der Standard-Albumansicht bereit"; -$a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; -$a->strings["Search by Date"] = "Suche nach Datum"; -$a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; -$a->strings["Collections Filter"] = "Filter für Sammlung"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"; -$a->strings["Save search terms for re-use"] = "Suchbegriffe zur Wiederverwendung abspeichern"; -$a->strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast"; -$a->strings["Network New Tab"] = "Netzwerkreiter Neu"; -$a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"; -$a->strings["Affinity Tool"] = "Beziehungs-Tool"; -$a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung"; -$a->strings["Suggest Channels"] = "Kanäle vorschlagen"; -$a->strings["Show channel suggestions"] = "Kanalvorschläge anzeigen"; -$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; -$a->strings["Tagging"] = "Verschlagworten"; -$a->strings["Ability to tag existing posts"] = "Möglichkeit, um existierende Beiträge zu verschlagworten"; -$a->strings["Post Categories"] = "Beitrags-Kategorien"; -$a->strings["Add categories to your posts"] = "Kategorien für Beiträge"; -$a->strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; -$a->strings["Dislike Posts"] = "Gefällt-mir-nicht Beiträge"; -$a->strings["Ability to dislike posts/comments"] = "„Gefällt mir nicht“ ermöglichen"; -$a->strings["Star Posts"] = "Beiträge mit Sternchen versehen"; -$a->strings["Ability to mark special posts with a star indicator"] = "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"; -$a->strings["Tag Cloud"] = "Schlagwort-Wolke"; -$a->strings["Provide a personal tag cloud on your channel page"] = "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen"; -$a->strings["Logged out."] = "Ausgeloggt."; -$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -$a->strings["Login failed."] = "Login fehlgeschlagen."; -$a->strings["Frequently"] = "Häufig"; -$a->strings["Hourly"] = "Stündlich"; -$a->strings["Twice daily"] = "Zwei Mal am Tag"; -$a->strings["Daily"] = "Täglich"; -$a->strings["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-Mail"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen."; -$a->strings["Default privacy group for new contacts"] = "Standard-Sammlung für neue Kontakte"; -$a->strings["All Channels"] = "Alle Kanäle"; -$a->strings["edit"] = "Bearbeiten"; -$a->strings["Collections"] = "Sammlungen"; -$a->strings["Edit collection"] = "Sammlung bearbeiten"; -$a->strings["Create a new collection"] = "Neue Sammlung erzeugen"; -$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind"; +$a->strings["Directory Options"] = "Verzeichnisoptionen"; +$a->strings["Safe Mode"] = "Sicherer Modus"; +$a->strings["No"] = "Nein"; +$a->strings["Yes"] = "Ja"; +$a->strings["Public Forums Only"] = "Nur öffentliche Foren"; +$a->strings["This Website Only"] = "Nur dieser Hub"; $a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; $a->strings["Empty name"] = "Namensfeld leer"; $a->strings["Name too long"] = "Name ist zu lang"; @@ -392,7 +770,6 @@ $a->strings["Edit Profile"] = "Profile bearbeiten"; $a->strings["Profile Image"] = "Profilfoto:"; $a->strings["visible to everybody"] = "sichtbar für jeden"; $a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["Location:"] = "Ort:"; $a->strings["Gender:"] = "Geschlecht:"; $a->strings["Status:"] = "Status:"; $a->strings["Homepage:"] = "Homepage:"; @@ -405,7 +782,6 @@ $a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:"; $a->strings["[No description]"] = "[Keine Beschreibung]"; $a->strings["Event Reminders"] = "Termin-Erinnerungen"; $a->strings["Events this week:"] = "Termine in dieser Woche:"; -$a->strings["Profile"] = "Profil"; $a->strings["Full Name:"] = "Voller Name:"; $a->strings["Like this channel"] = "Dieser Kanal gefällt mir"; $a->strings["j F, Y"] = "j. F Y"; @@ -436,111 +812,6 @@ $a->strings["No recipient provided."] = "Kein Empfänger angegeben"; $a->strings["[no subject]"] = "[no subject]"; $a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; $a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; -$a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; -$a->strings["Channel location missing."] = "Adresse des Kanals fehlt."; -$a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; -$a->strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; -$a->strings["Protocol disabled."] = "Protokoll deaktiviert."; -$a->strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; -$a->strings["local account not found."] = "Lokales Konto nicht gefunden."; -$a->strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -$a->strings["Default"] = "Standard"; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; -$a->strings["Required"] = "Benötigt"; -$a->strings["never"] = "Nie"; -$a->strings["less than a second ago"] = "Vor weniger als einer Sekunde"; -$a->strings["year"] = "Jahr"; -$a->strings["years"] = "Jahre"; -$a->strings["month"] = "Monat"; -$a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; -$a->strings["day"] = "Tag"; -$a->strings["days"] = "Tage"; -$a->strings["hour"] = "Stunde"; -$a->strings["hours"] = "Stunden"; -$a->strings["minute"] = "Minute"; -$a->strings["minutes"] = "Minuten"; -$a->strings["second"] = "Sekunde"; -$a->strings["seconds"] = "Sekunden"; -$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -$a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; -$a->strings["Attachments:"] = "Anhänge:"; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; -$a->strings["Redmatrix event notification:"] = "RedMatrix Termin-Benachrichtigung:"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen"; -$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; -$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; -$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; -$a->strings["Room is full"] = "Der Raum ist voll"; -$a->strings["Logout"] = "Abmelden"; -$a->strings["End this session"] = "Beende diese Sitzung"; -$a->strings["Home"] = "Home"; -$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["View Profile"] = "Profil ansehen"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Edit Profiles"] = "Profile bearbeiten"; -$a->strings["Manage/Edit profiles"] = "Profile verwalten"; -$a->strings["Edit your profile"] = "Profil bearbeiten"; -$a->strings["Photos"] = "Fotos"; -$a->strings["Your photos"] = "Deine Bilder"; -$a->strings["Your files"] = "Deine Dateien"; -$a->strings["Chat"] = "Chat"; -$a->strings["Your chatrooms"] = "Deine Chaträume"; -$a->strings["Bookmarks"] = "Lesezeichen"; -$a->strings["Your bookmarks"] = "Deine Lesezeichen"; -$a->strings["Webpages"] = "Webseiten"; -$a->strings["Your webpages"] = "Deine Webseiten"; -$a->strings["Login"] = "Anmelden"; -$a->strings["Sign in"] = "Anmelden"; -$a->strings["%s - click to logout"] = "%s - Klick zum Abmelden"; -$a->strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; -$a->strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Register"] = "Registrieren"; -$a->strings["Create an account"] = "Erzeuge ein Konto"; -$a->strings["Help"] = "Hilfe"; -$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; -$a->strings["Search site content"] = "Durchsuche Seiten-Inhalt"; -$a->strings["Directory"] = "Verzeichnis"; -$a->strings["Channel Directory"] = "Kanal-Verzeichnis"; -$a->strings["Matrix"] = "Matrix"; -$a->strings["Your matrix"] = "Deine Matrix"; -$a->strings["Mark all matrix notifications seen"] = "Markiere alle Matrix-Benachrichtigungen als angesehen"; -$a->strings["Channel Home"] = "Mein Kanal"; -$a->strings["Channel home"] = "Mein Kanal"; -$a->strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -$a->strings["Connections"] = "Verbindungen"; -$a->strings["Notices"] = "Benachrichtigungen"; -$a->strings["Notifications"] = "Benachrichtigungen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; -$a->strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; -$a->strings["Mail"] = "Mail"; -$a->strings["Private mail"] = "Persönliche Mail"; -$a->strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; -$a->strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["Events"] = "Termine"; -$a->strings["Event Calendar"] = "Terminkalender"; -$a->strings["See all events"] = "Alle Termine ansehen"; -$a->strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; -$a->strings["Channel Manager"] = "Kanal-Manager"; -$a->strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; -$a->strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -$a->strings["Admin"] = "Administration"; -$a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -$a->strings["Loading..."] = "Lädt ..."; -$a->strings["@name, #tag, content"] = "@Name, #Schlagwort, Text"; -$a->strings["Please wait..."] = "Bitte warten..."; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; -$a->strings["Private Message"] = "Private Nachricht"; -$a->strings["Select"] = "Auswählen"; $a->strings["Save to Folder"] = "In Ordner speichern"; $a->strings["I will attend"] = "Ich werde teilnehmen"; $a->strings["I will not attend"] = "Ich werde nicht teilnehmen"; @@ -548,17 +819,10 @@ $a->strings["I might attend"] = "Ich werde vielleicht teilnehmen"; $a->strings["I agree"] = "Ich stimme zu"; $a->strings["I disagree"] = "Ich lehne ab"; $a->strings["I abstain"] = "Ich enthalte mich"; -$a->strings["View all"] = "Alles anzeigen"; -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "Gefällt nicht", - 1 => "Gefällt nicht", -); $a->strings["Add Star"] = "Stern hinzufügen"; $a->strings["Remove Star"] = "Stern entfernen"; $a->strings["Toggle Star Status"] = "Markierungsstatus (Stern) umschalten"; $a->strings["starred"] = "markiert"; -$a->strings["Message signature validated"] = "Signatur überprüft"; -$a->strings["Message signature incorrect"] = "Signatur nicht korrekt"; $a->strings["Add Tag"] = "Tag hinzufügen"; $a->strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; $a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; @@ -573,41 +837,16 @@ $a->strings["to"] = "an"; $a->strings["via"] = "via"; $a->strings["Wall-to-Wall"] = "Wall-to-Wall"; $a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings[" from %s"] = "von %s"; -$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s"; -$a->strings["Expires: %s"] = "Verfällt: %s"; +$a->strings["Delivery Report"] = "Zustellungsbericht"; $a->strings["Save Bookmarks"] = "Favoriten speichern"; $a->strings["Add to Calendar"] = "Zum Kalender hinzufügen"; $a->strings["Mark all seen"] = "Alle als gelesen markieren"; $a->strings["__ctx:noun__ Likes"] = "Gefällt mir"; $a->strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; -$a->strings["Close"] = "Schließen"; -$a->strings["Please wait"] = "Bitte warten"; $a->strings["This is you"] = "Das bist Du"; -$a->strings["Bold"] = "Fett"; -$a->strings["Italic"] = "Kursiv"; -$a->strings["Underline"] = "Unterstrichen"; -$a->strings["Quote"] = "Zitat"; -$a->strings["Code"] = "Code"; $a->strings["Image"] = "Bild"; -$a->strings["Link"] = "Link"; +$a->strings["Insert Link"] = "Link einfügen"; $a->strings["Video"] = "Video"; -$a->strings["Encrypt text"] = "Text verschlüsseln"; -$a->strings[" and "] = "und"; -$a->strings["public profile"] = "öffentliches Profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; -$a->strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; -$a->strings["Directory Options"] = "Verzeichnisoptionen"; -$a->strings["Alphabetic"] = "alphabetisch"; -$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; -$a->strings["Newest to Oldest"] = "Neueste zuerst"; -$a->strings["Oldest to Newest"] = "Älteste zuerst"; -$a->strings["Public Forums Only"] = "Nur öffentliche Foren"; -$a->strings["Sort"] = "Sortieren"; -$a->strings["Enable Safe Search"] = "Sichere Suche einschalten"; -$a->strings["Disable Safe Search"] = "Sichere Suche ausschalten"; -$a->strings["Safe Mode"] = "Sicherer Modus"; $a->strings["Permission denied"] = "Keine Berechtigung"; $a->strings["(Unknown)"] = "(Unbekannt)"; $a->strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; @@ -624,321 +863,253 @@ $a->strings["Collection is empty."] = "Sammlung ist leer."; $a->strings["Collection: %s"] = "Sammlung: %s"; $a->strings["Connection: %s"] = "Verbindung: %s"; $a->strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; -$a->strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; -$a->strings["New window"] = "Neues Fenster"; -$a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"; -$a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; -$a->strings["view full size"] = "In Vollbildansicht anschauen"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["Install design element: "] = "Design-Element installieren:"; -$a->strings["QR code"] = "QR-Code"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -$a->strings["post"] = "Beitrag"; -$a->strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; -$a->strings["$1 spoiler"] = "$1 Spoiler"; -$a->strings["$1 wrote:"] = "$1 schrieb:"; -$a->strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -$a->strings["Advanced"] = "Fortgeschritten"; -$a->strings["Find Channels"] = "Finde Kanäle"; -$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morgenstein, Angeln"; -$a->strings["Find"] = "Finde"; -$a->strings["Channel Suggestions"] = "Kanal-Vorschläge"; -$a->strings["Random Profile"] = "Zufallsprofil"; -$a->strings["Invite Friends"] = "Lade Freunde ein"; -$a->strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; -$a->strings["%d connection in common"] = array( - 0 => "%d gemeinsame Verbindung", - 1 => "%d gemeinsame Verbindungen", -); -$a->strings["show more"] = "mehr zeigen"; -$a->strings["Visible to your default audience"] = "Standard-Sichtbarkeit"; -$a->strings["Show"] = "Anzeigen"; -$a->strings["Don't show"] = "Nicht anzeigen"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; +$a->strings["Apps"] = "Apps"; +$a->strings["System"] = "System"; +$a->strings["Create Personal App"] = "Persönliche App erstellen"; +$a->strings["Edit Personal App"] = "Persönliche App bearbeiten"; +$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken"; +$a->strings["Suggestions"] = "Vorschläge"; +$a->strings["See more..."] = "Mehr anzeigen …"; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; +$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen"; +$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"; +$a->strings["Notes"] = "Notizen"; +$a->strings["Remove term"] = "Eintrag löschen"; +$a->strings["Archives"] = "Archive"; +$a->strings["Me"] = "Ich"; +$a->strings["Family"] = "Familie"; +$a->strings["Acquaintances"] = "Bekannte"; +$a->strings["All"] = "Alle"; +$a->strings["Refresh"] = "Aktualisieren"; +$a->strings["Account settings"] = "Konto-Einstellungen"; +$a->strings["Channel settings"] = "Kanal-Einstellungen"; +$a->strings["Additional features"] = "Zusätzliche Funktionen"; +$a->strings["Feature/Addon settings"] = "Plugin-Einstellungen"; +$a->strings["Display settings"] = "Anzeige-Einstellungen"; +$a->strings["Connected apps"] = "Verbundene Apps"; +$a->strings["Export channel"] = "Kanal exportieren"; +$a->strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; +$a->strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +$a->strings["Private Mail Menu"] = "Private Nachrichten"; +$a->strings["Check Mail"] = "Nachrichten abrufen"; +$a->strings["Combined View"] = "Kombinierte Anzeige"; +$a->strings["Inbox"] = "Eingang"; +$a->strings["Outbox"] = "Ausgang"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["Conversations"] = "Konversationen"; +$a->strings["Received Messages"] = "Erhaltene Nachrichten"; +$a->strings["Sent Messages"] = "Gesendete Nachrichten"; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - G:i"; +$a->strings["Chat Rooms"] = "Chaträume"; +$a->strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +$a->strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +$a->strings["photo/image"] = "Foto/Bild"; +$a->strings["Rate Me"] = "Bewerte mich"; +$a->strings["View Ratings"] = "Bewertungen ansehen"; +$a->strings["Public Hubs"] = "Öffentliche Hubs"; +$a->strings["Forums"] = "Foren"; +$a->strings["Tasks"] = "Aufgaben"; +$a->strings["Documentation"] = "Dokumentation"; +$a->strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; +$a->strings["For Members"] = "Für Mitglieder"; +$a->strings["For Administrators"] = "Für Administratoren"; +$a->strings["For Developers"] = "Für Entwickler"; +$a->strings["Site"] = "Seite"; +$a->strings["Accounts"] = "Konten"; +$a->strings["Channels"] = "Kanäle"; +$a->strings["Plugins"] = "Plug-Ins"; +$a->strings["Themes"] = "Themes"; +$a->strings["Inspect queue"] = "Warteschlange kontrollieren"; +$a->strings["Profile Config"] = "Profilkonfiguration"; +$a->strings["DB updates"] = "DB-Aktualisierungen"; +$a->strings["Logs"] = "Protokolle"; +$a->strings["Admin"] = "Administration"; +$a->strings["Plugin Features"] = "Plug-In Funktionen"; +$a->strings["User registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; $a->strings["Invalid data packet"] = "Ungültiges Datenpaket"; $a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; $a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; -$a->strings["Male"] = "Männlich"; -$a->strings["Female"] = "Weiblich"; -$a->strings["Currently Male"] = "Momentan männlich"; -$a->strings["Currently Female"] = "Momentan weiblich"; -$a->strings["Mostly Male"] = "Größtenteils männlich"; -$a->strings["Mostly Female"] = "Größtenteils weiblich"; -$a->strings["Transgender"] = "Transsexuell"; -$a->strings["Intersex"] = "Zwischengeschlechtlich"; -$a->strings["Transsexual"] = "Transsexuell"; -$a->strings["Hermaphrodite"] = "Zwitter"; -$a->strings["Neuter"] = "Geschlechtslos"; -$a->strings["Non-specific"] = "unklar"; -$a->strings["Other"] = "Andere"; -$a->strings["Undecided"] = "Unentschieden"; -$a->strings["Males"] = "Männer"; -$a->strings["Females"] = "Frauen"; -$a->strings["Gay"] = "Schwul"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Keine Bevorzugung"; -$a->strings["Bisexual"] = "Bisexuell"; -$a->strings["Autosexual"] = "Autosexuell"; -$a->strings["Abstinent"] = "Enthaltsam"; -$a->strings["Virgin"] = "Jungfräulich"; -$a->strings["Deviant"] = "Abweichend"; -$a->strings["Fetish"] = "Fetisch"; -$a->strings["Oodles"] = "Unmengen"; -$a->strings["Nonsexual"] = "Sexlos"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Einsam"; -$a->strings["Available"] = "Verfügbar"; -$a->strings["Unavailable"] = "Nicht verfügbar"; -$a->strings["Has crush"] = "Verguckt"; -$a->strings["Infatuated"] = "Verknallt"; -$a->strings["Dating"] = "Lerne gerade jemanden kennen"; -$a->strings["Unfaithful"] = "Treulos"; -$a->strings["Sex Addict"] = "Sexabhängig"; -$a->strings["Friends/Benefits"] = "Freunde/Begünstigte"; -$a->strings["Casual"] = "Lose"; -$a->strings["Engaged"] = "Verlobt"; -$a->strings["Married"] = "Verheiratet"; -$a->strings["Imaginarily married"] = "Gewissermaßen verheiratet"; -$a->strings["Partners"] = "Partner"; -$a->strings["Cohabiting"] = "Lebensgemeinschaft"; -$a->strings["Common law"] = "Informelle Ehe"; -$a->strings["Happy"] = "Glücklich"; -$a->strings["Not looking"] = "Nicht Ausschau haltend"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Betrogen"; -$a->strings["Separated"] = "Getrennt"; -$a->strings["Unstable"] = "Labil"; -$a->strings["Divorced"] = "Geschieden"; -$a->strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; -$a->strings["Widowed"] = "Verwitwet"; -$a->strings["Uncertain"] = "Ungewiss"; -$a->strings["It's complicated"] = "Es ist kompliziert"; -$a->strings["Don't care"] = "Interessiert mich nicht"; -$a->strings["Ask me"] = "Frag mich mal"; -$a->strings["Site Admin"] = "Hub-Administration"; -$a->strings["Address Book"] = "Adressbuch"; -$a->strings["Mood"] = "Laune"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["Probe"] = "Testen"; -$a->strings["Suggest"] = "Empfehlen"; -$a->strings["Random Channel"] = "Zufälliger Kanal"; -$a->strings["Invite"] = "Einladen"; -$a->strings["Features"] = "Funktionen"; -$a->strings["Language"] = "Sprache"; -$a->strings["Post"] = "Beitrag"; -$a->strings["Profile Photo"] = "Profilfoto"; -$a->strings["Update"] = "Aktualisieren"; -$a->strings["Install"] = "Installieren"; -$a->strings["Purchase"] = "Kaufen"; -$a->strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; -$a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt"; -$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; -$a->strings["An invitation is required."] = "Eine Einladung wird benötigt"; -$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden"; -$a->strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; -$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen"; -$a->strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; -$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; -$a->strings["Administrator"] = "Administrator"; -$a->strings["your registration password"] = "Dein Registrierungspasswort"; -$a->strings["Registration details for %s"] = "Registrierungsdetails für %s"; -$a->strings["Account approved."] = "Account bestätigt."; -$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen"; -$a->strings["Account verified. Please login."] = "Konto geprüft. Bitte melde Dich an!"; -$a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; -$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; -$a->strings["channel"] = "Kanal"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; -$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; -$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; -$a->strings["__ctx:title__ Likes"] = "Gefällt mir"; -$a->strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; -$a->strings["__ctx:title__ Agree"] = "Zustimmungen"; -$a->strings["__ctx:title__ Disagree"] = "Ablehnungen"; -$a->strings["__ctx:title__ Abstain"] = "Enthaltungen"; -$a->strings["__ctx:title__ Attending"] = "Zusagen"; -$a->strings["__ctx:title__ Not attending"] = "Absagen"; -$a->strings["__ctx:title__ Might attend"] = "Vielleicht"; -$a->strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Gespeichert unter:"; -$a->strings["View in context"] = "Im Zusammenhang anschauen"; -$a->strings["remove"] = "lösche"; -$a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; -$a->strings["View Source"] = "Quelle anzeigen"; -$a->strings["Follow Thread"] = "Unterhaltung folgen"; -$a->strings["View Status"] = "Status ansehen"; -$a->strings["View Photos"] = "Fotos ansehen"; -$a->strings["Matrix Activity"] = "Matrix-Aktivität"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Send PM"] = "Sende PN"; -$a->strings["%s likes this."] = "%s gefällt das."; -$a->strings["%s doesn't like this."] = "%s gefällt das nicht."; -$a->strings["%2\$d people like this."] = array( - 0 => "%2\$d Person gefällt das.", - 1 => "%2\$d Leuten gefällt das.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "%2\$d Person gefällt das nicht.", - 1 => "%2\$d Leuten gefällt das nicht.", -); -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = array( - 0 => "", - 1 => ", und %d andere", -); -$a->strings["%s like this."] = "%s gefällt das."; -$a->strings["%s don't like this."] = "%s gefällt das nicht."; -$a->strings["Visible to everybody"] = "Sichtbar für jeden"; -$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; -$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; -$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; -$a->strings["Tag term:"] = "Schlagwort:"; -$a->strings["Save to Folder:"] = "Speichern in Ordner:"; -$a->strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; -$a->strings["Share"] = "Teilen"; -$a->strings["Page link title"] = "Seitentitel-Link"; -$a->strings["Post as"] = "Veröffentlichen als"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["upload photo"] = "Foto hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anfügen"; -$a->strings["Insert web link"] = "Link einfügen"; -$a->strings["web link"] = "Web-Link"; -$a->strings["Insert video link"] = "Video-Link einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Link einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Standort"; -$a->strings["set location"] = "Standort"; -$a->strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; -$a->strings["Clear browser location"] = "Browser-Standort löschen"; -$a->strings["clear location"] = "Standort löschen"; -$a->strings["Title (optional)"] = "Titel (optional)"; -$a->strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -$a->strings["Permission settings"] = "Berechtigungs-Einstellungen"; -$a->strings["permissions"] = "Berechtigungen"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com"; -$a->strings["Set expiration date"] = "Verfallsdatum"; -$a->strings["OK"] = "Ok"; -$a->strings["Cancel"] = "Abbrechen"; -$a->strings["Discover"] = "Entdecken"; -$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; -$a->strings["Commented Order"] = "Neueste Kommentare"; -$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; -$a->strings["Posted Order"] = "Neueste Beiträge"; -$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; -$a->strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; -$a->strings["New"] = "Neu"; -$a->strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; -$a->strings["Starred"] = "Markiert"; -$a->strings["Favourite Posts"] = "Markierte Beiträge"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; -$a->strings["Channel"] = "Kanal"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["About"] = "Über"; -$a->strings["Profile Details"] = "Profil-Details"; -$a->strings["Files and Storage"] = "Dateien und Speicher"; -$a->strings["Chatrooms"] = "Chaträume"; -$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; -$a->strings["Manage Webpages"] = "Webseiten verwalten"; -$a->strings["__ctx:noun__ Attending"] = array( - 0 => "Zusage", - 1 => "Zusagen", -); -$a->strings["__ctx:noun__ Not Attending"] = array( - 0 => "Absage", - 1 => "Absagen", -); -$a->strings["__ctx:noun__ Undecided"] = array( - 0 => " Unentschlossen", - 1 => "Unentschlossene", -); -$a->strings["__ctx:noun__ Agree"] = array( - 0 => "Zustimmung", - 1 => "Zustimmungen", -); -$a->strings["__ctx:noun__ Disagree"] = array( - 0 => "Ablehnung", - 1 => "Ablehnungen", -); -$a->strings["__ctx:noun__ Abstain"] = array( - 0 => "Enthaltung", - 1 => "Enthaltungen", -); -$a->strings["Embedded content"] = "Eingebetteter Inhalt"; -$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet"; -$a->strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; -$a->strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; -$a->strings["Can view my photo albums"] = "Kann meine Fotoalben betrachten"; -$a->strings["Can view my connections"] = "Kann meine Verbindungen sehen"; -$a->strings["Can view my file storage"] = "Kann meine Dateiordner lesen"; -$a->strings["Can view my webpages"] = "Kann meine Webseiten sehen"; -$a->strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; -$a->strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -$a->strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; -$a->strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; -$a->strings["Can post photos to my photo albums"] = "Kann Fotos in meinen Fotoalben veröffentlichen"; -$a->strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; -$a->strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; -$a->strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; -$a->strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; -$a->strings["Can write to my file storage"] = "Kann in meine Dateiordner schreiben"; -$a->strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; -$a->strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; -$a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; -$a->strings["Social Networking"] = "Soziales Netzwerk"; -$a->strings["Mostly Public"] = "Weitgehend öffentlich"; -$a->strings["Restricted"] = "Beschränkt"; -$a->strings["Private"] = "Privat"; -$a->strings["Community Forum"] = "Forum"; -$a->strings["Feed Republish"] = "Teilen von Feeds"; -$a->strings["Special Purpose"] = "Für besondere Zwecke"; -$a->strings["Celebrity/Soapbox"] = "Mitteilungs-Kanal (keine Kommentare)"; -$a->strings["Group Repository"] = "Gruppenarchiv"; -$a->strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +$a->strings["invalid target signature"] = "Ungültige Signatur des Ziels"; +$a->strings["Logout"] = "Abmelden"; +$a->strings["End this session"] = "Beende diese Sitzung"; +$a->strings["Home"] = "Home"; +$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +$a->strings["Your profile page"] = "Deine Profilseite"; +$a->strings["Edit Profiles"] = "Profile bearbeiten"; +$a->strings["Manage/Edit profiles"] = "Profile verwalten"; +$a->strings["Edit your profile"] = "Profil bearbeiten"; +$a->strings["Your photos"] = "Deine Bilder"; +$a->strings["Your files"] = "Deine Dateien"; +$a->strings["Your chatrooms"] = "Deine Chaträume"; +$a->strings["Your bookmarks"] = "Deine Lesezeichen"; +$a->strings["Your webpages"] = "Deine Webseiten"; +$a->strings["Sign in"] = "Anmelden"; +$a->strings["%s - click to logout"] = "%s - Klick zum Abmelden"; +$a->strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; +$a->strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Register"] = "Registrieren"; +$a->strings["Create an account"] = "Erzeuge ein Konto"; +$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; +$a->strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; +$a->strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; +$a->strings["Channel Directory"] = "Kanal-Verzeichnis"; +$a->strings["Grid"] = "Grid"; +$a->strings["Your grid"] = "Dein Grid"; +$a->strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; +$a->strings["Channel home"] = "Mein Kanal"; +$a->strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; +$a->strings["Connections"] = "Verbindungen"; +$a->strings["Notices"] = "Benachrichtigungen"; +$a->strings["Notifications"] = "Benachrichtigungen"; +$a->strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; +$a->strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; +$a->strings["Private mail"] = "Persönliche Mail"; +$a->strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; +$a->strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; +$a->strings["Event Calendar"] = "Terminkalender"; +$a->strings["See all events"] = "Alle Termine ansehen"; +$a->strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; +$a->strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; +$a->strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; +$a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; +$a->strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; +$a->strings["Please wait..."] = "Bitte warten..."; $a->strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; -$a->strings["Item not found"] = "Element nicht gefunden"; -$a->strings["Edit Block"] = "Block bearbeiten"; -$a->strings["Delete block?"] = "Block löschen?"; -$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; -$a->strings["Delete Block"] = "Block löschen"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; -$a->strings["Create a new channel"] = "Neuen Kanal anlegen"; -$a->strings["Current Channel"] = "Aktueller Kanal"; -$a->strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; -$a->strings["Default Channel"] = "Standard Kanal"; -$a->strings["Make Default"] = "Zum Standard machen"; -$a->strings["%d new messages"] = "%d neue Nachrichten"; -$a->strings["%d new introductions"] = "%d neue Vorstellungen"; -$a->strings["Xchan Lookup"] = "Xchan-Suche"; -$a->strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; +$a->strings["Contact not found."] = "Kontakt nicht gefunden"; +$a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden."; +$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; +$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; +$a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; +$a->strings["%d rating"] = array( + 0 => "%d Bewertung", + 1 => "%d Bewertungen", +); +$a->strings["Gender: "] = "Geschlecht:"; +$a->strings["Status: "] = "Status:"; +$a->strings["Homepage: "] = "Webseite:"; +$a->strings["Description:"] = "Beschreibung:"; +$a->strings["Public Forum:"] = "Öffentliches Forum:"; +$a->strings["Keywords: "] = "Schlüsselwörter:"; +$a->strings["Don't suggest"] = "Nicht vorschlagen"; +$a->strings["Common connections:"] = "Gemeinsame Verbindungen:"; +$a->strings["Global Directory"] = "Globales Verzeichnis"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; +$a->strings["Finding:"] = "Ergebnisse:"; +$a->strings["next page"] = "nächste Seite"; +$a->strings["previous page"] = "vorherige Seite"; +$a->strings["Sort options"] = "Sortieroptionen"; +$a->strings["Alphabetic"] = "alphabetisch"; +$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; +$a->strings["Newest to Oldest"] = "Neueste zuerst"; +$a->strings["Oldest to Newest"] = "Älteste zuerst"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; +$a->strings["Bookmark added"] = "Lesezeichen hinzugefügt"; +$a->strings["My Bookmarks"] = "Meine Lesezeichen"; +$a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; +$a->strings["Invalid item."] = "Ungültiges Element."; +$a->strings["Channel not found."] = "Kanal nicht gefunden."; +$a->strings["Page not found."] = "Seite nicht gefunden."; +$a->strings["First Name"] = "Vorname"; +$a->strings["Last Name"] = "Nachname"; +$a->strings["Nickname"] = "Spitzname"; +$a->strings["Full Name"] = "Voller Name"; +$a->strings["Profile Photo 16px"] = "Profilfoto 16 px"; +$a->strings["Profile Photo 32px"] = "Profilfoto 32 px"; +$a->strings["Profile Photo 48px"] = "Profilfoto 48 px"; +$a->strings["Profile Photo 64px"] = "Profilfoto 64 px"; +$a->strings["Profile Photo 80px"] = "Profilfoto 80 px"; +$a->strings["Profile Photo 128px"] = "Profilfoto 128 px"; +$a->strings["Timezone"] = "Zeitzone"; +$a->strings["Homepage URL"] = "Homepage-URL"; +$a->strings["Birth Year"] = "Geburtsjahr"; +$a->strings["Birth Month"] = "Geburtsmonat"; +$a->strings["Birth Day"] = "Geburtstag"; +$a->strings["Birthdate"] = "Geburtsdatum"; +$a->strings["Gender"] = "Geschlecht"; +$a->strings["Like/Dislike"] = "Mögen/Nicht mögen"; +$a->strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; +$a->strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; +$a->strings["Invalid request."] = "Ungültige Anfrage."; +$a->strings["thing"] = "Sache"; +$a->strings["Channel unavailable."] = "Kanal nicht vorhanden."; +$a->strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; +$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; +$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; +$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; +$a->strings["Action completed."] = "Aktion durchgeführt."; +$a->strings["Thank you."] = "Vielen Dank."; +$a->strings["Export Channel"] = "Kanal exportieren"; +$a->strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; +$a->strings["Export Content"] = "Kanal und Inhalte exportieren"; +$a->strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; +$a->strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; +$a->strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; +$a->strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; +$a->strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; +$a->strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; +$a->strings["Away"] = "Abwesend"; +$a->strings["Online"] = "Online"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; +$a->strings["No channel."] = "Kein Kanal."; +$a->strings["Common connections"] = "Gemeinsame Verbindungen"; +$a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +$a->strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; +$a->strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +$a->strings["posted an event"] = "hat einen Termin veröffentlicht"; +$a->strings["Documentation Search"] = "Suche in der Dokumentation"; +$a->strings["Help:"] = "Hilfe:"; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; +$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; +$a->strings["Remove This Channel"] = "Diesen Kanal löschen"; +$a->strings["WARNING: "] = "WARNUNG: "; +$a->strings["This channel will be completely removed from the network. "] = "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht."; +$a->strings["This action is permanent and can not be undone!"] = "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!"; +$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; +$a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; +$a->strings["Remove Channel"] = "Kanal löschen"; +$a->strings["- select -"] = "– auswählen –"; +$a->strings["Menu not found."] = "Menü nicht gefunden"; +$a->strings["Unable to create element."] = "Element konnte nicht erstellt werden."; +$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; +$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; $a->strings["Not found."] = "Nicht gefunden."; -$a->strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; -$a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; -$a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["No"] = "Nein"; -$a->strings["Block Name"] = "Block-Name"; +$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; +$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; +$a->strings["Link Name"] = "Name des Links"; +$a->strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; +$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; +$a->strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; +$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; +$a->strings["Order in list"] = "Reihenfolge in der Liste"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; +$a->strings["Submit and finish"] = "Absenden und fertigstellen"; +$a->strings["Submit and continue"] = "Absenden und fortfahren"; +$a->strings["Menu:"] = "Menü:"; +$a->strings["Link Target"] = "Ziel des Links"; +$a->strings["Edit menu"] = "Menü bearbeiten"; +$a->strings["Edit element"] = "Bestandteil bearbeiten"; +$a->strings["Drop element"] = "Bestandteil löschen"; +$a->strings["New element"] = "Neues Bestandteil"; +$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; +$a->strings["Add menu element"] = "Menüelement hinzufügen"; +$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; +$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; +$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; +$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; +$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; +$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; +$a->strings["Link text"] = "Link Text"; $a->strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; $a->strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; $a->strings["Connection updated."] = "Verbindung aktualisiert."; @@ -946,17 +1117,7 @@ $a->strings["Failed to update connection record."] = "Konnte den Verbindungseint $a->strings["is now connected to"] = "ist jetzt verbunden mit"; $a->strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; $a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; -$a->strings["Channel has been unblocked"] = "Kanal nicht mehr blockiert"; -$a->strings["Channel has been blocked"] = "Kanal blockiert"; $a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; -$a->strings["Channel has been unignored"] = "Kanal wird nicht mehr ignoriert"; -$a->strings["Channel has been ignored"] = "Kanal wird ignoriert"; -$a->strings["Channel has been unarchived"] = "Kanal wurde aus dem Archiv zurück geholt"; -$a->strings["Channel has been archived"] = "Kanal wurde archiviert"; -$a->strings["Channel has been unhidden"] = "Kanal wird nicht mehr versteckt"; -$a->strings["Channel has been hidden"] = "Kanal wurde versteckt"; -$a->strings["Channel has been approved"] = "Kanal wurde zugelassen"; -$a->strings["Channel has been unapproved"] = "Zulassung des Kanals entfernt"; $a->strings["Connection has been removed."] = "Verbindung wurde gelöscht."; $a->strings["View %s's profile"] = "%ss Profil ansehen"; $a->strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; @@ -966,102 +1127,434 @@ $a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträg $a->strings["Unblock"] = "Freigeben"; $a->strings["Block"] = "Blockieren"; $a->strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; +$a->strings["This connection is blocked!"] = "Die Verbindung ist geblockt!"; $a->strings["Unignore"] = "Nicht ignorieren"; $a->strings["Ignore"] = "Ignorieren"; $a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; +$a->strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!"; $a->strings["Unarchive"] = "Aus Archiv zurückholen"; $a->strings["Archive"] = "Archivieren"; $a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; +$a->strings["This connection is archived!"] = "Die Verbindung ist archiviert!"; $a->strings["Unhide"] = "Wieder sichtbar machen"; $a->strings["Hide"] = "Verstecken"; $a->strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; +$a->strings["This connection is hidden!"] = "Die Verbindung ist versteckt!"; $a->strings["Delete this connection"] = "Verbindung löschen"; $a->strings["Approve this connection"] = "Verbindung genehmigen"; $a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; -$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s"; +$a->strings["Set Affinity"] = "Beziehung festlegen"; +$a->strings["Set Profile"] = "Profil festlegen"; +$a->strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen"; $a->strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; -$a->strings["Apply the permissions indicated on this page to all new connections."] = "Wende die auf dieser Seite gewählten Berechtigungen auf alle neuen Verbindungen an."; +$a->strings["This connection's address is"] = "Die Adresse dieses Kontakts ist"; +$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet."; $a->strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; -$a->strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; -$a->strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; -$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert. Bitte sieh Dir die Zugriffsrechte auf dieser Seite an und ändere sie, wenn Du willst. Dieser Kontakt kann evtl. nicht mit Dir kommunizieren, bevor Du nicht auf dieser Seite auf „Senden“ geklickt hast – erst dieser Klick speichert die gewünschten Zugriffsrechte."; +$a->strings["Slide to adjust your rating"] = "Verschieben, um Deine Bewertung einzustellen"; +$a->strings["Optionally explain your rating"] = "Optional kannst Du Deine Bewertung begründen"; +$a->strings["Custom Filter"] = "Benutzerdefinierter Filter"; +$a->strings["Only import posts with this text"] = "Nur Beiträge mit diesem Text importieren"; +$a->strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Posts zu importieren."; +$a->strings["Do not import posts with this text"] = "Beiträge mit diesem Text nicht importieren"; +$a->strings["This information is public!"] = "Diese Information ist öffentlich!"; +$a->strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; +$a->strings["Connection Request"] = "Verbindungsanfrage"; +$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) möchte sich mit Dir verbinden. Bitte genehmige die Verbindung, um Kommunikation zu ermöglichen."; +$a->strings["Approve"] = "Genehmigen"; +$a->strings["Approve Later"] = "Später genehmigen"; $a->strings["inherited"] = "geerbt"; -$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffsrechte!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen."; -$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; -$a->strings["Contact Information / Notes"] = "Kontaktinformationen / Notizen"; -$a->strings["Edit contact notes"] = "Kontaktnotizen bearbeiten"; $a->strings["Their Settings"] = "Deren Einstellungen"; $a->strings["My Settings"] = "Meine Einstellungen"; -$a->strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert, und Du hast keine Voreinstellungen für die Zugriffsrechte von Verbindungen angelegt. Bitte sieht Dir die Einstellungen an, ändere sie bei Bedarf und klicke [Senden], um den Vorgang abzuschließen."; -$a->strings["Clear/Disable Automatic Permissions"] = "Automatische Berechtigungen abschalten/entfernen"; -$a->strings["Forum Members"] = "Forum Mitglieder"; -$a->strings["Soapbox"] = "Marktschreier"; -$a->strings["Full Sharing (typical social network permissions)"] = "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)"; -$a->strings["Cautious Sharing "] = "Vorsichtiges Teilen"; -$a->strings["Follow Only"] = "Nur folgen"; $a->strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; -$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Einige Berechtigungen werden von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen."; -$a->strings["Advanced Permissions"] = "Zugriffsrechte für Fortgeschrittene"; -$a->strings["Simple Permissions (select one and submit)"] = "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)"; -$a->strings["Visit %s's profile - %s"] = "%ss Profil besuchen - %s"; -$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freigeben"; -$a->strings["Ignore contact"] = "Kontakt ignorieren"; -$a->strings["Repair URL settings"] = "URL-Einstellungen reparieren"; -$a->strings["View conversations"] = "Unterhaltungen anzeigen"; -$a->strings["Delete contact"] = "Kontakt löschen"; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden."; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; $a->strings["Last update:"] = "Letzte Aktualisierung:"; -$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; -$a->strings["Update now"] = "Jetzt aktualisieren"; -$a->strings["Currently blocked"] = "Derzeit blockiert"; -$a->strings["Currently ignored"] = "Derzeit ignoriert"; -$a->strings["Currently archived"] = "Derzeit archiviert"; -$a->strings["Currently pending"] = "Derzeit anstehend"; -$a->strings["Red Matrix - "The Network""] = "RedMatrix – "Das Netzwerk""; -$a->strings["Welcome to %s"] = "Willkommen auf %s"; -$a->strings["Continue"] = "Fortfahren"; -$a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; -$a->strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; -$a->strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; -$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -$a->strings["Edit post"] = "Bearbeite Beitrag"; -$a->strings["Delete item?"] = "Eintrag löschen?"; -$a->strings["Item not available."] = "Element nicht verfügbar."; -$a->strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; -$a->strings["RedMatrix channel"] = "RedMatrix-Kanal"; -$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; -$a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; -$a->strings["Image exceeds size limit of %d"] = "Bild ist größer als das Limit von %d"; -$a->strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; -$a->strings["Photo not available."] = "Foto nicht verfügbar."; -$a->strings["Upload File:"] = "Datei hochladen:"; -$a->strings["Select a profile:"] = "Wähle ein Profil:"; -$a->strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; -$a->strings["or"] = "oder"; -$a->strings["skip this step"] = "diesen Schritt überspringen"; -$a->strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; -$a->strings["Crop Image"] = "Bild zuschneiden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; -$a->strings["Done Editing"] = "Bearbeitung fertigstellen"; -$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; -$a->strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; -$a->strings["Image size reduction [%s] failed."] = "Reduzierung der Bildgröße [%s] fehlgeschlagen."; -$a->strings["Invalid item."] = "Ungültiges Element."; -$a->strings["Channel not found."] = "Kanal nicht gefunden."; -$a->strings["Page not found."] = "Seite nicht gefunden."; +$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; +$a->strings["Hub not found."] = "Server nicht gefunden."; +$a->strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; +$a->strings["Configuration Editor"] = "Konfigurationseditor"; +$a->strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; +$a->strings["Public Sites"] = "Öffentliche Server"; +$a->strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung bei \$Projectname. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen anderen Servern ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den verlinkten Seiten könnten nähere Details dazu stehen."; +$a->strings["Rate this hub"] = "Bewerte diesen Hub"; +$a->strings["Site URL"] = "Server-URL"; +$a->strings["Access Type"] = "Zugangstyp"; +$a->strings["Registration Policy"] = "Registrierungsrichtlinien"; +$a->strings["Location"] = "Ort"; +$a->strings["View hub ratings"] = "Bewertungen dieses Hubs ansehen"; +$a->strings["Rate"] = "Bewerten"; +$a->strings["View ratings"] = "Bewertungen ansehen"; +$a->strings["Permission Denied."] = "Zugriff verweigert."; +$a->strings["File not found."] = "Datei nicht gefunden."; +$a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; +$a->strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; +$a->strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; +$a->strings["Return to file list"] = "Zurück zur Dateiliste"; +$a->strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; +$a->strings["Share this file"] = "Diese Datei freigeben"; +$a->strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; +$a->strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; +$a->strings["Layout Name"] = "Layout-Name"; +$a->strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; +$a->strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; +$a->strings["Layout Description"] = "Layout-Beschreibung"; +$a->strings["Download PDL file"] = "PDL-Datei herunterladen"; +$a->strings["Poke/Prod"] = "Anstupsen/Knuffen"; +$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; +$a->strings["Recipient"] = "Empfänger"; +$a->strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; +$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; $a->strings["No such group"] = "Sammlung nicht gefunden"; +$a->strings["No such channel"] = "Kanal nicht gefunden"; +$a->strings["forum"] = "Forum"; $a->strings["Search Results For:"] = "Suchergebnisse für:"; $a->strings["Collection is empty"] = "Sammlung ist leer"; $a->strings["Collection: "] = "Sammlung:"; -$a->strings["Connection: "] = "Verbindung:"; $a->strings["Invalid connection."] = "Ungültige Verbindung."; +$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; +$a->strings["Room not found"] = "Chatraum nicht gefunden"; +$a->strings["Leave Room"] = "Raum verlassen"; +$a->strings["Delete This Room"] = "Diesen Raum löschen"; +$a->strings["I am away right now"] = "Ich bin gerade nicht da"; +$a->strings["I am online"] = "Ich bin online"; +$a->strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; +$a->strings["New Chatroom"] = "Neuer Chatraum"; +$a->strings["Chatroom Name"] = "Name des Chatraums"; +$a->strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +$a->strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; +$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; +$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; +$a->strings["Item not found"] = "Element nicht gefunden"; +$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; +$a->strings["Delete item?"] = "Eintrag löschen?"; +$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; +$a->strings["Edit post"] = "Bearbeite Beitrag"; +$a->strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; +$a->strings["no results"] = "keine Ergebnisse"; +$a->strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; +$a->strings["channel sync processed"] = "Kanal-Sync verarbeitet"; +$a->strings["queued"] = "zur Warteschlange hinzugefügt"; +$a->strings["posted"] = "zugestellt"; +$a->strings["accepted for delivery"] = "für Zustellung akzeptiert"; +$a->strings["updated"] = "aktualisiert"; +$a->strings["update ignored"] = "Aktualisierung ignoriert"; +$a->strings["permission denied"] = "Zugriff verweigert"; +$a->strings["Delete block?"] = "Block löschen?"; +$a->strings["Edit Block"] = "Block bearbeiten"; +$a->strings["\$Projectname"] = "\$Projectname"; +$a->strings["Welcome to %s"] = "Willkommen auf %s"; +$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; +$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; +$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; +$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; +$a->strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; +$a->strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; +$a->strings["Post successful."] = "Veröffentlichung erfolgreich."; +$a->strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; +$a->strings["# Accounts"] = "Anzahl der Konten"; +$a->strings["# blocked accounts"] = "Anzahl der blockierten Konten"; +$a->strings["# expired accounts"] = "Anzahl der abgelaufenen Konten"; +$a->strings["# expiring accounts"] = "Anzahl der ablaufenden Konten"; +$a->strings["# Channels"] = "Anzahl der Kanäle"; +$a->strings["# primary"] = "Anzahl der primären Kanäle"; +$a->strings["# clones"] = "Anzahl der Klone"; +$a->strings["Message queues"] = "Nachrichten-Warteschlangen"; +$a->strings["Administration"] = "Administration"; +$a->strings["Summary"] = "Zusammenfassung"; +$a->strings["Registered accounts"] = "Registrierte Konten"; +$a->strings["Pending registrations"] = "Ausstehende Registrierungen"; +$a->strings["Registered channels"] = "Registrierte Kanäle"; +$a->strings["Active plugins"] = "Aktive Plug-Ins"; +$a->strings["Version"] = "Version"; +$a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; +$a->strings["mobile"] = "mobil"; +$a->strings["experimental"] = "experimentell"; +$a->strings["unsupported"] = "nicht unterstützt"; +$a->strings["Yes - with approval"] = "Ja - mit Zustimmung"; +$a->strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server"; +$a->strings["My site has paid access only"] = "Mein Server erlaubt nur bezahlten Zugang"; +$a->strings["My site has free access only"] = "Mein Server erlaubt ausschließlich freien Zugang"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; +$a->strings["Registration"] = "Registrierung"; +$a->strings["File upload"] = "Dateiupload"; +$a->strings["Policies"] = "Richtlinien"; +$a->strings["Site name"] = "Seitenname"; +$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Administrator Information"] = "Administrator-Informationen"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; +$a->strings["System language"] = "System-Sprache"; +$a->strings["System theme"] = "System-Theme"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; +$a->strings["Mobile system theme"] = "Mobile System-Theme:"; +$a->strings["Theme for mobile devices"] = "Theme für mobile Geräte"; +$a->strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; +$a->strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; +$a->strings["Maximum image size"] = "Maximale Bildgröße"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; +$a->strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; +$a->strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; +$a->strings["Register text"] = "Registrierungstext"; +$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; +$a->strings["Site homepage to show visitors (default: login box)"] = "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)"; +$a->strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen."; +$a->strings["Preserve site homepage URL"] = "Homepage-URL schützen"; +$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten."; +$a->strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; +$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +$a->strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails"; +$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde."; +$a->strings["Block public"] = "Öffentlichen Zugriff blockieren"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."; +$a->strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; +$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; +$a->strings["Force publish"] = "Veröffentlichung erzwingen"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; +$a->strings["Disable discovery tab"] = "Den „Entdecken“-Reiter ausblenden"; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden."; +$a->strings["login on Homepage"] = "Anmeldemaske auf der Homepage"; +$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden."; +$a->strings["Proxy user"] = "Proxy Benutzer"; +$a->strings["Proxy URL"] = "Proxy URL"; +$a->strings["Network timeout"] = "Netzwerk-Timeout"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; +$a->strings["Delivery interval"] = "Auslieferung Intervall"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; +$a->strings["Deliveries per process"] = "Zustellungen pro Prozess"; +$a->strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5."; +$a->strings["Poll interval"] = "Abfrageintervall"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; +$a->strings["Maximum Load Average"] = "Maximales Load Average"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; +$a->strings["Expiration period in days for imported (matrix/network) content"] = "Zeitraum in Tagen, nach dem importierte Inhalte (aus dem Grid/Netzwerk) gelöscht werden sollen"; +$a->strings["0 for no expiration of imported content"] = "0 = keine Löschung importierter Inhalte"; +$a->strings["No server found"] = "Kein Server gefunden"; +$a->strings["ID"] = "ID"; +$a->strings["for channel"] = "für Kanal"; +$a->strings["on server"] = "auf Server"; +$a->strings["Status"] = "Status"; +$a->strings["Server"] = "Server"; +$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; +$a->strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; +$a->strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; +$a->strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; +$a->strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; +$a->strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; +$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; +$a->strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; +$a->strings["Queue Statistics"] = "Warteschlangenstatistiken"; +$a->strings["Total Entries"] = "Einträge insgesamt"; +$a->strings["Priority"] = "Priorität"; +$a->strings["Destination URL"] = "Ziel-URL"; +$a->strings["Mark hub permanently offline"] = "Hub als permanent offline markieren"; +$a->strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren"; +$a->strings["Last known contact"] = "Letzter Kontakt"; +$a->strings["%s account blocked/unblocked"] = array( + 0 => "%s Konto blockiert/freigegeben", + 1 => "%s Konten blockiert/freigegeben", +); +$a->strings["%s account deleted"] = array( + 0 => "%s Konto gelöscht", + 1 => "%s Konten gelöscht", +); +$a->strings["Account not found"] = "Konto nicht gefunden"; +$a->strings["Account '%s' deleted"] = "Konto '%s' gelöscht"; +$a->strings["Account '%s' blocked"] = "Konto '%s' blockiert"; +$a->strings["Account '%s' unblocked"] = "Konto '%s' freigegeben"; +$a->strings["Users"] = "Benutzer"; +$a->strings["select all"] = "Alle auswählen"; +$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; +$a->strings["Request date"] = "Antragsdatum"; +$a->strings["No registrations."] = "Keine Registrierungen."; +$a->strings["Deny"] = "Verweigern"; +$a->strings["Register date"] = "Registrierungs-Datum"; +$a->strings["Last login"] = "Letzte Anmeldung"; +$a->strings["Expires"] = "Verfällt"; +$a->strings["Service Class"] = "Service-Klasse"; +$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?"; +$a->strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; +$a->strings["%s channel censored/uncensored"] = array( + 0 => "%s Kanal gesperrt/freigegeben", + 1 => "%s Kanäle gesperrt/freigegeben", +); +$a->strings["%s channel code allowed/disallowed"] = array( + 0 => "Code für %s Kanal gesperrt/freigegeben", + 1 => "Code für %s Kanäle gesperrt/freigegeben", +); +$a->strings["%s channel deleted"] = array( + 0 => "%s Kanal gelöscht", + 1 => "%s Kanäle gelöscht", +); +$a->strings["Channel not found"] = "Kanal nicht gefunden"; +$a->strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; +$a->strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; +$a->strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; +$a->strings["Channel '%s' code allowed"] = "Code für Kanal '%s' freigegeben"; +$a->strings["Channel '%s' code disallowed"] = "Code für Kanal '%s' gesperrt"; +$a->strings["Censor"] = "Sperren"; +$a->strings["Uncensor"] = "Freigeben"; +$a->strings["Allow Code"] = "Code erlauben"; +$a->strings["Disallow Code"] = "Code sperren"; +$a->strings["UID"] = "UID"; +$a->strings["Address"] = "Adresse"; +$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; +$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; +$a->strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; +$a->strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; +$a->strings["Disable"] = "Deaktivieren"; +$a->strings["Enable"] = "Aktivieren"; +$a->strings["Toggle"] = "Umschalten"; +$a->strings["Author: "] = "Autor: "; +$a->strings["Maintainer: "] = "Betreuer:"; +$a->strings["No themes found."] = "Keine Theme gefunden."; +$a->strings["Screenshot"] = "Bildschirmfoto"; +$a->strings["[Experimental]"] = "[Experimentell]"; +$a->strings["[Unsupported]"] = "[Nicht unterstützt]"; +$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; +$a->strings["Clear"] = "Leeren"; +$a->strings["Debugging"] = "Debugging"; +$a->strings["Log file"] = "Protokolldatei"; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."; +$a->strings["Log level"] = "Protokollstufe"; +$a->strings["New Profile Field"] = "Neues Profilfeld"; +$a->strings["Field nickname"] = "Kurzname für das Feld"; +$a->strings["System name of field"] = "Systemname des Feldes"; +$a->strings["Input type"] = "Art des Inhalts"; +$a->strings["Field Name"] = "Feldname"; +$a->strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; +$a->strings["Help text"] = "Hilfetext"; +$a->strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; +$a->strings["Field definition not found"] = "Feld-Definition nicht gefunden"; +$a->strings["Edit Profile Field"] = "Profilfeld bearbeiten"; +$a->strings["App installed."] = "App installiert."; +$a->strings["Malformed app."] = "Fehlerhafte App."; +$a->strings["Embed code"] = "Code einbetten"; +$a->strings["Edit App"] = "App bearbeiten"; +$a->strings["Create App"] = "App erstellen"; +$a->strings["Name of app"] = "Name der App"; +$a->strings["Location (URL) of app"] = "Ort (URL) der App"; +$a->strings["Description"] = "Beschreibung"; +$a->strings["Photo icon URL"] = "URL zum Icon"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; +$a->strings["Version ID"] = "Versions-ID"; +$a->strings["Price of app"] = "Preis der App"; +$a->strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; +$a->strings["Unable to create menu."] = "Kann Menü nicht erstellen."; +$a->strings["Menu Name"] = "Name des Menüs"; +$a->strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich"; +$a->strings["Menu Title"] = "Menütitel"; +$a->strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen"; +$a->strings["Allow Bookmarks"] = "Lesezeichen erlauben"; +$a->strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; +$a->strings["Submit and proceed"] = "Absenden und fortfahren"; +$a->strings["Drop"] = "Löschen"; +$a->strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; +$a->strings["Delete this menu"] = "Lösche dieses Menü"; +$a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; +$a->strings["Edit this menu"] = "Dieses Menü bearbeiten"; +$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; +$a->strings["Edit Menu"] = "Menü bearbeiten"; +$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; +$a->strings["Menu name"] = "Menü Name"; +$a->strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; +$a->strings["Menu title"] = "Menü Titel"; +$a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; +$a->strings["Allow bookmarks"] = "Erlaube Lesezeichen"; +$a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; +$a->strings["System Notifications"] = "System-Benachrichtigungen"; +$a->strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +$a->strings["Add a Channel"] = "Kanal hinzufügen"; +$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist Deine eigene Sammlung von zusammengehörigen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deines Hubs zulässt."; +$a->strings["Channel Name"] = "Name des Kanals"; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; +$a->strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst."; +$a->strings["Or import an existing channel from another location"] = "Oder importiere einen bestehenden Kanal von einem anderen Server"; +$a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können"; +$a->strings["Channel Type"] = "Kanaltyp"; +$a->strings["Read more about roles"] = "Mehr Informationen über Rollen"; +$a->strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; +$a->strings["Discard"] = "Verwerfen"; +$a->strings["Layout updated."] = "Layout aktualisiert."; +$a->strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +$a->strings["Layout not found."] = "Layout nicht gefunden."; +$a->strings["Module Name:"] = "Modulname:"; +$a->strings["Layout Help"] = "Layout-Hilfe"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; +$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; +$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; +$a->strings["Site Member (%s)"] = "Nutzer (%s)"; +$a->strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; +$a->strings["Password Reset"] = "Zurücksetzen des Kennworts"; +$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; +$a->strings["Your new password is"] = "Dein neues Passwort lautet"; +$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; +$a->strings["click here to login"] = "Klicke hier, um dich anzumelden"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; +$a->strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +$a->strings["Forgot your Password?"] = "Kennwort vergessen?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; +$a->strings["Email Address"] = "E-Mail Adresse"; +$a->strings["Reset"] = "Zurücksetzen"; +$a->strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Delete Album"] = "Album löschen"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["No photos selected"] = "Keine Fotos ausgewählt"; +$a->strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; +$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; +$a->strings["Upload Photos"] = "Fotos hochladen"; +$a->strings["Enter an album name"] = "Namen für ein neues Album eingeben"; +$a->strings["or select an existing album (doubleclick)"] = "oder ein bereits vorhandenes auswählen (Doppelklick)"; +$a->strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; +$a->strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; +$a->strings["Contact Photos"] = "Kontakt-Bilder"; +$a->strings["Show Newest First"] = "Neueste zuerst anzeigen"; +$a->strings["Show Oldest First"] = "Älteste zuerst anzeigen"; +$a->strings["View Photo"] = "Foto ansehen"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; +$a->strings["Photo not available"] = "Foto nicht verfügbar"; +$a->strings["Use as profile photo"] = "Als Profilfoto verwenden"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["Previous"] = "Voriges"; +$a->strings["View Full Size"] = "In voller Größe anzeigen"; +$a->strings["Next"] = "Nächste"; +$a->strings["Remove"] = "Entferne"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; +$a->strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; +$a->strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; +$a->strings["Caption"] = "Bildunterschrift"; +$a->strings["Add a Tag"] = "Schlagwort hinzufügen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; +$a->strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; +$a->strings["In This Photo:"] = "Auf diesem Foto:"; +$a->strings["Map"] = "Karte"; +$a->strings["View Album"] = "Album ansehen"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["\$Projectname channel"] = "\$Projectname-Kanal"; +$a->strings["Website:"] = "Webseite:"; +$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; +$a->strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; +$a->strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; +$a->strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; +$a->strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; $a->strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; $a->strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; $a->strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; @@ -1069,10 +1562,10 @@ $a->strings["Event not found."] = "Termin nicht gefunden."; $a->strings["l, F j"] = "l, j. F"; $a->strings["Edit event"] = "Termin bearbeiten"; $a->strings["Delete event"] = "Termin löschen"; +$a->strings["calendar"] = "Kalender"; $a->strings["Create New Event"] = "Neuen Termin erstellen"; -$a->strings["Previous"] = "Voriges"; -$a->strings["Next"] = "Nächste"; $a->strings["Export"] = "Exportieren"; +$a->strings["Import"] = "Import"; $a->strings["Event removed"] = "Termin gelöscht"; $a->strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; $a->strings["Event details"] = "Termin-Details"; @@ -1083,23 +1576,185 @@ $a->strings["Finish date/time is not known or not relevant"] = "Ende Datum/Zeit $a->strings["Event Finishes:"] = "Termin endet:"; $a->strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; $a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; -$a->strings["Description:"] = "Beschreibung:"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Den Termin teilen"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; -$a->strings["Public Sites"] = "Öffentliche Server"; -$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen."; -$a->strings["Rate this hub"] = "Bewerte diesen Hub"; -$a->strings["Site URL"] = "Server-URL"; -$a->strings["Access Type"] = "Zugangstyp"; -$a->strings["Registration Policy"] = "Registrierungsrichtlinien"; -$a->strings["Location"] = "Ort"; -$a->strings["View hub ratings"] = "Bewertungen dieses Hubs ansehen"; -$a->strings["Rate"] = "Bewerten"; -$a->strings["View ratings"] = "Bewertungen ansehen"; +$a->strings["%s element installed"] = "Element für %s installiert"; +$a->strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; +$a->strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; +$a->strings["Profile Match"] = "Profil-Übereinstimmungen"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; +$a->strings["is interested in:"] = "interessiert sich für:"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; +$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; +$a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; +$a->strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; +$a->strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; +$a->strings["female"] = "weiblich"; +$a->strings["%1\$s updated her %2\$s"] = "%1\$s hat ihr %2\$s aktualisiert"; +$a->strings["male"] = "männlich"; +$a->strings["%1\$s updated his %2\$s"] = "%1\$s hat sein %2\$s aktualisiert"; +$a->strings["%1\$s updated their %2\$s"] = "%1\$s hat sein/ihr %2\$s aktualisiert"; +$a->strings["profile photo"] = "Profilfoto"; +$a->strings["Photo not available."] = "Foto nicht verfügbar."; +$a->strings["Upload File:"] = "Datei hochladen:"; +$a->strings["Select a profile:"] = "Wähle ein Profil:"; +$a->strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +$a->strings["or"] = "oder"; +$a->strings["skip this step"] = "diesen Schritt überspringen"; +$a->strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; +$a->strings["Crop Image"] = "Bild zuschneiden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; +$a->strings["Done Editing"] = "Bearbeitung fertigstellen"; +$a->strings["Channel added."] = "Kanal hinzugefügt."; +$a->strings["Tag removed"] = "Schlagwort entfernt"; +$a->strings["Remove Item Tag"] = "Schlagwort entfernen"; +$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; +$a->strings["No ratings"] = "Keine Bewertungen"; +$a->strings["Ratings"] = "Bewertungen"; +$a->strings["Rating: "] = "Bewertung: "; +$a->strings["Website: "] = "Webseite: "; +$a->strings["Description: "] = "Beschreibung: "; +$a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; +$a->strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; +$a->strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; +$a->strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Message deleted."] = "Nachricht gelöscht."; +$a->strings["Message recalled."] = "Nachricht widerrufen."; +$a->strings["Send Private Message"] = "Private Nachricht senden"; +$a->strings["To:"] = "An:"; +$a->strings["Subject:"] = "Betreff:"; +$a->strings["Your message:"] = "Deine Nachricht:"; +$a->strings["Send"] = "Absenden"; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["Recall message"] = "Nachricht widerrufen"; +$a->strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; +$a->strings["Delete Conversation"] = "Unterhaltung löschen"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +$a->strings["Send Reply"] = "Antwort senden"; +$a->strings["Page Title"] = "Seitentitel"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; +$a->strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; +$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["Terms of Service"] = "Nutzungsbedingungen"; +$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; +$a->strings["Your email address"] = "Ihre E-Mail Adresse"; +$a->strings["Choose a password"] = "Passwort"; +$a->strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; +$a->strings["Block Name"] = "Block-Name"; +$a->strings["Block Title"] = "Titel des Blocks"; +$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; +$a->strings["Remove This Account"] = "Dieses Konto löschen"; +$a->strings["This account and all its channels will be completely removed from the network. "] = "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht."; +$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; +$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"; +$a->strings["Remove Account"] = "Konto entfernen"; +$a->strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; +$a->strings["Item not available."] = "Element nicht verfügbar."; +$a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; +$a->strings["Source created."] = "Quelle erstellt."; +$a->strings["Source updated."] = "Quelle aktualisiert."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; +$a->strings["New Source"] = "Neue Quelle"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; +$a->strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; +$a->strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; +$a->strings["Source not found."] = "Quelle nicht gefunden."; +$a->strings["Edit Source"] = "Quelle bearbeiten"; +$a->strings["Delete Source"] = "Quelle löschen"; +$a->strings["Source removed"] = "Quelle gelöscht"; +$a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; +$a->strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["network"] = "Netzwerk"; +$a->strings["RSS"] = "RSS"; +$a->strings["Please login."] = "Bitte melde dich an."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; +$a->strings["The error message was:"] = "Die Fehlermeldung war:"; +$a->strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; +$a->strings["Remote Authentication"] = "Entfernte Authentifizierung"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; +$a->strings["Authenticate"] = "Authentifizieren"; +$a->strings["This directory server requires an access token"] = "Dieser Verzeichnis-Server benötigt ein Zugangstoken"; +$a->strings["Version %s"] = "Version %s"; +$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; +$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; +$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; +$a->strings["Tag: "] = "Schlagwort: "; +$a->strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; +$a->strings["Current load average: "] = "Aktuelles Load Average:"; +$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; +$a->strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Bitte besuche redmatrix.me, um mehr über \$Projectname zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["\$projectname issues"] = "\$projectname-Bugtracker"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; +$a->strings["Site Administrators"] = "Administratoren"; +$a->strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; +$a->strings["Nothing to import."] = "Nichts zu importieren."; +$a->strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; +$a->strings["Imported file is empty."] = "Die importierte Datei ist leer."; +$a->strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; +$a->strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; +$a->strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; +$a->strings["Import Channel"] = "Kanal importieren"; +$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; +$a->strings["File to Upload"] = "Hochzuladende Datei:"; +$a->strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein"; +$a->strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; +$a->strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; +$a->strings["Your old login password"] = "Dein altes Passwort"; +$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; +$a->strings["Make this hub my primary location"] = "Dieser Red-Server ist mein primärer Server."; +$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; +$a->strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; +$a->strings["Thing updated"] = "Sache aktualisiert"; +$a->strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; +$a->strings["Thing added"] = "Sache hinzugefügt"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Sache anzeigen"; +$a->strings["item not found."] = "Eintrag nicht gefunden"; +$a->strings["Edit Thing"] = "Sache bearbeiten"; +$a->strings["Select a profile"] = "Wähle ein Profil"; +$a->strings["Post an activity"] = "Aktivitätsnachricht senden"; +$a->strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; +$a->strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; +$a->strings["URL of thing (optional)"] = "URL der Sache (optional)"; +$a->strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; +$a->strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; +$a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; +$a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; +$a->strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers."; +$a->strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; +$a->strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +$a->strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; +$a->strings["Send invitations"] = "Einladungen senden"; +$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; +$a->strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; +$a->strings["You will need to supply this invitation code: "] = "Gib folgenden Einladungs-Code ein:"; +$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; +$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; +$a->strings["or visit "] = "oder besuche"; +$a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; +$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"; +$a->strings["Source of Item"] = "Quelle des Elements"; $a->strings["Name is required"] = "Name ist erforderlich"; $a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; -$a->strings["Diaspora Policy Settings updated."] = "Diaspora-Einstellungen aktualisiert."; $a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; $a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; $a->strings["Password changed."] = "Kennwort geändert."; @@ -1123,27 +1778,23 @@ $a->strings["Client key starts with"] = "Client Key beginnt mit"; $a->strings["No name"] = "Kein Name"; $a->strings["Remove authorization"] = "Authorisierung aufheben"; $a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; -$a->strings["Feature Settings"] = "Funktions-Einstellungen"; -$a->strings["Diaspora Policy Settings"] = "Diaspora-Einstellungen"; -$a->strings["Allow any Diaspora member to comment on your public posts."] = "Allen Diaspora-Mitgliedern erlauben, Deine öffentlichen Beiträge zu kommentieren."; -$a->strings["Submit Diaspora Policy Settings"] = "Diaspora-Einstellungen speichern"; +$a->strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; $a->strings["Account Settings"] = "Konto-Einstellungen"; -$a->strings["Password Settings"] = "Kennwort-Einstellungen"; -$a->strings["New Password:"] = "Neues Passwort:"; -$a->strings["Confirm:"] = "Bestätigen:"; +$a->strings["Enter New Password:"] = "Neues Passwort eingeben:"; +$a->strings["Confirm New Password:"] = "Neues Passwort bestätigen:"; $a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; $a->strings["Email Address:"] = "Email Adresse:"; -$a->strings["Remove Account"] = "Konto entfernen"; -$a->strings["Remove this account from this server including all its channels"] = "Lösche dieses Konto einschließlich aller zugehörigen Kanäle von diesem Server"; -$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden."; +$a->strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; $a->strings["Off"] = "Aus"; $a->strings["On"] = "An"; $a->strings["Additional Features"] = "Zusätzliche Funktionen"; $a->strings["Connector Settings"] = "Connector-Einstellungen"; $a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; $a->strings["%s - (Experimental)"] = "%s – (experimentell)"; -$a->strings["mobile"] = "mobil"; $a->strings["Display Settings"] = "Anzeige-Einstellungen"; +$a->strings["Theme Settings"] = "Theme-Einstellungen"; +$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme-Einstellungen"; +$a->strings["Content Settings"] = "Inhaltseinstellungen"; $a->strings["Display Theme:"] = "Anzeige-Theme:"; $a->strings["Mobile Theme:"] = "Mobile Theme:"; $a->strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; @@ -1151,7 +1802,7 @@ $a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktua $a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; $a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; $a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; -$a->strings["Don't show emoticons"] = "Emoticons nicht anzeigen"; +$a->strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen"; $a->strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; $a->strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)"; $a->strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; @@ -1196,7 +1847,6 @@ $a->strings["0 or blank prevents expiration"] = "0 oder kein Inhalt verhindern d $a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; $a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; $a->strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte"; -$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; $a->strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:"; $a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; $a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; @@ -1235,13 +1885,49 @@ $a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Se $a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen"; $a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!"; $a->strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; +$a->strings["Default photo upload folder"] = "Voreingestellter Ordner für hochgeladene Fotos"; +$a->strings["Default file upload folder"] = "Voreingestellter Ordner für hochgeladene Dateien"; $a->strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals"; -$a->strings["Remove this channel"] = "Diesen Kanal löschen"; -$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++"; -$a->strings["Tag removed"] = "Schlagwort entfernt"; -$a->strings["Remove Item Tag"] = "Schlagwort entfernen"; -$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; -$a->strings["Remove"] = "Entferne"; +$a->strings["Remove this channel."] = "Diesen Kanal löschen"; +$a->strings["Xchan Lookup"] = "Xchan-Suche"; +$a->strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; +$a->strings["Create a new channel"] = "Neuen Kanal anlegen"; +$a->strings["Current Channel"] = "Aktueller Kanal"; +$a->strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; +$a->strings["Default Channel"] = "Standard Kanal"; +$a->strings["Make Default"] = "Zum Standard machen"; +$a->strings["%d new messages"] = "%d neue Nachrichten"; +$a->strings["%d new introductions"] = "%d neue Vorstellungen"; +$a->strings["Delegated Channels"] = "Delegierte Kanäle"; +$a->strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; +$a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; +$a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; +$a->strings["Blocked"] = "Blockiert"; +$a->strings["Ignored"] = "Ignoriert"; +$a->strings["Hidden"] = "Versteckt"; +$a->strings["Archived"] = "Archiviert"; +$a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen"; +$a->strings["New Connections"] = "Neue Verbindungen"; +$a->strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; +$a->strings["All Connections"] = "Alle Verbindungen"; +$a->strings["Show all connections"] = "Alle Verbindungen anzeigen"; +$a->strings["Unblocked"] = "Freigegeben"; +$a->strings["Only show unblocked connections"] = "Nur freigegebene Verbindungen anzeigen"; +$a->strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen"; +$a->strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen"; +$a->strings["Only show archived connections"] = "Nur archivierte Verbindungen anzeigen"; +$a->strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit connection"] = "Verbindung bearbeiten"; +$a->strings["Search your connections"] = "Verbindungen durchsuchen"; +$a->strings["Finding: "] = "Ergebnisse:"; +$a->strings["Delete layout?"] = "Layout löschen?"; +$a->strings["Edit Layout"] = "Layout bearbeiten"; +$a->strings["Delete webpage?"] = "Webseite löschen?"; +$a->strings["Page link title"] = "Seitentitel-Link"; +$a->strings["Edit Webpage"] = "Webseite bearbeiten"; $a->strings["Collection created."] = "Sammlung erstellt."; $a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden."; $a->strings["Collection updated."] = "Sammlung aktualisiert."; @@ -1254,21 +1940,27 @@ $a->strings["Collection Editor"] = "Sammlung-Editor"; $a->strings["Members"] = "Mitglieder"; $a->strings["All Connected Channels"] = "Alle verbundenen Kanäle"; $a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; -$a->strings["Version %s"] = "Version %s"; -$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; -$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; -$a->strings["Tag: "] = "Schlagwort: "; -$a->strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; -$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; -$a->strings["Please visit RedMatrix.me to learn more about the Red Matrix."] = "Bitte besuchen Sie RedMatrix.me, um mehr über RedMatrix zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; -$a->strings["Site Administrators"] = "Administratoren"; -$a->strings["Help:"] = "Hilfe:"; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation"; +$a->strings["Continue"] = "Fortfahren"; +$a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; +$a->strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; +$a->strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; +$a->strings["No connections."] = "Keine Verbindungen."; +$a->strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; +$a->strings["Location not found."] = "Klon nicht gefunden."; +$a->strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; +$a->strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; +$a->strings["No locations found."] = "Keine Klon-Adressen gefunden."; +$a->strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; +$a->strings["Location (address)"] = "URL (Adresse)"; +$a->strings["Primary Location"] = "Primärer Klon"; +$a->strings["Drop location"] = "Klon löschen"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; +$a->strings["\$Projectname Server - Setup"] = "\$Projectname Server-Einrichtung"; $a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; $a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; $a->strings["Could not create table."] = "Kann Tabelle nicht erstellen."; @@ -1278,7 +1970,7 @@ $a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \" $a->strings["System check"] = "Systemprüfung"; $a->strings["Check again"] = "Bitte nochmal prüfen"; $a->strings["Database connection"] = "Datenbank Verbindung"; -$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; +$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; $a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; $a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; $a->strings["Database Server Name"] = "Datenbank-Servername"; @@ -1303,6 +1995,9 @@ $a->strings["Command line PHP"] = "PHP Befehlszeile"; $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; $a->strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; $a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden."; +$a->strings["You can adjust these settings in the servers php.ini."] = "Du kannst diese Einstellungen in der php.ini des Servers ändern."; +$a->strings["PHP upload limits"] = "PHP-Hochladebeschränkungen"; $a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; $a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; $a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; @@ -1312,6 +2007,7 @@ $a->strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; $a->strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; $a->strings["mb_string PHP module"] = "mb_string-PHP-Modul"; $a->strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; +$a->strings["xml PHP module"] = "xml-PHP-Modul"; $a->strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; $a->strings["proc_open"] = "proc_open"; @@ -1322,6 +2018,7 @@ $a->strings["Error: openssl PHP module required but not installed."] = "Fehler: $a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; $a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; $a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."; +$a->strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert."; $a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; $a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; $a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst."; @@ -1347,229 +2044,11 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ $a->strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; $a->strings["

What next

"] = "

Was als Nächstes

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; -$a->strings["No channel."] = "Kein Kanal."; -$a->strings["Common connections"] = "Gemeinsame Verbindungen"; -$a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +$a->strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; +$a->strings["NEW"] = "NEU"; +$a->strings["Remove all files"] = "Alle Dateien löschen"; +$a->strings["Remove this file"] = "Diese Datei löschen"; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; -$a->strings["Blocked"] = "Blockiert"; -$a->strings["Ignored"] = "Ignoriert"; -$a->strings["Hidden"] = "Versteckt"; -$a->strings["Archived"] = "Archiviert"; -$a->strings["All"] = "Alle"; -$a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen"; -$a->strings["New Connections"] = "Neue Verbindungen"; -$a->strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; -$a->strings["All Connections"] = "Alle Verbindungen"; -$a->strings["Show all connections"] = "Alle Verbindungen anzeigen"; -$a->strings["Unblocked"] = "Freigegeben"; -$a->strings["Only show unblocked connections"] = "Nur freigegebene Verbindungen anzeigen"; -$a->strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen"; -$a->strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen"; -$a->strings["Only show archived connections"] = "Nur archivierte Verbindungen anzeigen"; -$a->strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen"; -$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -$a->strings["Edit connection"] = "Verbindung bearbeiten"; -$a->strings["Search your connections"] = "Verbindungen durchsuchen"; -$a->strings["Finding: "] = "Ergebnisse:"; -$a->strings["webpage"] = "Webseite"; -$a->strings["block"] = "Block"; -$a->strings["layout"] = "Layout"; -$a->strings["%s element installed"] = "Element für %s installiert"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; -$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; -$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; -$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; -$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; -$a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; -$a->strings["Thing updated"] = "Sache aktualisiert"; -$a->strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; -$a->strings["Thing added"] = "Sache hinzugefügt"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Sache anzeigen"; -$a->strings["item not found."] = "Eintrag nicht gefunden"; -$a->strings["Edit Thing"] = "Sache bearbeiten"; -$a->strings["Select a profile"] = "Wähle ein Profil"; -$a->strings["Post an activity"] = "Aktivitätsnachricht senden"; -$a->strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; -$a->strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; -$a->strings["URL of thing (optional)"] = "URL der Sache (optional)"; -$a->strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; -$a->strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; -$a->strings["Away"] = "Abwesend"; -$a->strings["Online"] = "Online"; -$a->strings["Channel added."] = "Kanal hinzugefügt."; -$a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; -$a->strings["System Notifications"] = "System-Benachrichtigungen"; -$a->strings["network"] = "Netzwerk"; -$a->strings["RSS"] = "RSS"; -$a->strings["Layout updated."] = "Layout aktualisiert."; -$a->strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -$a->strings["Layout not found."] = "Layout nicht gefunden."; -$a->strings["Module Name:"] = "Modulname:"; -$a->strings["Layout Help"] = "Layout-Hilfe"; -$a->strings["App installed."] = "App installiert."; -$a->strings["Malformed app."] = "Fehlerhafte App."; -$a->strings["Embed code"] = "Code einbetten"; -$a->strings["Edit App"] = "App bearbeiten"; -$a->strings["Create App"] = "App erstellen"; -$a->strings["Name of app"] = "Name der App"; -$a->strings["Location (URL) of app"] = "Ort (URL) der App"; -$a->strings["Description"] = "Beschreibung"; -$a->strings["Photo icon URL"] = "URL zum Icon"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; -$a->strings["Version ID"] = "Versions-ID"; -$a->strings["Price of app"] = "Preis der App"; -$a->strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; -$a->strings["- select -"] = "– auswählen –"; -$a->strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; -$a->strings["Nothing to import."] = "Nichts zu importieren."; -$a->strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; -$a->strings["Imported file is empty."] = "Die importierte Datei ist leer."; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; -$a->strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; -$a->strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; -$a->strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -$a->strings["Import completed."] = "Import abgeschlossen."; -$a->strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; -$a->strings["Import Channel"] = "Kanal importieren"; -$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich."; -$a->strings["File to Upload"] = "Hochzuladende Datei:"; -$a->strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein"; -$a->strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; -$a->strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; -$a->strings["Your old login password"] = "Dein altes Passwort"; -$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; -$a->strings["Make this hub my primary location"] = "Dieser Red-Server ist mein primärer Server."; -$a->strings["Import existing posts if possible"] = "Existierende Beiträge importieren, falls möglich"; -$a->strings["Edit Layout"] = "Layout bearbeiten"; -$a->strings["Delete layout?"] = "Layout löschen?"; -$a->strings["Delete Layout"] = "Layout löschen"; -$a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; -$a->strings["Room not found"] = "Chatraum nicht gefunden"; -$a->strings["Leave Room"] = "Raum verlassen"; -$a->strings["Delete This Room"] = "Diesen Raum löschen"; -$a->strings["I am away right now"] = "Ich bin gerade nicht da"; -$a->strings["I am online"] = "Ich bin online"; -$a->strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; -$a->strings["New Chatroom"] = "Neuer Chatraum"; -$a->strings["Chatroom Name"] = "Name des Chatraums"; -$a->strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -$a->strings["Edit Webpage"] = "Webseite bearbeiten"; -$a->strings["Delete webpage?"] = "Webseite löschen?"; -$a->strings["Delete Webpage"] = "Webseite löschen"; -$a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; -$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; -$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; -$a->strings["Site Member (%s)"] = "Nutzer (%s)"; -$a->strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; -$a->strings["Password Reset"] = "Zurücksetzen des Kennworts"; -$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; -$a->strings["Your new password is"] = "Dein neues Passwort lautet"; -$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; -$a->strings["click here to login"] = "Klicke hier, um dich anzumelden"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; -$a->strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -$a->strings["Forgot your Password?"] = "Kennwort vergessen?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; -$a->strings["Email Address"] = "E-Mail Adresse"; -$a->strings["Reset"] = "Zurücksetzen"; -$a->strings["Website:"] = "Webseite:"; -$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; -$a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; -$a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; -$a->strings["Please join us on Red"] = "Schließe Dich uns an und werde Teil der Red-Matrix"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers."; -$a->strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; -$a->strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", -); -$a->strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; -$a->strings["Send invitations"] = "Einladungen senden"; -$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; -$a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Please join my community on RedMatrix."] = "Schließe Dich uns in der RedMatrix an!"; -$a->strings["You will need to supply this invitation code: "] = "Gib folgenden Einladungs-Code ein:"; -$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)"; -$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Gib meine RedMatrix-Adresse im Suchfeld ein."; -$a->strings["or visit "] = "oder besuche"; -$a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; -$a->strings["Location not found."] = "Klon nicht gefunden."; -$a->strings["Primary location cannot be removed."] = "Der primäre Klon kann nicht gelöscht werden."; -$a->strings["No locations found."] = "Keine Klon-Adressen gefunden."; -$a->strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; -$a->strings["Location (address)"] = "URL (Adresse)"; -$a->strings["Primary Location"] = "Primärer Klon"; -$a->strings["Drop location"] = "Klon löschen"; -$a->strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; -$a->strings["Source created."] = "Quelle erstellt."; -$a->strings["Source updated."] = "Quelle aktualisiert."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; -$a->strings["New Source"] = "Neue Quelle"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; -$a->strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; -$a->strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; -$a->strings["Channel Name"] = "Name des Kanals"; -$a->strings["Source not found."] = "Quelle nicht gefunden."; -$a->strings["Edit Source"] = "Quelle bearbeiten"; -$a->strings["Delete Source"] = "Quelle löschen"; -$a->strings["Source removed"] = "Quelle gelöscht"; -$a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; -$a->strings["Menu updated."] = "Menü aktualisiert."; -$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; -$a->strings["Menu created."] = "Menü erstellt."; -$a->strings["Unable to create menu."] = "Kann Menü nicht erstellen."; -$a->strings["Manage Menus"] = "Menüs verwalten"; -$a->strings["Drop"] = "Löschen"; -$a->strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; -$a->strings["Create a new menu"] = "Neues Menü erstellen"; -$a->strings["Delete this menu"] = "Lösche dieses Menü"; -$a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; -$a->strings["Edit this menu"] = "Dieses Menü bearbeiten"; -$a->strings["New Menu"] = "Neues Menü"; -$a->strings["Menu name"] = "Menü Name"; -$a->strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; -$a->strings["Menu title"] = "Menü Titel"; -$a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; -$a->strings["Allow bookmarks"] = "Erlaube Lesezeichen"; -$a->strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; -$a->strings["Menu not found."] = "Menü nicht gefunden"; -$a->strings["Menu deleted."] = "Menü gelöscht."; -$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; -$a->strings["Edit Menu"] = "Menü bearbeiten"; -$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; -$a->strings["Modify"] = "Ändern"; -$a->strings["Permission Denied."] = "Zugriff verweigert."; -$a->strings["File not found."] = "Datei nicht gefunden."; -$a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; -$a->strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; -$a->strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; -$a->strings["Return to file list"] = "Zurück zur Dateiliste"; -$a->strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; -$a->strings["Attach this file to a new post"] = "Diese Datei an einen neuen Beitrag anhängen"; -$a->strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; -$a->strings["Do not show in shared with me folder of your connections"] = "Nicht im Ordner „Dateien, die mit mir geteilt wurden“ meiner Verbindungen anzeigen"; -$a->strings["Contact not found."] = "Kontakt nicht gefunden"; -$a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden."; -$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; -$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; -$a->strings["Hub not found."] = "Server nicht gefunden."; -$a->strings["Poke/Prod"] = "Anstupsen/Knuffen"; -$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; -$a->strings["Recipient"] = "Empfänger"; -$a->strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; -$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; -$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; -$a->strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; -$a->strings["Visible To"] = "Sichtbar für"; -$a->strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; $a->strings["Profile not found."] = "Profil nicht gefunden."; $a->strings["Profile deleted."] = "Profil gelöscht."; $a->strings["Profile-"] = "Profil-"; @@ -1584,11 +2063,9 @@ $a->strings["Dislikes"] = "Gefällt nicht"; $a->strings["Work/Employment"] = "Arbeit/Anstellung"; $a->strings["Religion"] = "Religion"; $a->strings["Political Views"] = "Politische Ansichten"; -$a->strings["Gender"] = "Geschlecht"; $a->strings["Sexual Preference"] = "Sexuelle Orientierung"; $a->strings["Homepage"] = "Webseite"; $a->strings["Interests"] = "Hobbys/Interessen"; -$a->strings["Address"] = "Adresse"; $a->strings["Profile updated."] = "Profil aktualisiert."; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?"; $a->strings["Edit Profile Details"] = "Bearbeite Profil-Details"; @@ -1634,410 +2111,20 @@ $a->strings["Age: "] = "Alter:"; $a->strings["Edit/Manage Profiles"] = "Profile bearbeiten/verwalten"; $a->strings["Add profile things"] = "Sachen zum Profil hinzufügen"; $a->strings["Include desirable objects in your profile"] = "Binde begehrenswerte Dinge in Dein Profil ein"; -$a->strings["No ratings"] = "Keine Bewertungen"; -$a->strings["Ratings"] = "Bewertungen"; -$a->strings["Rating: "] = "Bewertung: "; -$a->strings["Website: "] = "Webseite: "; -$a->strings["Description: "] = "Beschreibung: "; -$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; -$a->strings["Delegate Page Management"] = "Delegiere das Management für diese Seite"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; -$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; -$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; -$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; -$a->strings["Add"] = "Hinzufügen"; -$a->strings["No entries."] = "Keine Einträge."; -$a->strings["%d rating"] = array( - 0 => "%d Bewertung", - 1 => "%d Bewertungen", -); -$a->strings["Gender: "] = "Geschlecht:"; -$a->strings["Status: "] = "Status:"; -$a->strings["Homepage: "] = "Webseite:"; -$a->strings["Hometown: "] = "Wohnort:"; -$a->strings["About: "] = "Über:"; -$a->strings["Public Forum:"] = "Öffentliches Forum:"; -$a->strings["Keywords: "] = "Schlüsselwörter:"; -$a->strings["Finding:"] = "Ergebnisse:"; -$a->strings["next page"] = "nächste Seite"; -$a->strings["previous page"] = "vorherige Seite"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; +$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; +$a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; +$a->strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; +$a->strings["Visible To"] = "Sichtbar für"; $a->strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; $a->strings["Save Bookmark"] = "Lesezeichen speichern"; $a->strings["URL of bookmark"] = "URL des Lesezeichens"; $a->strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; -$a->strings["Export Channel"] = "Kanal exportieren"; -$a->strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; -$a->strings["Export Content"] = "Kanal und Inhalte exportieren"; -$a->strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Inhalte Deines Kanals, ist aber nicht unbedingt für den Import eines Kanals auf einem anderen Hub geeignet, da die Datei SEHR groß werden kann. Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; -$a->strings["No connections."] = "Keine Verbindungen."; -$a->strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; -$a->strings["invalid target signature"] = "Ungültige Signatur des Ziels"; -$a->strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; -$a->strings["Site"] = "Seite"; -$a->strings["Accounts"] = "Konten"; -$a->strings["Channels"] = "Kanäle"; -$a->strings["Plugins"] = "Plug-Ins"; -$a->strings["Themes"] = "Themes"; -$a->strings["Server"] = "Server"; -$a->strings["Profile Config"] = "Profilkonfiguration"; -$a->strings["DB updates"] = "DB-Aktualisierungen"; -$a->strings["Logs"] = "Protokolle"; -$a->strings["Plugin Features"] = "Plug-In Funktionen"; -$a->strings["User registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; -$a->strings["Message queues"] = "Nachrichten-Warteschlangen"; -$a->strings["Administration"] = "Administration"; -$a->strings["Summary"] = "Zusammenfassung"; -$a->strings["Registered users"] = "Registrierte Benutzer"; -$a->strings["Pending registrations"] = "Ausstehende Registrierungen"; -$a->strings["Version"] = "Version"; -$a->strings["Active plugins"] = "Aktive Plug-Ins"; -$a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; -$a->strings["experimental"] = "experimentell"; -$a->strings["unsupported"] = "nicht unterstützt"; -$a->strings["Yes - with approval"] = "Ja - mit Zustimmung"; -$a->strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server"; -$a->strings["My site has paid access only"] = "Mein Server erlaubt nur bezahlten Zugang"; -$a->strings["My site has free access only"] = "Mein Server erlaubt ausschließlich freien Zugang"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; -$a->strings["Registration"] = "Registrierung"; -$a->strings["File upload"] = "Dateiupload"; -$a->strings["Policies"] = "Richtlinien"; -$a->strings["Site name"] = "Seitenname"; -$a->strings["Banner/Logo"] = "Banner/Logo"; -$a->strings["Administrator Information"] = "Administrator-Informationen"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; -$a->strings["System language"] = "System-Sprache"; -$a->strings["System theme"] = "System-Theme"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; -$a->strings["Mobile system theme"] = "Mobile System-Theme:"; -$a->strings["Theme for mobile devices"] = "Theme für mobile Geräte"; -$a->strings["Enable Diaspora Protocol"] = "Diaspora-Protokoll aktivieren"; -$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Kommunikation mit Diaspora und Friendica – experimentell"; -$a->strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; -$a->strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; -$a->strings["Maximum image size"] = "Maximale Bildgröße"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; -$a->strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; -$a->strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; -$a->strings["Register text"] = "Registrierungstext"; -$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; -$a->strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; -$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -$a->strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails"; -$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde."; -$a->strings["Block public"] = "Öffentlichen Zugriff blockieren"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."; -$a->strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; -$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; -$a->strings["Force publish"] = "Veröffentlichung erzwingen"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; -$a->strings["Disable discovery tab"] = "Den „Entdecken“-Reiter ausblenden"; -$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden."; -$a->strings["No login on Homepage"] = "Kein Login auf der Homepage"; -$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)."; -$a->strings["Proxy user"] = "Proxy Benutzer"; -$a->strings["Proxy URL"] = "Proxy URL"; -$a->strings["Network timeout"] = "Netzwerk-Timeout"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; -$a->strings["Delivery interval"] = "Auslieferung Intervall"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; -$a->strings["Poll interval"] = "Abfrageintervall"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; -$a->strings["Maximum Load Average"] = "Maximales Load Average"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; -$a->strings["No server found"] = "Kein Server gefunden"; -$a->strings["ID"] = "ID"; -$a->strings["for channel"] = "für Kanal"; -$a->strings["on server"] = "auf Server"; -$a->strings["Status"] = "Status"; -$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; -$a->strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; -$a->strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; -$a->strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; -$a->strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; -$a->strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; -$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; -$a->strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s Nutzer blockiert/freigegeben", - 1 => "%s Nutzer blockiert/freigegeben", -); -$a->strings["%s user deleted"] = array( - 0 => "%s Nutzer gelöscht", - 1 => "%s Nutzer gelöscht", -); -$a->strings["Account not found"] = "Konto nicht gefunden"; -$a->strings["User '%s' unblocked"] = "Benutzer '%s' freigegeben"; -$a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert"; -$a->strings["Users"] = "Benutzer"; -$a->strings["select all"] = "Alle auswählen"; -$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; -$a->strings["Request date"] = "Antragsdatum"; -$a->strings["No registrations."] = "Keine Registrierungen."; -$a->strings["Approve"] = "Genehmigen"; -$a->strings["Deny"] = "Verweigern"; -$a->strings["Register date"] = "Registrierungs-Datum"; -$a->strings["Last login"] = "Letzte Anmeldung"; -$a->strings["Expires"] = "Verfällt"; -$a->strings["Service Class"] = "Service-Klasse"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; -$a->strings["%s channel censored/uncensored"] = array( - 0 => "%s Kanal gesperrt/freigegeben", - 1 => "%s Kanäle gesperrt/freigegeben", -); -$a->strings["%s channel deleted"] = array( - 0 => "%s Kanal gelöscht", - 1 => "%s Kanäle gelöscht", -); -$a->strings["Channel not found"] = "Kanal nicht gefunden"; -$a->strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; -$a->strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; -$a->strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; -$a->strings["Censor"] = "Sperren"; -$a->strings["Uncensor"] = "Freigeben"; -$a->strings["UID"] = "UID"; -$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; -$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; -$a->strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; -$a->strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; -$a->strings["Disable"] = "Deaktivieren"; -$a->strings["Enable"] = "Aktivieren"; -$a->strings["Toggle"] = "Umschalten"; -$a->strings["Author: "] = "Autor: "; -$a->strings["Maintainer: "] = "Betreuer:"; -$a->strings["No themes found."] = "Keine Theme gefunden."; -$a->strings["Screenshot"] = "Bildschirmfoto"; -$a->strings["[Experimental]"] = "[Experimentell]"; -$a->strings["[Unsupported]"] = "[Nicht unterstützt]"; -$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; -$a->strings["Clear"] = "Leeren"; -$a->strings["Debugging"] = "Debugging"; -$a->strings["Log file"] = "Protokolldatei"; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."; -$a->strings["Log level"] = "Protokollstufe"; -$a->strings["New Profile Field"] = "Neues Profilfeld"; -$a->strings["Field nickname"] = "Kurzname für das Feld"; -$a->strings["System name of field"] = "Systemname des Feldes"; -$a->strings["Input type"] = "Art des Inhalts"; -$a->strings["Field Name"] = "Feldname"; -$a->strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; -$a->strings["Help text"] = "Hilfetext"; -$a->strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; -$a->strings["Field definition not found"] = "Feld-Definition nicht gefunden"; -$a->strings["Edit Profile Field"] = "Profilfeld bearbeiten"; -$a->strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -$a->strings["Post successful."] = "Veröffentlichung erfolgreich."; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; -$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -$a->strings["Please login."] = "Bitte melde dich an."; -$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; -$a->strings["Remove This Account"] = "Dieses Konto löschen"; -$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden."; -$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; -$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; -$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"; -$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"; -$a->strings["Wall Photos"] = "Wall Fotos"; -$a->strings["Profile Match"] = "Profil-Übereinstimmungen"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; -$a->strings["is interested in:"] = "interessiert sich für:"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; -$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; -$a->strings["No messages."] = "Keine Nachrichten."; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - G:i"; -$a->strings["Menu element updated."] = "Menü-Element aktualisiert."; -$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; -$a->strings["Menu element added."] = "Menü-Bestandteil hinzugefügt."; -$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; -$a->strings["Manage Menu Elements"] = "Menü-Bestandteile verwalten"; -$a->strings["Edit menu"] = "Menü bearbeiten"; -$a->strings["Edit element"] = "Bestandteil bearbeiten"; -$a->strings["Drop element"] = "Bestandteil löschen"; -$a->strings["New element"] = "Neues Bestandteil"; -$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; -$a->strings["Add menu element"] = "Menüelement hinzufügen"; -$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; -$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; -$a->strings["New Menu Element"] = "Neues Menü-Bestandteil"; -$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; -$a->strings["Link text"] = "Link Text"; -$a->strings["URL of link"] = "URL des Links"; -$a->strings["Use RedMatrix magic-auth if available"] = "Verwende die automatische RedMatrix-Authentifizierung (magic-auth), wenn verfügbar"; -$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; -$a->strings["Order in list"] = "Reihenfolge in der Liste"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; -$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; -$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; -$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; -$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; -$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -$a->strings["Total votes"] = "Stimmen gesamt"; -$a->strings["Average Rating"] = "Durchschnittliche Bewertung"; -$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; -$a->strings["Remove This Channel"] = "Diesen Kanal löschen"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet, kann dieser Prozess nicht wieder rückgängig gemacht werden."; -$a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; -$a->strings["Remove Channel"] = "Kanal löschen"; -$a->strings["Help with this feature"] = "Hilfe zu dieser Funktion"; -$a->strings["Layout Name"] = "Layout-Name"; -$a->strings["Like/Dislike"] = "Mögen/Nicht mögen"; -$a->strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; -$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren."; -$a->strings["Invalid request."] = "Ungültige Anfrage."; -$a->strings["thing"] = "Sache"; -$a->strings["Channel unavailable."] = "Kanal nicht vorhanden."; -$a->strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; -$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; -$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; -$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; -$a->strings["Action completed."] = "Aktion durchgeführt."; -$a->strings["Thank you."] = "Vielen Dank."; -$a->strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; -$a->strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; -$a->strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; -$a->strings["Message deleted."] = "Nachricht gelöscht."; -$a->strings["Message recalled."] = "Nachricht widerrufen."; -$a->strings["Send Private Message"] = "Private Nachricht senden"; -$a->strings["To:"] = "An:"; -$a->strings["Subject:"] = "Betreff:"; -$a->strings["Send"] = "Absenden"; -$a->strings["Message not found."] = "Nachricht nicht gefunden."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["Recall message"] = "Nachricht widerrufen"; -$a->strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; -$a->strings["Private Conversation"] = "Private Unterhaltung"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -$a->strings["Send Reply"] = "Antwort senden"; -$a->strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; -$a->strings["Discard"] = "Verwerfen"; -$a->strings["Add a Channel"] = "Kanal hinzufügen"; -$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist Deine eigene Sammlung von zusammengehörigen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deines Hubs zulässt."; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; -$a->strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst."; -$a->strings["Or import an existing channel from another location"] = "Oder importiere einen bestehenden Kanal von einem anderen Server"; -$a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können"; -$a->strings["Channel Type"] = "Kanaltyp"; -$a->strings["Read more about roles"] = "Mehr Informationen über Rollen"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -$a->strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Delete Album"] = "Album löschen"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["No photos selected"] = "Keine Fotos ausgewählt"; -$a->strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; -$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; -$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; -$a->strings["Upload Photos"] = "Fotos hochladen"; -$a->strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; -$a->strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; -$a->strings["Do not show a status post for this upload"] = "Keine Statusnachricht für diesen Upload anzeigen"; -$a->strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; -$a->strings["Contact Photos"] = "Kontakt-Bilder"; -$a->strings["Show Newest First"] = "Neueste zuerst anzeigen"; -$a->strings["Show Oldest First"] = "Älteste zuerst anzeigen"; -$a->strings["View Photo"] = "Foto ansehen"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; -$a->strings["Photo not available"] = "Foto nicht verfügbar"; -$a->strings["Use as profile photo"] = "Als Profilfoto verwenden"; -$a->strings["Private Photo"] = "Privates Foto"; -$a->strings["View Full Size"] = "In voller Größe anzeigen"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; -$a->strings["Caption"] = "Bildunterschrift"; -$a->strings["Add a Tag"] = "Schlagwort hinzufügen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; -$a->strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; -$a->strings["In This Photo:"] = "Auf diesem Foto:"; -$a->strings["View Album"] = "Album ansehen"; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; -$a->strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -$a->strings["posted an event"] = "hat einen Termin veröffentlicht"; -$a->strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -$a->strings["My Bookmarks"] = "Meine Lesezeichen"; -$a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; -$a->strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; -$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["Terms of Service"] = "Nutzungsbedingungen"; -$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; -$a->strings["Your email address"] = "Ihre E-Mail Adresse"; -$a->strings["Choose a password"] = "Passwort"; -$a->strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; -$a->strings["The error message was:"] = "Die Fehlermeldung war:"; -$a->strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; -$a->strings["Remote Authentication"] = "Entfernte Authentifizierung"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; -$a->strings["Authenticate"] = "Authentifizieren"; -$a->strings["Poll"] = "Umfrage"; -$a->strings["View Results"] = "Ergebnisse"; -$a->strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; -$a->strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; -$a->strings["Remove all files"] = "Alle Dateien löschen"; -$a->strings["Remove this file"] = "Diese Datei löschen"; -$a->strings["Schema Default"] = "Standard-Schema"; -$a->strings["Sans-Serif"] = "Sans-Serif"; -$a->strings["Monospace"] = "Monospace"; +$a->strings["Import completed"] = "Import abgeschlossen"; +$a->strings["Import Items"] = "Beiträge importieren"; +$a->strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; +$a->strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)"; $a->strings["Theme settings"] = "Theme-Einstellungen"; -$a->strings["Set scheme"] = "Schema"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare"; -$a->strings["Set font face"] = "Schriftart"; -$a->strings["Set iconset"] = "Icon-Set"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ausmaß der großen Schatten (Voreinstellung 15px 15px 15px)"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ausmaß der kleinen Schatten (Voreinstellung 5px 5px 5px)"; -$a->strings["Set shadow color, default #000"] = "Farbe der Schatten (Voreinstellung #000)"; -$a->strings["Set radius size, default 5px"] = "Ecken-Radius (Voreinstellung 5px)"; -$a->strings["Set line-height for posts and comments"] = "Zeilenhöhe in Beiträgen und Kommentaren"; -$a->strings["Set background image"] = "Hintergrundbild"; -$a->strings["Set background attachment"] = "Hintergrunddatei"; -$a->strings["Set background color"] = "Hintergrundfarbe"; -$a->strings["Set section background image"] = "Hintergrundbild für die Section"; -$a->strings["Set section background color"] = "Hintergrundfarbe für die Section"; -$a->strings["Set color of items - use hex"] = "Farbe für Beiträge – Hex benutzen"; -$a->strings["Set color of links - use hex"] = "Farbe für Links – Hex benutzen"; -$a->strings["Set max-width for items. Default 400px"] = "Maximale Breite von Beiträgen (Voreinstellung 400px)"; -$a->strings["Set min-width for items. Default 240px"] = "Minimale Breite von Beiträgen (Voreinstellung 240px)"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Breite des \"generic content wrapper\" (Voreinstellung 48%)"; -$a->strings["Set color of fonts - use hex"] = "Schriftfarbe – Hex benutzen"; -$a->strings["Set background-size element"] = "Größe des Hintergrund-Elements"; -$a->strings["Item opacity"] = "Deckkraft der Beiträge"; -$a->strings["Display post previews only"] = "Nur Beitragsvorschau anzeigen"; -$a->strings["Display side bar on channel page"] = "Zeige die Seitenleiste auf der Kanal-Seite"; -$a->strings["Colour of the navigation bar"] = "Farbe der Navigationsleiste"; -$a->strings["Item float"] = "Beitragsfluss"; -$a->strings["Left offset of the section element"] = "Linker Rand des Section Elements"; -$a->strings["Right offset of the section element"] = "Rechter Rand des Section Elements"; -$a->strings["Section width"] = "Breite der Section"; -$a->strings["Left offset of the aside"] = "Linker Rand des Aside-Elements"; -$a->strings["Right offset of the aside element"] = "Rechter Rand des Aside-Elements"; -$a->strings["Light (Red Matrix default)"] = "Hell (RedMatrix-Voreinstellung)"; +$a->strings["Select scheme"] = "Schema wählen"; $a->strings["Narrow navbar"] = "Schmale Navigationsleiste"; $a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; $a->strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben"; @@ -2058,22 +2145,25 @@ $a->strings["Set the indent for comments"] = "Einzugsbreite für Kommentare"; $a->strings["Set the basic color for item icons"] = "Grundfarbe für Beitrags-Icons"; $a->strings["Set the hover color for item icons"] = "Farbe für Beitrags-Icons unter dem Mauszeiger"; $a->strings["Set font-size for the entire application"] = "Schriftgröße für die gesamte Anwendung"; +$a->strings["Example: 14px"] = "Beispiel: 14px"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare"; $a->strings["Set font-color for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare"; $a->strings["Set radius of corners"] = "Ecken-Radius"; $a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos"; -$a->strings["Set maximum width of conversation regions"] = "Maximalbreite der Unterhaltungsbereiche"; -$a->strings["Center conversation regions"] = "Konversationsbereich zentrieren"; +$a->strings["Set maximum width of content region in pixel"] = "Maximalbreite des Inhaltsbereichs in Pixel festlegen"; +$a->strings["Leave empty for default width"] = "Leer lassen für Standardbreite"; +$a->strings["Left align page content"] = "Seiteninhalt linksbündig anzeigen"; $a->strings["Set minimum opacity of nav bar - to hide it"] = "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)"; $a->strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern"; $a->strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren"; -$a->strings["Sloppy photo albums"] = "Schräge Fotoalben"; -$a->strings["Are you a clean desk or a messy desk person?"] = "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?"; $a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; $a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; -$a->strings["Create an account to access services and applications within the Red Matrix"] = "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."; +$a->strings["Create an account to access services and applications within the Hubzilla"] = "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können."; $a->strings["Password"] = "Kennwort"; $a->strings["Remember me"] = "Angaben speichern"; $a->strings["Forgot your password?"] = "Passwort vergessen?"; -$a->strings["permission denied"] = "Zugriff verweigert"; -$a->strings["Got Zot?"] = "Haste schon Zot?"; $a->strings["toggle mobile"] = "auf/von mobile Ansicht wechseln"; +$a->strings["Website SSL certificate is not valid. Please correct."] = "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben."; +$a->strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Website-SSL-Fehler für %s"; +$a->strings["Cron/Scheduled tasks not running."] = "Cron-Aufgaben laufen nicht."; +$a->strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron-Aufgaben für %s laufen nicht"; diff --git a/view/de/messages.po b/view/de/messages.po index ef27fd162..460fd764b 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -15,105 +15,115 @@ # Frank Dieckmann , 2013 # Frank Dieckmann , 2013 # Kai , 2015 -# Oliver , 2013-2014 +# Oliver , 2013-2015 # Phellmes , 2014 # Steff , 2015 -# bavatar , 2013-2014 +# bavatar , 2013-2015 # do.t , 2014 # zottel , 2013-2015 -# sasiflo , 2014 +# sasiflo , 2014-2015 msgid "" msgstr "" -"Project-Id-Version: Red Matrix\n" +"Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-20 00:04-0800\n" -"PO-Revision-Date: 2015-02-27 09:55+0000\n" -"Last-Translator: zottel \n" -"Language-Team: German (http://www.transifex.com/projects/p/red-matrix/language/de/)\n" +"POT-Creation-Date: 2015-09-25 00:05-0700\n" +"PO-Revision-Date: 2015-09-30 11:58+0000\n" +"Last-Translator: Oliver \n" +"Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:142 +#: ../../include/dba/dba_driver.php:141 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 -#: ../../mod/profile_photo.php:143 ../../mod/profile_photo.php:302 -#: ../../mod/profile_photo.php:424 ../../mod/photos.php:91 -#: ../../mod/photos.php:625 +#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143 +#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 +#: ../../mod/photos.php:92 ../../mod/photos.php:637 msgid "Profile Photos" msgstr "Profilfotos" -#: ../../include/photos.php:15 ../../include/attach.php:137 -#: ../../include/attach.php:184 ../../include/attach.php:247 -#: ../../include/attach.php:261 ../../include/attach.php:301 -#: ../../include/attach.php:315 ../../include/attach.php:339 -#: ../../include/attach.php:532 ../../include/attach.php:606 -#: ../../include/chat.php:116 ../../include/items.php:4072 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/editblock.php:65 -#: ../../mod/manage.php:6 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 ../../mod/connedit.php:321 -#: ../../mod/editpost.php:13 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/network.php:12 ../../mod/events.php:219 -#: ../../mod/settings.php:560 ../../mod/group.php:9 ../../mod/setup.php:207 -#: ../../mod/common.php:35 ../../mod/suggest.php:26 -#: ../../mod/connections.php:169 ../../mod/item.php:197 ../../mod/item.php:205 -#: ../../mod/item.php:938 ../../mod/thing.php:247 ../../mod/thing.php:264 -#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/appman.php:66 -#: ../../mod/authtest.php:13 ../../mod/editlayout.php:64 -#: ../../mod/editlayout.php:89 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:118 ../../mod/rate.php:110 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:77 -#: ../../mod/sources.php:66 ../../mod/menu.php:61 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 -#: ../../mod/filestorage.php:114 ../../mod/fsuggest.php:78 -#: ../../mod/poke.php:128 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 -#: ../../mod/webpages.php:67 ../../mod/delegate.php:6 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/regmod.php:17 ../../mod/message.php:16 ../../mod/mitem.php:106 -#: ../../mod/mood.php:111 ../../mod/layouts.php:67 ../../mod/layouts.php:74 -#: ../../mod/layouts.php:85 ../../mod/like.php:178 ../../mod/mail.php:114 -#: ../../mod/notifications.php:66 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/photos.php:68 ../../mod/page.php:28 -#: ../../mod/page.php:78 ../../mod/bookmarks.php:46 ../../mod/channel.php:90 -#: ../../mod/channel.php:199 ../../mod/channel.php:242 -#: ../../mod/register.php:72 ../../mod/service_limits.php:7 -#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:390 -msgid "Permission denied." -msgstr "Zugang verweigert" +#: ../../include/menu.php:107 ../../include/page_widgets.php:8 +#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:266 +#: ../../include/ItemObject.php:100 ../../include/apps.php:254 +#: ../../mod/webpages.php:181 ../../mod/thing.php:255 +#: ../../mod/connections.php:242 ../../mod/connections.php:255 +#: ../../mod/connections.php:274 ../../mod/blocks.php:153 +#: ../../mod/editpost.php:106 ../../mod/editlayout.php:133 +#: ../../mod/editwebpage.php:178 ../../mod/editblock.php:134 +#: ../../mod/menu.php:106 ../../mod/settings.php:650 ../../mod/layouts.php:183 +msgid "Edit" +msgstr "Bearbeiten" -#: ../../include/photos.php:105 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Häufig" -#: ../../include/photos.php:112 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Stündlich" -#: ../../include/photos.php:141 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Zwei Mal am Tag" -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "Foto speichern schlug fehl" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Täglich" -#: ../../include/photos.php:355 ../../include/conversation.php:1589 -msgid "Photo Albums" -msgstr "Fotoalben" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" -#: ../../include/photos.php:359 -msgid "Upload New Photos" -msgstr "Lade neue Fotos hoch" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" + +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:79 ../../mod/admin.php:822 +#: ../../mod/admin.php:831 ../../mod/id.php:15 ../../mod/id.php:16 +#: ../../boot.php:1552 +msgid "Email" +msgstr "E-Mail" + +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" #: ../../include/notify.php:23 msgid "created a new post" @@ -124,879 +134,322 @@ msgstr "Neuer Beitrag wurde erzeugt" msgid "commented on %s's post" msgstr "hat %s's Beitrag kommentiert" +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." +msgstr "Kein Benutzername in der Importdatei gefunden." + +#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." + +#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 +msgid "Import completed." +msgstr "Import abgeschlossen." + +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen." + +#: ../../include/group.php:235 +msgid "Default privacy group for new contacts" +msgstr "Standard-Sammlung für neue Kontakte" + +#: ../../include/group.php:254 ../../mod/admin.php:831 +msgid "All Channels" +msgstr "Alle Kanäle" + +#: ../../include/group.php:276 +msgid "edit" +msgstr "Bearbeiten" + +#: ../../include/group.php:298 +msgid "Collections" +msgstr "Sammlungen" + +#: ../../include/group.php:299 +msgid "Edit collection" +msgstr "Sammlung bearbeiten" + +#: ../../include/group.php:300 +msgid "Add new collection" +msgstr "Neue Sammlung hinzufügen" + +#: ../../include/group.php:301 +msgid "Channels not in any collection" +msgstr "Kanäle, die nicht in einer Sammlung sind" + +#: ../../include/group.php:303 ../../include/widgets.php:275 +msgid "add" +msgstr "hinzufügen" + +#: ../../include/account.php:27 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" + +#: ../../include/account.php:29 +msgid "Your email domain is not among those allowed on this site" +msgstr "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt" + +#: ../../include/account.php:35 +msgid "Your email address is already registered at this site." +msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." + +#: ../../include/account.php:67 +msgid "An invitation is required." +msgstr "Eine Einladung ist erforderlich." + +#: ../../include/account.php:71 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden" + +#: ../../include/account.php:121 +msgid "Please enter the required information." +msgstr "Bitte gib die erforderlichen Informationen ein." + +#: ../../include/account.php:188 +msgid "Failed to store account information." +msgstr "Speichern der Account-Informationen fehlgeschlagen" + +#: ../../include/account.php:246 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" + +#: ../../include/account.php:312 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" + +#: ../../include/account.php:314 ../../include/account.php:341 +#: ../../include/account.php:401 ../../include/network.php:1632 +msgid "Administrator" +msgstr "Administrator" + +#: ../../include/account.php:336 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" + +#: ../../include/account.php:339 ../../include/account.php:399 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" + +#: ../../include/account.php:408 +msgid "Account approved." +msgstr "Account bestätigt." + +#: ../../include/account.php:447 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s widerrufen" + +#: ../../include/account.php:492 +msgid "Account verified. Please login." +msgstr "Konto geprüft. Bitte melde Dich an!" + +#: ../../include/account.php:705 ../../include/account.php:707 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." + +#: ../../include/account.php:713 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." + +#: ../../include/account.php:718 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." + +#: ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: ../../include/datetime.php:132 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" + +#: ../../include/datetime.php:235 ../../mod/events.php:672 +#: ../../mod/appman.php:91 ../../mod/appman.php:92 +msgid "Required" +msgstr "Erforderlich" + +#: ../../include/datetime.php:262 ../../boot.php:2353 +msgid "never" +msgstr "Nie" + +#: ../../include/datetime.php:268 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" + +#: ../../include/datetime.php:271 +msgid "year" +msgstr "Jahr" + +#: ../../include/datetime.php:271 +msgid "years" +msgstr "Jahre" + +#: ../../include/datetime.php:272 +msgid "month" +msgstr "Monat" + +#: ../../include/datetime.php:272 +msgid "months" +msgstr "Monate" + +#: ../../include/datetime.php:273 +msgid "week" +msgstr "Woche" + +#: ../../include/datetime.php:273 +msgid "weeks" +msgstr "Wochen" + +#: ../../include/datetime.php:274 +msgid "day" +msgstr "Tag" + +#: ../../include/datetime.php:274 +msgid "days" +msgstr "Tage" + +#: ../../include/datetime.php:275 +msgid "hour" +msgstr "Stunde" + +#: ../../include/datetime.php:275 +msgid "hours" +msgstr "Stunden" + +#: ../../include/datetime.php:276 +msgid "minute" +msgstr "Minute" + +#: ../../include/datetime.php:276 +msgid "minutes" +msgstr "Minuten" + +#: ../../include/datetime.php:277 +msgid "second" +msgstr "Sekunde" + +#: ../../include/datetime.php:277 +msgid "seconds" +msgstr "Sekunden" + +#: ../../include/datetime.php:285 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" + +#: ../../include/datetime.php:519 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" + +#: ../../include/datetime.php:520 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" + +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" + +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Sicherer Modus" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/api.php:106 +#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 +#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 +#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:428 +#: ../../mod/settings.php:579 ../../mod/removeme.php:60 +#: ../../mod/connedit.php:647 ../../mod/connedit.php:675 +#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 +msgid "No" +msgstr "Nein" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/api.php:105 +#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 +#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 +#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:430 +#: ../../mod/settings.php:579 ../../mod/removeme.php:60 +#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 +msgid "Yes" +msgstr "Ja" + +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" + +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Nur diese Website" + #: ../../include/page_widgets.php:6 msgid "New Page" msgstr "Neue Seite" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:42 -#: ../../mod/editblock.php:143 ../../mod/blocks.php:132 -#: ../../mod/editpost.php:113 ../../mod/settings.php:645 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/thing.php:233 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 -#: ../../mod/menu.php:78 ../../mod/webpages.php:162 ../../mod/layouts.php:167 -msgid "Edit" -msgstr "Bearbeiten" - -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 +#: ../../include/page_widgets.php:39 ../../mod/webpages.php:187 +#: ../../mod/blocks.php:159 ../../mod/layouts.php:188 msgid "View" msgstr "Ansicht" #: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 -#: ../../include/conversation.php:1152 ../../mod/events.php:651 -#: ../../mod/webpages.php:166 ../../mod/photos.php:964 +#: ../../include/conversation.php:1166 ../../mod/webpages.php:188 +#: ../../mod/events.php:690 ../../mod/editpost.php:143 +#: ../../mod/photos.php:982 ../../mod/editwebpage.php:214 +#: ../../mod/editblock.php:170 msgid "Preview" msgstr "Vorschau" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 msgid "Actions" msgstr "Aktionen" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 msgid "Page Link" msgstr "Seiten-Link" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 +#: ../../include/page_widgets.php:43 msgid "Title" msgstr "Titel" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 +#: ../../include/page_widgets.php:44 ../../mod/webpages.php:192 +#: ../../mod/blocks.php:150 ../../mod/menu.php:108 ../../mod/layouts.php:181 msgid "Created" msgstr "Erstellt" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 +#: ../../include/page_widgets.php:45 ../../mod/webpages.php:193 +#: ../../mod/blocks.php:151 ../../mod/menu.php:109 ../../mod/layouts.php:182 msgid "Edited" msgstr "Geändert" -#: ../../include/widgets.php:35 ../../include/taxonomy.php:255 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Kategorien" +#: ../../include/api.php:1234 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apps" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1494 -msgid "Personal" -msgstr "Persönlich" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Persönliche App erstellen" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Persönliche App bearbeiten" - -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/identity.php:840 ../../include/Contact.php:107 -#: ../../include/conversation.php:940 ../../mod/suggest.php:51 -#: ../../mod/directory.php:272 ../../mod/match.php:62 -msgid "Connect" -msgstr "Verbinden" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" - -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Vorschläge" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Adresse des Kanals eingeben" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Notizen" - -#: ../../include/widgets.php:192 ../../include/text.php:838 -#: ../../include/text.php:850 ../../mod/filer.php:50 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/admin.php:1344 ../../mod/admin.php:1365 -msgid "Save" -msgstr "Speichern" - -#: ../../include/widgets.php:264 -msgid "Remove term" -msgstr "Eintrag löschen" - -#: ../../include/widgets.php:272 ../../include/features.php:72 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - -#: ../../include/widgets.php:273 ../../include/group.php:303 -msgid "add" -msgstr "hinzufügen" - -#: ../../include/widgets.php:302 ../../include/features.php:84 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:347 -msgid "Archives" -msgstr "Archive" - -#: ../../include/widgets.php:425 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../include/widgets.php:426 ../../mod/connedit.php:563 -msgid "Me" -msgstr "Ich" - -#: ../../include/widgets.php:427 ../../mod/connedit.php:566 -msgid "Best Friends" -msgstr "Beste Freunde" - -#: ../../include/widgets.php:428 ../../include/identity.php:387 -#: ../../include/identity.php:388 ../../include/identity.php:395 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:567 -#: ../../mod/settings.php:335 ../../mod/settings.php:339 -#: ../../mod/settings.php:340 ../../mod/settings.php:343 -#: ../../mod/settings.php:354 -msgid "Friends" -msgstr "Freunde" - -#: ../../include/widgets.php:429 -msgid "Co-workers" -msgstr "Kollegen" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:568 -msgid "Former Friends" -msgstr "ehem. Freunde" - -#: ../../include/widgets.php:431 ../../mod/connedit.php:569 -msgid "Acquaintances" -msgstr "Bekannte" - -#: ../../include/widgets.php:432 -msgid "Everybody" -msgstr "Jeder" - -#: ../../include/widgets.php:466 -msgid "Account settings" -msgstr "Konto-Einstellungen" - -#: ../../include/widgets.php:472 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" - -#: ../../include/widgets.php:478 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../include/widgets.php:484 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" - -#: ../../include/widgets.php:490 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" - -#: ../../include/widgets.php:496 -msgid "Connected apps" -msgstr "Verbundene Apps" - -#: ../../include/widgets.php:502 -msgid "Export channel" -msgstr "Kanal exportieren" - -#: ../../include/widgets.php:511 ../../mod/connedit.php:627 -msgid "Connection Default Permissions" -msgstr "Standardzugriffsrechte für neue Verbindungen:" - -#: ../../include/widgets.php:519 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" - -#: ../../include/widgets.php:527 ../../include/features.php:61 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanal-Quellen" - -#: ../../include/widgets.php:535 ../../include/nav.php:210 -#: ../../include/apps.php:134 ../../mod/admin.php:956 ../../mod/admin.php:1161 -msgid "Settings" -msgstr "Einstellungen" - -#: ../../include/widgets.php:548 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../include/widgets.php:551 -msgid "Check Mail" -msgstr "E-Mails abrufen" - -#: ../../include/widgets.php:556 ../../include/nav.php:201 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/widgets.php:634 -msgid "Chat Rooms" -msgstr "Chaträume" - -#: ../../include/widgets.php:654 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../include/widgets.php:674 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../include/widgets.php:801 ../../include/widgets.php:859 -msgid "photo/image" -msgstr "Foto/Bild" - -#: ../../include/widgets.php:954 ../../include/widgets.php:956 -msgid "Rate Me" -msgstr "Bewerte mich" - -#: ../../include/widgets.php:960 -msgid "View Ratings" -msgstr "Bewertungen ansehen" - -#: ../../include/widgets.php:971 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" - -#: ../../include/enotify.php:41 -msgid "Red Matrix Notification" -msgstr "Red Matrix Benachrichtigung" - -#: ../../include/enotify.php:42 -msgid "redmatrix" -msgstr "redmatrix" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Danke." - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" - -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." - -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "eine private Nachricht" - -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" - -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" - -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." - -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." - -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" - -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" - -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" - -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" - -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." - -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" - -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]." - -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" - -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" - -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" - -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Benachrichtigung] Vorstellung erhalten" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" - -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." - -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kannst Dir das Profil unter %s ansehen" - -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." - -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" - -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" - -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." - -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Name:" - -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." - -#: ../../include/enotify.php:499 -msgid "[Red:Notify]" -msgstr "[Red:Benachrichtigung]" - -#: ../../include/text.php:320 -msgid "prev" -msgstr "vorherige" - -#: ../../include/text.php:322 -msgid "first" -msgstr "erste" - -#: ../../include/text.php:351 -msgid "last" -msgstr "letzte" - -#: ../../include/text.php:354 -msgid "next" -msgstr "nächste" - -#: ../../include/text.php:366 -msgid "older" -msgstr "älter" - -#: ../../include/text.php:368 -msgid "newer" -msgstr "neuer" - -#: ../../include/text.php:751 -msgid "No connections" -msgstr "Keine Verbindungen" - -#: ../../include/text.php:767 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Verbindung" -msgstr[1] "%d Verbindungen" - -#: ../../include/text.php:780 ../../mod/viewconnections.php:86 -msgid "View Connections" -msgstr "Verbindungen anzeigen" - -#: ../../include/text.php:837 ../../include/text.php:849 -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../mod/search.php:34 -msgid "Search" -msgstr "Suche" - -#: ../../include/text.php:916 -msgid "poke" -msgstr "anstupsen" - -#: ../../include/text.php:916 ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" - -#: ../../include/text.php:917 -msgid "ping" -msgstr "anpingen" - -#: ../../include/text.php:917 -msgid "pinged" -msgstr "pingte" - -#: ../../include/text.php:918 -msgid "prod" -msgstr "knuffen" - -#: ../../include/text.php:918 -msgid "prodded" -msgstr "knuffte" - -#: ../../include/text.php:919 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:919 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:920 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:920 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:921 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:921 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:931 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:932 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:933 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:934 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:935 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:936 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:937 -msgid "stupified" -msgstr "verblüfft" - -#: ../../include/text.php:938 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:939 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:940 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:941 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:942 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:943 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:944 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:945 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:946 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:947 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:948 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:949 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:950 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:951 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1117 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1117 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1117 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1117 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1117 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1117 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1117 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1121 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1121 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1121 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1121 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1121 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1121 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1121 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1121 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1121 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1121 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1121 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1121 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1199 -msgid "unknown.???" -msgstr "unbekannt.???" - -#: ../../include/text.php:1200 -msgid "bytes" -msgstr "Bytes" - -#: ../../include/text.php:1236 -msgid "remove category" -msgstr "Kategorie entfernen" - -#: ../../include/text.php:1305 -msgid "remove from file" -msgstr "aus der Datei entfernen" - -#: ../../include/text.php:1381 ../../include/text.php:1392 -#: ../../mod/connedit.php:635 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" - -#: ../../include/text.php:1540 ../../mod/events.php:444 -msgid "Link to Source" -msgstr "Link zur Quelle" - -#: ../../include/text.php:1559 -msgid "Select a page layout: " -msgstr "Ein Seiten-Layout auswählen:" - -#: ../../include/text.php:1562 ../../include/text.php:1622 -msgid "default" +#: ../../include/comanche.php:34 ../../mod/admin.php:390 +#: ../../view/theme/apw/php/config.php:185 +msgid "Default" msgstr "Standard" -#: ../../include/text.php:1595 -msgid "Page content type: " -msgstr "Content-Typ der Seite:" - -#: ../../include/text.php:1634 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" - -#: ../../include/text.php:1753 ../../include/diaspora.php:1909 -#: ../../include/conversation.php:120 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:43 ../../mod/like.php:335 -msgid "photo" -msgstr "Foto" - -#: ../../include/text.php:1756 ../../include/conversation.php:123 -#: ../../mod/tagger.php:47 ../../mod/like.php:337 -msgid "event" -msgstr "Termin" - -#: ../../include/text.php:1759 ../../include/diaspora.php:1909 -#: ../../include/conversation.php:148 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:51 ../../mod/like.php:335 -msgid "status" -msgstr "Status" - -#: ../../include/text.php:1761 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "Kommentar" - -#: ../../include/text.php:1766 -msgid "activity" -msgstr "Aktivität" - -#: ../../include/text.php:2053 -msgid "Design" -msgstr "Design" - -#: ../../include/text.php:2056 -msgid "Blocks" -msgstr "Blöcke" - -#: ../../include/text.php:2057 -msgid "Menus" -msgstr "Menüs" - -#: ../../include/text.php:2058 -msgid "Layouts" -msgstr "Layouts" - -#: ../../include/text.php:2059 -msgid "Pages" -msgstr "Seiten" - -#: ../../include/text.php:2395 ../../include/RedDAV/RedBrowser.php:130 -msgid "Collection" -msgstr "Ordner" - -#: ../../include/attach.php:242 ../../include/attach.php:296 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:352 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../include/attach.php:369 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" - -#: ../../include/attach.php:387 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" - -#: ../../include/attach.php:398 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../include/attach.php:410 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." - -#: ../../include/attach.php:493 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:505 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:547 ../../include/attach.php:564 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:611 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:627 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:651 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:702 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:706 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dieses Element löschen?" #: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:962 ../../mod/photos.php:1080 +#: ../../mod/photos.php:980 ../../mod/photos.php:1098 msgid "Comment" msgstr "Kommentar" @@ -1024,7 +477,7 @@ msgstr "Kennwort zu kurz" msgid "Passwords do not match" msgstr "Kennwörter stimmen nicht überein" -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +#: ../../include/js_strings.php:13 ../../mod/photos.php:40 msgid "everybody" msgstr "alle" @@ -1053,6 +506,7 @@ msgid "Rate This Channel (this is public)" msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" #: ../../include/js_strings.php:20 ../../mod/rate.php:156 +#: ../../mod/connedit.php:683 msgid "Rating" msgstr "Bewertung" @@ -1061,191 +515,558 @@ msgid "Describe (optional)" msgstr "Beschreibung (optional)" #: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/xchan.php:11 ../../mod/connedit.php:653 ../../mod/connect.php:93 -#: ../../mod/events.php:654 ../../mod/settings.php:583 -#: ../../mod/settings.php:708 ../../mod/settings.php:737 -#: ../../mod/settings.php:760 ../../mod/settings.php:842 -#: ../../mod/settings.php:1038 ../../mod/group.php:81 ../../mod/setup.php:313 -#: ../../mod/setup.php:358 ../../mod/thing.php:284 ../../mod/thing.php:327 -#: ../../mod/pdledit.php:58 ../../mod/appman.php:99 ../../mod/import.php:504 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/rate.php:167 +#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/thing.php:303 +#: ../../mod/thing.php:346 ../../mod/events.php:511 ../../mod/events.php:693 +#: ../../mod/group.php:81 ../../mod/photos.php:577 ../../mod/photos.php:654 +#: ../../mod/photos.php:941 ../../mod/photos.php:981 ../../mod/photos.php:1099 +#: ../../mod/pdledit.php:58 ../../mod/import.php:592 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/mitem.php:235 ../../mod/rate.php:167 #: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:155 +#: ../../mod/sources.php:138 ../../mod/filestorage.php:156 #: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 -#: ../../mod/profiles.php:667 ../../mod/admin.php:416 ../../mod/admin.php:728 -#: ../../mod/admin.php:864 ../../mod/admin.php:997 ../../mod/admin.php:1196 -#: ../../mod/admin.php:1283 ../../mod/mood.php:134 ../../mod/mail.php:355 -#: ../../mod/photos.php:565 ../../mod/photos.php:642 ../../mod/photos.php:923 -#: ../../mod/photos.php:963 ../../mod/photos.php:1081 ../../mod/poll.php:68 -#: ../../view/theme/apw/php/config.php:256 +#: ../../mod/profiles.php:667 ../../mod/setup.php:327 ../../mod/setup.php:367 +#: ../../mod/admin.php:453 ../../mod/admin.php:819 ../../mod/admin.php:986 +#: ../../mod/admin.php:1118 ../../mod/admin.php:1312 ../../mod/admin.php:1397 +#: ../../mod/settings.php:588 ../../mod/settings.php:692 +#: ../../mod/settings.php:718 ../../mod/settings.php:746 +#: ../../mod/settings.php:769 ../../mod/settings.php:854 +#: ../../mod/settings.php:1050 ../../mod/mood.php:134 +#: ../../mod/connedit.php:704 ../../mod/mail.php:355 ../../mod/appman.php:99 +#: ../../mod/pconfig.php:108 ../../mod/poll.php:68 +#: ../../mod/bulksetclose.php:24 ../../view/theme/apw/php/config.php:256 #: ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "Bestätigen" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Bitte geben Sie eine Link-URL ein" + #: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Ungespeicherte Änderungen. Sind Sie sicher, dass Sie diese Seite verlassen möchten?" + +#: ../../include/js_strings.php:26 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:25 +#: ../../include/js_strings.php:27 msgid "timeago.prefixFromNow" -msgstr " " +msgstr "timeago.prefixFromNow" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:28 msgid "ago" msgstr "her" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:29 msgid "from now" msgstr "von jetzt" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:30 msgid "less than a minute" msgstr "weniger als eine Minute" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:31 msgid "about a minute" msgstr "ungefähr eine Minute" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:32 #, php-format msgid "%d minutes" msgstr "%d Minuten" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:33 msgid "about an hour" msgstr "ungefähr eine Stunde" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:34 #, php-format msgid "about %d hours" msgstr "ungefähr %d Stunden" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:35 msgid "a day" msgstr "ein Tag" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:36 #, php-format msgid "%d days" msgstr "%d Tage" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:37 msgid "about a month" msgstr "ungefähr ein Monat" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:38 #, php-format msgid "%d months" msgstr "%d Monate" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:39 msgid "about a year" msgstr "ungefähr ein Jahr" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:40 #, php-format msgid "%d years" msgstr "%d Jahre" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:41 msgid " " msgstr " " -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:42 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:266 +#: ../../include/text.php:391 +msgid "prev" +msgstr "vorherige" + +#: ../../include/text.php:393 +msgid "first" +msgstr "erste" + +#: ../../include/text.php:422 +msgid "last" +msgstr "letzte" + +#: ../../include/text.php:425 +msgid "next" +msgstr "nächste" + +#: ../../include/text.php:435 +msgid "older" +msgstr "älter" + +#: ../../include/text.php:437 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:830 +msgid "No connections" +msgstr "Keine Verbindungen" + +#: ../../include/text.php:844 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d Verbindung" +msgstr[1] "%d Verbindungen" + +#: ../../include/text.php:857 ../../mod/viewconnections.php:104 +msgid "View Connections" +msgstr "Verbindungen anzeigen" + +#: ../../include/text.php:914 ../../include/text.php:926 +#: ../../include/nav.php:165 ../../include/apps.php:147 +#: ../../mod/search.php:38 +msgid "Search" +msgstr "Suche" + +#: ../../include/text.php:915 ../../include/text.php:927 +#: ../../include/widgets.php:192 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1457 +#: ../../mod/admin.php:1477 +msgid "Save" +msgstr "Speichern" + +#: ../../include/text.php:990 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:990 ../../include/conversation.php:243 +msgid "poked" +msgstr "stupste" + +#: ../../include/text.php:991 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:991 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:992 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:992 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:993 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:993 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:994 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:994 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:995 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:995 +msgid "rebuffed" +msgstr "zurückgewiesen" + +#: ../../include/text.php:1005 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:1006 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:1007 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:1008 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:1009 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:1010 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:1011 +msgid "stupified" +msgstr "verblüfft" + +#: ../../include/text.php:1012 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:1013 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:1014 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:1015 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:1016 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:1017 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:1018 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:1019 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:1020 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:1021 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:1022 +msgid "depressed" +msgstr "deprimiert" + +#: ../../include/text.php:1023 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:1024 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:1025 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1197 +msgid "Monday" +msgstr "Montag" + +#: ../../include/text.php:1197 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/text.php:1197 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/text.php:1197 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/text.php:1197 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/text.php:1197 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/text.php:1197 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/text.php:1201 +msgid "January" +msgstr "Januar" + +#: ../../include/text.php:1201 +msgid "February" +msgstr "Februar" + +#: ../../include/text.php:1201 +msgid "March" +msgstr "März" + +#: ../../include/text.php:1201 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1201 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1201 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1201 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1201 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1201 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1201 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1201 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1201 +msgid "December" +msgstr "Dezember" + +#: ../../include/text.php:1306 +msgid "unknown.???" +msgstr "unbekannt.???" + +#: ../../include/text.php:1307 +msgid "bytes" +msgstr "Bytes" + +#: ../../include/text.php:1343 +msgid "remove category" +msgstr "Kategorie entfernen" + +#: ../../include/text.php:1418 +msgid "remove from file" +msgstr "aus der Datei entfernen" + +#: ../../include/text.php:1494 ../../include/text.php:1505 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" + +#: ../../include/text.php:1661 ../../mod/events.php:474 +msgid "Link to Source" +msgstr "Link zur Quelle" + +#: ../../include/text.php:1682 ../../include/text.php:1753 +msgid "default" +msgstr "Standard" + +#: ../../include/text.php:1690 +msgid "Page layout" +msgstr "Seitengestaltung" + +#: ../../include/text.php:1690 +msgid "You can create your own with the layouts tool" +msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Gestaltungen erstellen" + +#: ../../include/text.php:1731 +msgid "Page content type" +msgstr "Art des Seiteninhalts" + +#: ../../include/text.php:1765 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" + +#: ../../include/text.php:1884 ../../include/diaspora.php:2119 +#: ../../include/conversation.php:120 ../../mod/like.php:349 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +#: ../../mod/tagger.php:43 +msgid "photo" +msgstr "Foto" + +#: ../../include/text.php:1887 ../../include/conversation.php:123 +#: ../../mod/like.php:351 ../../mod/tagger.php:47 +msgid "event" +msgstr "Termin" + +#: ../../include/text.php:1890 ../../include/diaspora.php:2119 +#: ../../include/conversation.php:148 ../../mod/like.php:349 +#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 +msgid "status" +msgstr "Status" + +#: ../../include/text.php:1892 ../../include/conversation.php:150 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "Kommentar" + +#: ../../include/text.php:1897 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:2192 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" + +#: ../../include/text.php:2195 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Blöcke" + +#: ../../include/text.php:2196 ../../mod/menu.php:101 +msgid "Menus" +msgstr "Menüs" + +#: ../../include/text.php:2197 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Gestaltungen" + +#: ../../include/text.php:2198 +msgid "Pages" +msgstr "Seiten" + +#: ../../include/text.php:2549 ../../include/RedDAV/RedBrowser.php:131 +msgid "Collection" +msgstr "Ordner" + +#: ../../include/RedDAV/RedBrowser.php:107 +#: ../../include/RedDAV/RedBrowser.php:265 msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../include/RedDAV/RedBrowser.php:133 +#: ../../include/RedDAV/RedBrowser.php:134 msgid "Principal" msgstr "Prinzipal" -#: ../../include/RedDAV/RedBrowser.php:136 +#: ../../include/RedDAV/RedBrowser.php:137 msgid "Addressbook" msgstr "Adressbuch" -#: ../../include/RedDAV/RedBrowser.php:139 +#: ../../include/RedDAV/RedBrowser.php:140 msgid "Calendar" msgstr "Kalender" -#: ../../include/RedDAV/RedBrowser.php:142 +#: ../../include/RedDAV/RedBrowser.php:143 msgid "Schedule Inbox" msgstr "Posteingang für überwachte Kalender" -#: ../../include/RedDAV/RedBrowser.php:145 +#: ../../include/RedDAV/RedBrowser.php:146 msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1019 -#: ../../mod/connedit.php:570 ../../mod/photos.php:681 -#: ../../mod/photos.php:1113 +#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1030 +#: ../../include/apps.php:336 ../../include/apps.php:387 +#: ../../mod/photos.php:693 ../../mod/photos.php:1131 msgid "Unknown" msgstr "Unbekannt" -#: ../../include/RedDAV/RedBrowser.php:225 +#: ../../include/RedDAV/RedBrowser.php:227 #, php-format msgid "%1$s used" msgstr "%1$s verwendet" -#: ../../include/RedDAV/RedBrowser.php:230 +#: ../../include/RedDAV/RedBrowser.php:232 #, php-format msgid "%1$s used of %2$s (%3$s%)" msgstr "%1$s von %2$s verwendet (%3$s%)" -#: ../../include/RedDAV/RedBrowser.php:249 ../../include/nav.php:98 -#: ../../include/apps.php:135 ../../include/conversation.php:1595 +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 +#: ../../include/conversation.php:1620 ../../include/apps.php:135 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "Dateien" -#: ../../include/RedDAV/RedBrowser.php:251 +#: ../../include/RedDAV/RedBrowser.php:253 msgid "Total" msgstr "Summe" -#: ../../include/RedDAV/RedBrowser.php:253 +#: ../../include/RedDAV/RedBrowser.php:255 msgid "Shared" msgstr "Geteilt" -#: ../../include/RedDAV/RedBrowser.php:254 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/menu.php:100 -#: ../../mod/mitem.php:169 ../../mod/new_channel.php:121 +#: ../../include/RedDAV/RedBrowser.php:256 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/webpages.php:180 +#: ../../mod/blocks.php:152 ../../mod/menu.php:112 +#: ../../mod/new_channel.php:121 ../../mod/layouts.php:175 msgid "Create" msgstr "Erstelle" -#: ../../include/RedDAV/RedBrowser.php:255 +#: ../../include/RedDAV/RedBrowser.php:257 #: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1228 +#: ../../mod/photos.php:718 ../../mod/photos.php:1248 msgid "Upload" msgstr "Hochladen" -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:585 -#: ../../mod/settings.php:611 ../../mod/admin.php:871 -#: ../../mod/sharedwithme.php:100 +#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 +#: ../../mod/settings.php:590 ../../mod/settings.php:616 +#: ../../mod/sharedwithme.php:95 msgid "Name" msgstr "Name" -#: ../../include/RedDAV/RedBrowser.php:263 +#: ../../include/RedDAV/RedBrowser.php:262 msgid "Type" msgstr "Typ" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101 +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 msgid "Size" msgstr "Größe" -#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102 +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 msgid "Last Modified" msgstr "Zuletzt geändert" -#: ../../include/RedDAV/RedBrowser.php:268 ../../include/ItemObject.php:120 -#: ../../include/apps.php:255 ../../include/conversation.php:645 -#: ../../mod/connedit.php:533 ../../mod/settings.php:646 -#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/admin.php:735 -#: ../../mod/admin.php:866 ../../mod/photos.php:1044 +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 +#: ../../include/conversation.php:671 ../../include/apps.php:255 +#: ../../mod/webpages.php:183 ../../mod/thing.php:256 ../../mod/group.php:176 +#: ../../mod/blocks.php:155 ../../mod/photos.php:1062 +#: ../../mod/editlayout.php:178 ../../mod/editwebpage.php:225 +#: ../../mod/editblock.php:180 ../../mod/admin.php:826 ../../mod/admin.php:988 +#: ../../mod/settings.php:651 ../../mod/connedit.php:563 msgid "Delete" msgstr "Löschen" @@ -1262,54 +1083,32 @@ msgstr "Datei hochladen" msgid "%1$s's bookmarks" msgstr "%1$ss Lesezeichen" -#: ../../include/taxonomy.php:215 ../../include/taxonomy.php:234 -msgid "Tags" -msgstr "Schlagwörter" +#: ../../include/network.php:635 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" -#: ../../include/taxonomy.php:274 -msgid "Keywords" -msgstr "Schlüsselwörter" +#: ../../include/network.php:1585 ../../include/enotify.php:58 +msgid "$Projectname Notification" +msgstr "$Projectname-Benachrichtigung" -#: ../../include/taxonomy.php:299 -msgid "have" -msgstr "habe" +#: ../../include/network.php:1586 ../../include/enotify.php:59 +#: ../../include/diaspora.php:2522 ../../include/diaspora.php:2533 +#: ../../mod/p.php:46 +msgid "$projectname" +msgstr "$projectname" -#: ../../include/taxonomy.php:299 -msgid "has" -msgstr "hat" +#: ../../include/network.php:1588 ../../include/enotify.php:61 +msgid "Thank You," +msgstr "Danke." -#: ../../include/taxonomy.php:300 -msgid "want" -msgstr "will" +#: ../../include/network.php:1590 ../../include/enotify.php:63 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" -#: ../../include/taxonomy.php:300 -msgid "wants" -msgstr "will" - -#: ../../include/taxonomy.php:301 ../../include/ItemObject.php:254 -msgid "like" -msgstr "mag" - -#: ../../include/taxonomy.php:301 -msgid "likes" -msgstr "gefällt" - -#: ../../include/taxonomy.php:302 ../../include/ItemObject.php:255 -msgid "dislike" -msgstr "verurteile" - -#: ../../include/taxonomy.php:302 -msgid "dislikes" -msgstr "missfällt" - -#: ../../include/taxonomy.php:385 ../../include/identity.php:1155 -#: ../../include/ItemObject.php:179 ../../include/conversation.php:1692 -#: ../../mod/photos.php:1001 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" +#: ../../include/network.php:1646 +msgid "No Subject" +msgstr "Kein Betreff" #: ../../include/features.php:38 msgid "General Features" @@ -1361,7 +1160,7 @@ msgstr "Private Notizen" #: ../../include/features.php:45 msgid "Enables a tool to store notes and reminders" -msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren" +msgstr "Aktiviert ein Werkzeug zum Speichern von Notizen und Erinnerungen" #: ../../include/features.php:46 msgid "Navigation Channel Select" @@ -1371,549 +1170,593 @@ msgstr "Kanal-Auswahl in der Navigationsleiste" msgid "Change channels directly from within the navigation dropdown menu" msgstr "Wechsle direkt über das Navigationsmenü zu anderen Kanälen" -#: ../../include/features.php:50 -msgid "Extended Identity Sharing" -msgstr "Erweitertes Teilen von Identitäten" +#: ../../include/features.php:47 +msgid "Photo Location" +msgstr "Aufnahmeort" -#: ../../include/features.php:50 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt." +#: ../../include/features.php:47 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Aufnahmeort des Fotos auf einer Karte verlinken, falls verfügbar." -#: ../../include/features.php:51 +#: ../../include/features.php:49 msgid "Expert Mode" msgstr "Expertenmodus" -#: ../../include/features.php:51 +#: ../../include/features.php:49 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" -#: ../../include/features.php:52 +#: ../../include/features.php:50 msgid "Premium Channel" msgstr "Premium-Kanal" -#: ../../include/features.php:52 +#: ../../include/features.php:50 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" -#: ../../include/features.php:57 +#: ../../include/features.php:55 msgid "Post Composition Features" msgstr "Nachbearbeitungsfunktionen" -#: ../../include/features.php:59 +#: ../../include/features.php:57 msgid "Use Markdown" msgstr "Markdown benutzen" -#: ../../include/features.php:59 +#: ../../include/features.php:57 msgid "Allow use of \"Markdown\" to format posts" msgstr "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen" -#: ../../include/features.php:60 +#: ../../include/features.php:58 msgid "Large Photos" msgstr "Große Fotos" -#: ../../include/features.php:60 +#: ../../include/features.php:58 msgid "" "Include large (640px) photo thumbnails in posts. If not enabled, use small " "(320px) photo thumbnails" -msgstr "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt." +msgstr "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist dies deaktiviert, werden kleine Vorschaubilder (320px) angezeigt." -#: ../../include/features.php:61 +#: ../../include/features.php:59 ../../include/widgets.php:548 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Kanal-Quellen" + +#: ../../include/features.php:59 msgid "Automatically import channel content from other channels or feeds" msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/features.php:62 +#: ../../include/features.php:60 msgid "Even More Encryption" msgstr "Noch mehr Verschlüsselung" -#: ../../include/features.php:62 +#: ../../include/features.php:60 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)" -#: ../../include/features.php:63 +#: ../../include/features.php:61 msgid "Enable voting tools" msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/features.php:63 +#: ../../include/features.php:61 msgid "Provide a class of post which others can vote on" -msgstr "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" +msgstr "Aktiviere die Umfragewerkzeuge, damit andere Benutzer über Deine Beiträge abstimmen können. Muss im Beitrag selbst noch aktiviert werden." -#: ../../include/features.php:64 -msgid "Flag Adult Photos" -msgstr "Nicht jugendfreie Fotos markieren" - -#: ../../include/features.php:64 -msgid "Provide photo edit option to hide adult photos from default album view" -msgstr "Stellt eine Option zum Verstecken von Fotos mit nicht jugendfreien Inhalten in der Standard-Albumansicht bereit" - -#: ../../include/features.php:69 +#: ../../include/features.php:67 msgid "Network and Stream Filtering" msgstr "Netzwerk- und Stream-Filter" -#: ../../include/features.php:70 +#: ../../include/features.php:68 msgid "Search by Date" msgstr "Suche nach Datum" -#: ../../include/features.php:70 +#: ../../include/features.php:68 msgid "Ability to select posts by date ranges" msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/features.php:71 +#: ../../include/features.php:69 msgid "Collections Filter" msgstr "Filter für Sammlung" -#: ../../include/features.php:71 +#: ../../include/features.php:69 msgid "Enable widget to display Network posts only from selected collections" msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen" -#: ../../include/features.php:72 +#: ../../include/features.php:70 ../../include/widgets.php:274 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" + +#: ../../include/features.php:70 msgid "Save search terms for re-use" msgstr "Suchbegriffe zur Wiederverwendung abspeichern" -#: ../../include/features.php:73 +#: ../../include/features.php:71 msgid "Network Personal Tab" msgstr "Persönlicher Netzwerkreiter" -#: ../../include/features.php:73 +#: ../../include/features.php:71 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast" -#: ../../include/features.php:74 +#: ../../include/features.php:72 msgid "Network New Tab" msgstr "Netzwerkreiter Neu" -#: ../../include/features.php:74 +#: ../../include/features.php:72 msgid "Enable tab to display all new Network activity" msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" -#: ../../include/features.php:75 +#: ../../include/features.php:73 msgid "Affinity Tool" -msgstr "Beziehungs-Tool" +msgstr "Beziehungswerkzeug" -#: ../../include/features.php:75 +#: ../../include/features.php:73 msgid "Filter stream activity by depth of relationships" msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" -#: ../../include/features.php:76 +#: ../../include/features.php:74 +msgid "Connection Filtering" +msgstr "Filter für Sammlungen" + +#: ../../include/features.php:74 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtere eingehende Beiträge von Kontakten auf der Basis von Schlüsselwörtern und dem Inhalt." + +#: ../../include/features.php:75 msgid "Suggest Channels" msgstr "Kanäle vorschlagen" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Show channel suggestions" msgstr "Kanalvorschläge anzeigen" -#: ../../include/features.php:81 +#: ../../include/features.php:80 msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentar-Tools" +msgstr "Beitrag-/Kommentarwerkzeuge" -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Tagging" msgstr "Verschlagworten" -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Ability to tag existing posts" msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Post Categories" msgstr "Beitrags-Kategorien" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Add categories to your posts" msgstr "Kategorien für Beiträge" -#: ../../include/features.php:84 +#: ../../include/features.php:83 ../../include/widgets.php:304 +#: ../../include/contact_widgets.php:57 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../include/features.php:83 msgid "Ability to file posts under folders" msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Dislike Posts" msgstr "Gefällt-mir-nicht Beiträge" -#: ../../include/features.php:85 +#: ../../include/features.php:84 msgid "Ability to dislike posts/comments" msgstr "„Gefällt mir nicht“ ermöglichen" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Star Posts" msgstr "Beiträge mit Sternchen versehen" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Ability to mark special posts with a star indicator" msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Tag Cloud" msgstr "Schlagwort-Wolke" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Provide a personal tag cloud on your channel page" msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen" -#: ../../include/auth.php:130 -msgid "Logged out." -msgstr "Ausgeloggt." +#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 +#: ../../include/contact_widgets.php:92 +msgid "Categories" +msgstr "Kategorien" -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" +#: ../../include/widgets.php:91 ../../include/nav.php:163 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "Apps" -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Login fehlgeschlagen." +#: ../../include/widgets.php:92 +msgid "System" +msgstr "System" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Häufig" +#: ../../include/widgets.php:94 ../../include/conversation.php:1515 +msgid "Personal" +msgstr "Persönlich" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Stündlich" +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Persönliche App erstellen" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Zwei Mal am Tag" +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Persönliche App bearbeiten" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Täglich" +#: ../../include/widgets.php:136 ../../include/widgets.php:175 +#: ../../include/Contact.php:107 ../../include/conversation.php:956 +#: ../../include/identity.php:933 ../../mod/directory.php:316 +#: ../../mod/match.php:64 ../../mod/suggest.php:52 +msgid "Connect" +msgstr "Verbinden" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" +#: ../../include/widgets.php:138 ../../mod/suggest.php:54 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" +#: ../../include/widgets.php:143 ../../mod/connections.php:128 +msgid "Suggestions" +msgstr "Vorschläge" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Mehr anzeigen …" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/widgets.php:166 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 -#: ../../mod/admin.php:740 ../../boot.php:1554 -msgid "Email" -msgstr "E-Mail" +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "Adresse des Kanals eingeben" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/widgets.php:190 +msgid "Notes" +msgstr "Notizen" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../include/widgets.php:266 +msgid "Remove term" +msgstr "Eintrag löschen" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 +#: ../../include/contact_widgets.php:95 +msgid "Everything" +msgstr "Alles" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/widgets.php:349 +msgid "Archives" +msgstr "Archive" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/widgets.php:429 ../../mod/connedit.php:583 +msgid "Me" +msgstr "Ich" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen." +#: ../../include/widgets.php:430 ../../mod/connedit.php:584 +msgid "Family" +msgstr "Familie" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standard-Sammlung für neue Kontakte" +#: ../../include/widgets.php:431 ../../include/identity.php:394 +#: ../../include/identity.php:395 ../../include/identity.php:402 +#: ../../include/profile_selectors.php:80 ../../mod/settings.php:345 +#: ../../mod/settings.php:349 ../../mod/settings.php:350 +#: ../../mod/settings.php:353 ../../mod/settings.php:364 +#: ../../mod/connedit.php:585 +msgid "Friends" +msgstr "Freunde" -#: ../../include/group.php:254 ../../mod/admin.php:740 -msgid "All Channels" -msgstr "Alle Kanäle" +#: ../../include/widgets.php:432 ../../mod/connedit.php:586 +msgid "Acquaintances" +msgstr "Bekannte" -#: ../../include/group.php:276 -msgid "edit" -msgstr "Bearbeiten" +#: ../../include/widgets.php:433 ../../mod/connections.php:91 +#: ../../mod/connections.php:106 ../../mod/connedit.php:587 +msgid "All" +msgstr "Alle" -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Sammlungen" +#: ../../include/widgets.php:452 +msgid "Refresh" +msgstr "Aktualisieren" -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Sammlung bearbeiten" +#: ../../include/widgets.php:487 +msgid "Account settings" +msgstr "Kontoeinstellungen" -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Neue Sammlung erzeugen" +#: ../../include/widgets.php:493 +msgid "Channel settings" +msgstr "Kanaleinstellungen" -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanäle, die nicht in einer Sammlung sind" +#: ../../include/widgets.php:499 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" -#: ../../include/identity.php:31 ../../mod/item.php:1078 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" +#: ../../include/widgets.php:505 +msgid "Feature/Addon settings" +msgstr "Funktion-/Addon-Einstellungen" -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" +#: ../../include/widgets.php:511 +msgid "Display settings" +msgstr "Anzeigeeinstellungen" -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Name ist zu lang" +#: ../../include/widgets.php:517 +msgid "Connected apps" +msgstr "Verbundene Apps" -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Keine Account-Kennung" +#: ../../include/widgets.php:523 +msgid "Export channel" +msgstr "Kanal exportieren" -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." +#: ../../include/widgets.php:532 ../../mod/connedit.php:674 +msgid "Connection Default Permissions" +msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." +#: ../../include/widgets.php:540 +msgid "Premium Channel Settings" +msgstr "Premium-Kanaleinstellungen" -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." +#: ../../include/widgets.php:556 ../../include/nav.php:208 +#: ../../include/apps.php:134 ../../mod/admin.php:1079 +#: ../../mod/admin.php:1279 +msgid "Settings" +msgstr "Einstellungen" -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" +#: ../../include/widgets.php:569 ../../mod/message.php:31 +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "Nachrichten" -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standard-Profil" +#: ../../include/widgets.php:572 +msgid "Check Mail" +msgstr "E-Mails abrufen" -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +#: ../../include/widgets.php:577 ../../include/nav.php:199 +msgid "New Message" +msgstr "Neue Nachricht" -#: ../../include/identity.php:691 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/editblock.php:29 -#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/hcard.php:8 -#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:53 ../../mod/webpages.php:29 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "Erwünschte Profil ist nicht verfügbar." +#: ../../include/widgets.php:652 +msgid "Chat Rooms" +msgstr "Chaträume" -#: ../../include/identity.php:854 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Profilfoto ändern" +#: ../../include/widgets.php:672 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" -#: ../../include/identity.php:861 -msgid "Profiles" -msgstr "Profile" +#: ../../include/widgets.php:692 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" -#: ../../include/identity.php:861 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/bearbeiten" +#: ../../include/widgets.php:819 ../../include/widgets.php:877 +msgid "photo/image" +msgstr "Foto/Bild" -#: ../../include/identity.php:862 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" +#: ../../include/widgets.php:972 ../../include/widgets.php:974 +msgid "Rate Me" +msgstr "Bewerte mich" -#: ../../include/identity.php:865 ../../include/nav.php:95 -msgid "Edit Profile" -msgstr "Profile bearbeiten" +#: ../../include/widgets.php:978 +msgid "View Ratings" +msgstr "Bewertungen ansehen" -#: ../../include/identity.php:878 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Profilfoto:" +#: ../../include/widgets.php:989 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" -#: ../../include/identity.php:881 -msgid "visible to everybody" -msgstr "sichtbar für jeden" +#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y, H:i" -#: ../../include/identity.php:882 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" +#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 +msgid "Starts:" +msgstr "Beginnt:" -#: ../../include/identity.php:894 ../../include/bb2diaspora.php:450 -#: ../../include/event.php:40 ../../mod/events.php:645 -#: ../../mod/directory.php:204 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 +msgid "Finishes:" +msgstr "Endet:" + +#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 +#: ../../include/identity.php:984 ../../mod/directory.php:302 +#: ../../mod/events.php:684 msgid "Location:" msgstr "Ort:" -#: ../../include/identity.php:898 ../../include/identity.php:1139 -msgid "Gender:" -msgstr "Geschlecht:" +#: ../../include/event.php:549 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" -#: ../../include/identity.php:899 ../../include/identity.php:1183 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:900 ../../include/identity.php:1194 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../include/identity.php:901 -msgid "Online Now" -msgstr "gerade online" - -#: ../../include/identity.php:983 ../../include/identity.php:1063 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "l, d. F, G:i \\U\\h\\r" - -#: ../../include/identity.php:984 ../../include/identity.php:1064 -msgid "F d" -msgstr "d. F" - -#: ../../include/identity.php:1029 ../../include/identity.php:1104 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[Heute]" - -#: ../../include/identity.php:1041 -msgid "Birthday Reminders" -msgstr "Geburtstags Erinnerungen" - -#: ../../include/identity.php:1042 -msgid "Birthdays this week:" -msgstr "Geburtstage in dieser Woche:" - -#: ../../include/identity.php:1097 -msgid "[No description]" -msgstr "[Keine Beschreibung]" - -#: ../../include/identity.php:1115 -msgid "Event Reminders" -msgstr "Termin-Erinnerungen" - -#: ../../include/identity.php:1116 -msgid "Events this week:" -msgstr "Termine in dieser Woche:" - -#: ../../include/identity.php:1129 ../../include/identity.php:1246 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" - -#: ../../include/identity.php:1137 ../../mod/settings.php:1044 -msgid "Full Name:" -msgstr "Voller Name:" - -#: ../../include/identity.php:1144 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" - -#: ../../include/identity.php:1168 -msgid "j F, Y" -msgstr "j. F Y" - -#: ../../include/identity.php:1169 -msgid "j F" -msgstr "j. F" - -#: ../../include/identity.php:1176 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/identity.php:1180 -msgid "Age:" -msgstr "Alter:" - -#: ../../include/identity.php:1189 +#: ../../include/enotify.php:96 #, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +msgid "%s " +msgstr "%s " -#: ../../include/identity.php:1192 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/enotify.php:100 +#, php-format +msgid "[Red:Notify] New mail received at %s" +msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" -#: ../../include/identity.php:1196 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Heimatstadt:" +#: ../../include/enotify.php:102 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." -#: ../../include/identity.php:1198 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s hat Dir %2$s geschickt." -#: ../../include/identity.php:1200 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "eine private Nachricht" -#: ../../include/identity.php:1202 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." -#: ../../include/identity.php:1204 -msgid "About:" -msgstr "Über:" +#: ../../include/enotify.php:158 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" -#: ../../include/identity.php:1206 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../include/enotify.php:166 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" -#: ../../include/identity.php:1208 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../include/enotify.php:175 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" -#: ../../include/identity.php:1210 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../include/enotify.php:186 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" -#: ../../include/identity.php:1212 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." -#: ../../include/identity.php:1214 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../include/enotify.php:190 ../../include/enotify.php:205 +#: ../../include/enotify.php:231 ../../include/enotify.php:249 +#: ../../include/enotify.php:263 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." -#: ../../include/identity.php:1216 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../include/enotify.php:196 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" +msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" -#: ../../include/identity.php:1218 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../include/enotify.php:198 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" -#: ../../include/identity.php:1220 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" -#: ../../include/identity.php:1222 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../include/enotify.php:224 +#, php-format +msgid "[Red:Notify] %s tagged you" +msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" -#: ../../include/identity.php:1224 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" -#: ../../include/identity.php:1226 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../include/enotify.php:226 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." -#: ../../include/identity.php:1228 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../include/enotify.php:238 +#, php-format +msgid "[Red:Notify] %1$s poked you" +msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" -#: ../../include/identity.php:1248 -msgid "Like this thing" -msgstr "Gefällt mir" +#: ../../include/enotify.php:239 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" + +#: ../../include/enotify.php:240 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]." + +#: ../../include/enotify.php:256 +#, php-format +msgid "[Red:Notify] %s tagged your post" +msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" + +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" + +#: ../../include/enotify.php:258 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" + +#: ../../include/enotify.php:270 +msgid "[Red:Notify] Introduction received" +msgstr "[Red:Benachrichtigung] Vorstellung erhalten" + +#: ../../include/enotify.php:271 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" + +#: ../../include/enotify.php:272 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." + +#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Du kannst Dir das Profil unter %s ansehen" + +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." + +#: ../../include/enotify.php:285 +msgid "[Red:Notify] Friend suggestion received" +msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" + +#: ../../include/enotify.php:286 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" + +#: ../../include/enotify.php:287 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." + +#: ../../include/enotify.php:293 +msgid "Name:" +msgstr "Name:" + +#: ../../include/enotify.php:294 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:297 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." + +#: ../../include/enotify.php:508 +msgid "[Red:Notify]" +msgstr "[Red:Benachrichtigung]" #: ../../include/message.php:18 msgid "No recipient provided." @@ -1921,7 +1764,7 @@ msgstr "Kein Empfänger angegeben" #: ../../include/message.php:23 msgid "[no subject]" -msgstr "[no subject]" +msgstr "[kein Betreff]" #: ../../include/message.php:45 msgid "Unable to determine sender." @@ -1931,6 +1774,28 @@ msgstr "Kann Absender nicht bestimmen." msgid "Stored post could not be verified." msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." +#: ../../include/diaspora.php:2148 ../../include/conversation.php:164 +#: ../../mod/like.php:397 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s" + +#: ../../include/diaspora.php:2494 +msgid "Please choose" +msgstr "Bitte auswählen" + +#: ../../include/diaspora.php:2496 +msgid "Agree" +msgstr "Zustimmen" + +#: ../../include/diaspora.php:2498 +msgid "Disagree" +msgstr "Ablehnen" + +#: ../../include/diaspora.php:2500 +msgid "Abstain" +msgstr "Enthalten" + #: ../../include/follow.php:28 msgid "Channel is blocked on this site." msgstr "Der Kanal ist auf dieser Seite blockiert " @@ -1947,423 +1812,31 @@ msgstr "Antwort des entfernten Kanals war unvollständig." msgid "Channel was deleted and no longer exists." msgstr "Kanal wurde gelöscht und existiert nicht mehr." -#: ../../include/follow.php:135 ../../include/follow.php:197 +#: ../../include/follow.php:135 ../../include/follow.php:206 msgid "Protocol disabled." msgstr "Protokoll deaktiviert." -#: ../../include/follow.php:170 +#: ../../include/follow.php:144 +msgid "Protocol blocked for this channel." +msgstr "Das Protokoll wurde für diesen Kanal blockiert." + +#: ../../include/follow.php:179 msgid "Channel discovery failed." msgstr "Kanalsuche fehlgeschlagen" -#: ../../include/follow.php:186 +#: ../../include/follow.php:195 msgid "local account not found." msgstr "Lokales Konto nicht gefunden." -#: ../../include/follow.php:215 +#: ../../include/follow.php:224 msgid "Cannot connect to yourself." msgstr "Du kannst Dich nicht mit Dir selbst verbinden." -#: ../../include/comanche.php:35 ../../mod/admin.php:357 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" - -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" - -#: ../../include/datetime.php:212 ../../mod/events.php:633 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Benötigt" - -#: ../../include/datetime.php:231 -msgid "never" -msgstr "Nie" - -#: ../../include/datetime.php:237 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" - -#: ../../include/datetime.php:240 -msgid "year" -msgstr "Jahr" - -#: ../../include/datetime.php:240 -msgid "years" -msgstr "Jahre" - -#: ../../include/datetime.php:241 -msgid "month" -msgstr "Monat" - -#: ../../include/datetime.php:241 -msgid "months" -msgstr "Monate" - -#: ../../include/datetime.php:242 -msgid "week" -msgstr "Woche" - -#: ../../include/datetime.php:242 -msgid "weeks" -msgstr "Wochen" - -#: ../../include/datetime.php:243 -msgid "day" -msgstr "Tag" - -#: ../../include/datetime.php:243 -msgid "days" -msgstr "Tage" - -#: ../../include/datetime.php:244 -msgid "hour" -msgstr "Stunde" - -#: ../../include/datetime.php:244 -msgid "hours" -msgstr "Stunden" - -#: ../../include/datetime.php:245 -msgid "minute" -msgstr "Minute" - -#: ../../include/datetime.php:245 -msgid "minutes" -msgstr "Minuten" - -#: ../../include/datetime.php:246 -msgid "second" -msgstr "Sekunde" - -#: ../../include/datetime.php:246 -msgid "seconds" -msgstr "Sekunden" - -#: ../../include/datetime.php:255 -#, php-format -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" - -#: ../../include/datetime.php:463 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" - -#: ../../include/datetime.php:464 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" - -#: ../../include/bb2diaspora.php:349 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" - -#: ../../include/bb2diaspora.php:430 -msgid "Redmatrix event notification:" -msgstr "RedMatrix Termin-Benachrichtigung:" - -#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 -msgid "Starts:" -msgstr "Beginnt:" - -#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Endet:" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Der Chatraum hat keinen Namen" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Name des Chatraums bereits vergeben" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ungültiger Raumbezeichner." - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Chatraum konnte nicht gefunden werden." - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Der Raum ist voll" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 -msgid "Logout" -msgstr "Abmelden" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: ../../include/nav.php:91 ../../include/conversation.php:937 -#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 -msgid "View Profile" -msgstr "Profil ansehen" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:97 ../../include/apps.php:139 -#: ../../include/conversation.php:1586 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Deine Bilder" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Deine Dateien" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Deine Chaträume" - -#: ../../include/nav.php:109 ../../include/apps.php:129 -#: ../../include/conversation.php:1621 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" - -#: ../../include/nav.php:113 ../../include/apps.php:136 -#: ../../include/conversation.php:1632 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webseiten" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Deine Webseiten" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 -msgid "Login" -msgstr "Anmelden" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 -msgid "Register" -msgstr "Registrieren" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Erzeuge ein Konto" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 -msgid "Help" -msgstr "Hilfe" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Durchsuche Seiten-Inhalt" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:334 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" - -#: ../../include/nav.php:182 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/nav.php:182 -msgid "Your matrix" -msgstr "Deine Matrix" - -#: ../../include/nav.php:183 -msgid "Mark all matrix notifications seen" -msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:185 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:185 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:186 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:189 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Verbindungen" - -#: ../../include/nav.php:192 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:192 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:193 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:194 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../include/nav.php:196 ../../include/apps.php:143 -msgid "Mail" -msgstr "Mail" - -#: ../../include/nav.php:196 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:197 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" - -#: ../../include/nav.php:198 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:199 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:200 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/nav.php:204 ../../include/apps.php:140 -#: ../../mod/events.php:472 -msgid "Events" -msgstr "Termine" - -#: ../../include/nav.php:204 -msgid "Event Calendar" -msgstr "Terminkalender" - -#: ../../include/nav.php:205 -msgid "See all events" -msgstr "Alle Termine ansehen" - -#: ../../include/nav.php:206 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" - -#: ../../include/nav.php:208 ../../include/apps.php:132 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" - -#: ../../include/nav.php:218 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:249 ../../include/conversation.php:842 -msgid "Loading..." -msgstr "Lädt ..." - -#: ../../include/nav.php:254 -msgid "@name, #tag, content" -msgstr "@Name, #Schlagwort, Text" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Bitte warten..." - -#: ../../include/security.php:357 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:652 +#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 msgid "Private Message" msgstr "Private Nachricht" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:644 +#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 msgid "Select" msgstr "Auswählen" @@ -2396,13 +1869,22 @@ msgid "I abstain" msgstr "Ich enthalte mich" #: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1667 ../../mod/photos.php:997 -#: ../../mod/photos.php:1009 +#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 +#: ../../mod/photos.php:1027 msgid "View all" msgstr "Alles anzeigen" -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1695 -#: ../../mod/photos.php:1006 +#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 +#: ../../include/conversation.php:1712 ../../include/identity.php:1243 +#: ../../mod/photos.php:1019 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" + +#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 +#: ../../mod/photos.php:1024 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -2425,11 +1907,11 @@ msgstr "Markierungsstatus (Stern) umschalten" msgid "starred" msgstr "markiert" -#: ../../include/ItemObject.php:227 ../../include/conversation.php:659 +#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 msgid "Message signature validated" msgstr "Signatur überprüft" -#: ../../include/ItemObject.php:228 ../../include/conversation.php:660 +#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 msgid "Message signature incorrect" msgstr "Signatur nicht korrekt" @@ -2437,14 +1919,22 @@ msgstr "Signatur nicht korrekt" msgid "Add Tag" msgstr "Tag hinzufügen" -#: ../../include/ItemObject.php:254 ../../mod/photos.php:941 +#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 msgid "I like this (toggle)" msgstr "Mir gefällt das (Umschalter)" -#: ../../include/ItemObject.php:255 ../../mod/photos.php:942 +#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 +msgid "like" +msgstr "mag" + +#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 msgid "I don't like this (toggle)" msgstr "Mir gefällt das nicht (Umschalter)" +#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 +msgid "dislike" +msgstr "lehne ab" + #: ../../include/ItemObject.php:259 msgid "Share This" msgstr "Teilen" @@ -2481,17 +1971,17 @@ msgstr "Wall-to-Wall" msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../include/ItemObject.php:312 ../../include/conversation.php:704 +#: ../../include/ItemObject.php:312 ../../include/conversation.php:727 #, php-format -msgid " from %s" -msgstr "von %s" +msgid "from %s" +msgstr "via %s" -#: ../../include/ItemObject.php:315 ../../include/conversation.php:707 +#: ../../include/ItemObject.php:315 ../../include/conversation.php:730 #, php-format msgid "last edited: %s" msgstr "zuletzt bearbeitet: %s" -#: ../../include/ItemObject.php:316 ../../include/conversation.php:708 +#: ../../include/ItemObject.php:316 ../../include/conversation.php:731 #, php-format msgid "Expires: %s" msgstr "Verfällt: %s" @@ -2508,51 +1998,61 @@ msgstr "Zum Kalender hinzufügen" msgid "Mark all seen" msgstr "Alle als gelesen markieren" -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1125 +#: ../../include/ItemObject.php:353 ../../mod/photos.php:1145 msgctxt "noun" msgid "Likes" msgstr "Gefällt mir" -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1126 +#: ../../include/ItemObject.php:354 ../../mod/photos.php:1146 msgctxt "noun" msgid "Dislikes" msgstr "Gefällt nicht" #: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1131 +#: ../../mod/photos.php:1151 msgid "Close" msgstr "Schließen" -#: ../../include/ItemObject.php:364 ../../include/conversation.php:725 -#: ../../include/conversation.php:1198 ../../mod/editblock.php:152 -#: ../../mod/editpost.php:125 ../../mod/editlayout.php:148 -#: ../../mod/editwebpage.php:183 ../../mod/mail.php:241 ../../mod/mail.php:356 -#: ../../mod/photos.php:944 +#: ../../include/ItemObject.php:364 ../../include/conversation.php:748 +#: ../../include/conversation.php:1220 ../../mod/editpost.php:123 +#: ../../mod/photos.php:962 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:192 ../../mod/editblock.php:149 +#: ../../mod/mail.php:241 ../../mod/mail.php:356 msgid "Please wait" msgstr "Bitte warten" -#: ../../include/ItemObject.php:665 ../../mod/photos.php:960 -#: ../../mod/photos.php:1078 +#: ../../include/ItemObject.php:665 ../../mod/photos.php:978 +#: ../../mod/photos.php:1096 msgid "This is you" msgstr "Das bist Du" -#: ../../include/ItemObject.php:669 +#: ../../include/ItemObject.php:669 ../../include/conversation.php:1192 +#: ../../mod/editpost.php:107 ../../mod/editlayout.php:134 +#: ../../mod/editwebpage.php:179 ../../mod/editblock.php:135 msgid "Bold" msgstr "Fett" -#: ../../include/ItemObject.php:670 +#: ../../include/ItemObject.php:670 ../../include/conversation.php:1193 +#: ../../mod/editpost.php:108 ../../mod/editlayout.php:135 +#: ../../mod/editwebpage.php:180 ../../mod/editblock.php:136 msgid "Italic" msgstr "Kursiv" -#: ../../include/ItemObject.php:671 +#: ../../include/ItemObject.php:671 ../../include/conversation.php:1194 +#: ../../mod/editpost.php:109 ../../mod/editlayout.php:136 +#: ../../mod/editwebpage.php:181 ../../mod/editblock.php:137 msgid "Underline" msgstr "Unterstrichen" -#: ../../include/ItemObject.php:672 +#: ../../include/ItemObject.php:672 ../../include/conversation.php:1195 +#: ../../mod/editpost.php:110 ../../mod/editlayout.php:137 +#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:138 msgid "Quote" msgstr "Zitat" -#: ../../include/ItemObject.php:673 +#: ../../include/ItemObject.php:673 ../../include/conversation.php:1196 +#: ../../mod/editpost.php:111 ../../mod/editlayout.php:138 +#: ../../mod/editwebpage.php:183 ../../mod/editblock.php:139 msgid "Code" msgstr "Code" @@ -2561,18 +2061,327 @@ msgid "Image" msgstr "Bild" #: ../../include/ItemObject.php:675 -msgid "Link" -msgstr "Link" +msgid "Insert Link" +msgstr "Link einfügen" #: ../../include/ItemObject.php:676 msgid "Video" msgstr "Video" -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1224 -#: ../../mod/editpost.php:152 ../../mod/mail.php:247 ../../mod/mail.php:361 +#: ../../include/ItemObject.php:680 ../../include/conversation.php:1247 +#: ../../mod/editpost.php:151 ../../mod/mail.php:247 ../../mod/mail.php:361 msgid "Encrypt text" msgstr "Text verschlüsseln" +#: ../../include/Contact.php:124 +msgid "New window" +msgstr "Neues Fenster" + +#: ../../include/Contact.php:125 +msgid "Open the selected location in a different window or browser tab" +msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" + +#: ../../include/Contact.php:212 +#, php-format +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" + +#: ../../include/bb2diaspora.php:373 +msgid "Attachments:" +msgstr "Anhänge:" + +#: ../../include/bb2diaspora.php:461 +msgid "$Projectname event notification:" +msgstr "$Projectname-Terminbenachrichtigung:" + +#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 +msgid "Logout" +msgstr "Abmelden" + +#: ../../include/nav.php:87 ../../include/nav.php:120 +msgid "End this session" +msgstr "Beende diese Sitzung" + +#: ../../include/nav.php:90 ../../include/nav.php:151 +msgid "Home" +msgstr "Home" + +#: ../../include/nav.php:90 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: ../../include/nav.php:91 ../../include/conversation.php:953 +#: ../../mod/connedit.php:510 +msgid "View Profile" +msgstr "Profil ansehen" + +#: ../../include/nav.php:91 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../include/nav.php:93 +msgid "Edit Profiles" +msgstr "Profile bearbeiten" + +#: ../../include/nav.php:93 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" + +#: ../../include/nav.php:95 ../../include/identity.php:956 +msgid "Edit Profile" +msgstr "Profile bearbeiten" + +#: ../../include/nav.php:95 +msgid "Edit your profile" +msgstr "Profil bearbeiten" + +#: ../../include/nav.php:97 ../../include/conversation.php:1611 +#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Fotos" + +#: ../../include/nav.php:97 +msgid "Your photos" +msgstr "Deine Bilder" + +#: ../../include/nav.php:98 +msgid "Your files" +msgstr "Deine Dateien" + +#: ../../include/nav.php:103 ../../include/apps.php:146 +msgid "Chat" +msgstr "Chat" + +#: ../../include/nav.php:103 +msgid "Your chatrooms" +msgstr "Deine Chaträume" + +#: ../../include/nav.php:109 ../../include/conversation.php:1646 +#: ../../include/apps.php:129 +msgid "Bookmarks" +msgstr "Lesezeichen" + +#: ../../include/nav.php:109 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" + +#: ../../include/nav.php:113 ../../include/conversation.php:1656 +#: ../../include/apps.php:136 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Webseiten" + +#: ../../include/nav.php:113 +msgid "Your webpages" +msgstr "Deine Webseiten" + +#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1550 +msgid "Login" +msgstr "Anmelden" + +#: ../../include/nav.php:117 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:134 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" + +#: ../../include/nav.php:137 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" + +#: ../../include/nav.php:137 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" + +#: ../../include/nav.php:151 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 +msgid "Register" +msgstr "Registrieren" + +#: ../../include/nav.php:155 +msgid "Create an account" +msgstr "Erzeuge ein Konto" + +#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 +#: ../../mod/help.php:72 ../../mod/layouts.php:176 +msgid "Help" +msgstr "Hilfe" + +#: ../../include/nav.php:160 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" + +#: ../../include/nav.php:165 +msgid "Search site content" +msgstr "Durchsuche Seiten-Inhalt" + +#: ../../include/nav.php:168 ../../include/apps.php:141 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../include/nav.php:168 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" + +#: ../../include/nav.php:180 ../../include/apps.php:133 +msgid "Matrix" +msgstr "Matrix" + +#: ../../include/nav.php:180 +msgid "Your matrix" +msgstr "Deine Matrix" + +#: ../../include/nav.php:181 +msgid "Mark all matrix notifications seen" +msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:183 ../../include/apps.php:137 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../include/nav.php:183 +msgid "Channel home" +msgstr "Mein Kanal" + +#: ../../include/nav.php:184 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" + +#: ../../include/nav.php:187 ../../mod/connections.php:267 +msgid "Connections" +msgstr "Verbindungen" + +#: ../../include/nav.php:190 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:190 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: ../../include/nav.php:191 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" + +#: ../../include/nav.php:192 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" + +#: ../../include/nav.php:194 ../../include/apps.php:143 +msgid "Mail" +msgstr "Mail" + +#: ../../include/nav.php:194 +msgid "Private mail" +msgstr "Persönliche Mail" + +#: ../../include/nav.php:195 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" + +#: ../../include/nav.php:196 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" + +#: ../../include/nav.php:197 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/nav.php:198 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/nav.php:202 ../../include/apps.php:140 +#: ../../mod/events.php:503 +msgid "Events" +msgstr "Termine" + +#: ../../include/nav.php:202 +msgid "Event Calendar" +msgstr "Terminkalender" + +#: ../../include/nav.php:203 +msgid "See all events" +msgstr "Alle Termine ansehen" + +#: ../../include/nav.php:204 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" + +#: ../../include/nav.php:206 ../../include/apps.php:132 +#: ../../mod/manage.php:166 +msgid "Channel Manager" +msgstr "Kanal-Manager" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanaleinstellungen" + +#: ../../include/nav.php:216 ../../mod/admin.php:120 +msgid "Admin" +msgstr "Administration" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" + +#: ../../include/nav.php:247 ../../include/conversation.php:861 +msgid "Loading..." +msgstr "Lädt ..." + +#: ../../include/nav.php:252 +msgid "@name, #tag, content" +msgstr "@Name, #Schlagwort, Text" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Bitte warten..." + +#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 +msgid "Tags" +msgstr "Schlagwörter" + +#: ../../include/taxonomy.php:287 +msgid "Keywords" +msgstr "Schlüsselwörter" + +#: ../../include/taxonomy.php:308 +msgid "have" +msgstr "habe" + +#: ../../include/taxonomy.php:308 +msgid "has" +msgstr "hat" + +#: ../../include/taxonomy.php:309 +msgid "want" +msgstr "will" + +#: ../../include/taxonomy.php:309 +msgid "wants" +msgstr "will" + +#: ../../include/taxonomy.php:310 +msgid "likes" +msgstr "gefällt" + +#: ../../include/taxonomy.php:311 +msgid "dislikes" +msgstr "mag nicht" + #: ../../include/activities.php:39 msgid " and " msgstr "und" @@ -2596,187 +2405,764 @@ msgstr "Besuche %1$s's %2$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." -#: ../../include/dir_fns.php:96 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" +#: ../../include/security.php:349 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." -#: ../../include/dir_fns.php:97 -msgid "Alphabetic" -msgstr "alphabetisch" +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" -#: ../../include/dir_fns.php:98 -msgid "Reverse Alphabetic" -msgstr "Entgegengesetzt alphabetisch" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" -#: ../../include/dir_fns.php:99 -msgid "Newest to Oldest" -msgstr "Neueste zuerst" +#: ../../include/permissions.php:28 +msgid "Can view my photo albums" +msgstr "Kann meine Fotoalben betrachten" -#: ../../include/dir_fns.php:100 -msgid "Oldest to Newest" -msgstr "Älteste zuerst" +#: ../../include/permissions.php:29 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" -#: ../../include/dir_fns.php:101 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" +#: ../../include/permissions.php:30 +msgid "Can view my file storage" +msgstr "Kann meine Dateiordner lesen" -#: ../../include/dir_fns.php:103 -msgid "Sort" -msgstr "Sortieren" +#: ../../include/permissions.php:31 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" -#: ../../include/dir_fns.php:119 -msgid "Enable Safe Search" -msgstr "Sichere Suche einschalten" +#: ../../include/permissions.php:34 +msgid "Can send me their channel stream and posts" +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" -#: ../../include/dir_fns.php:121 -msgid "Disable Safe Search" -msgstr "Sichere Suche ausschalten" +#: ../../include/permissions.php:35 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" -#: ../../include/dir_fns.php:123 -msgid "Safe Mode" -msgstr "Sicherer Modus" +#: ../../include/permissions.php:36 +msgid "Can comment on or like my posts" +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" -#: ../../include/items.php:382 ../../mod/subthread.php:49 -#: ../../mod/group.php:68 ../../mod/profperm.php:23 ../../mod/like.php:270 -#: ../../index.php:389 +#: ../../include/permissions.php:37 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" + +#: ../../include/permissions.php:38 +msgid "Can post photos to my photo albums" +msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" + +#: ../../include/permissions.php:39 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" + +#: ../../include/permissions.php:39 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" + +#: ../../include/permissions.php:41 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" + +#: ../../include/permissions.php:41 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" + +#: ../../include/permissions.php:42 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" + +#: ../../include/permissions.php:43 +msgid "Can write to my file storage" +msgstr "Kann in meine Dateiordner schreiben" + +#: ../../include/permissions.php:44 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" + +#: ../../include/permissions.php:46 +msgid "Can source my public posts in derived channels" +msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" + +#: ../../include/permissions.php:46 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" + +#: ../../include/permissions.php:48 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" + +#: ../../include/permissions.php:48 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" + +#: ../../include/permissions.php:893 +msgid "Social Networking" +msgstr "Soziales Netzwerk" + +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +#: ../../include/permissions.php:895 +msgid "Mostly Public" +msgstr "Weitgehend öffentlich" + +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +#: ../../include/permissions.php:895 +msgid "Restricted" +msgstr "Beschränkt" + +#: ../../include/permissions.php:893 ../../include/permissions.php:894 +msgid "Private" +msgstr "Privat" + +#: ../../include/permissions.php:894 +msgid "Community Forum" +msgstr "Forum" + +#: ../../include/permissions.php:895 +msgid "Feed Republish" +msgstr "Teilen von Feeds" + +#: ../../include/permissions.php:896 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" + +#: ../../include/permissions.php:896 +msgid "Celebrity/Soapbox" +msgstr "Mitteilungs-Kanal (keine Kommentare)" + +#: ../../include/permissions.php:896 +msgid "Group Repository" +msgstr "Gruppenarchiv" + +#: ../../include/permissions.php:897 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" +msgstr "Andere" + +#: ../../include/permissions.php:897 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" + +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "Kanal" + +#: ../../include/conversation.php:167 ../../mod/like.php:399 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s nicht" + +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ist jetzt mit %2$s verbunden" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s an" + +#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" + +#: ../../include/conversation.php:583 ../../mod/photos.php:996 +msgctxt "title" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../include/conversation.php:583 ../../mod/photos.php:996 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" + +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" + +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" + +#: ../../include/conversation.php:584 ../../mod/photos.php:997 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" + +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" + +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" + +#: ../../include/conversation.php:585 ../../mod/photos.php:998 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" + +#: ../../include/conversation.php:703 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" + +#: ../../include/conversation.php:718 +msgid "Categories:" +msgstr "Kategorien:" + +#: ../../include/conversation.php:719 +msgid "Filed under:" +msgstr "Gespeichert unter:" + +#: ../../include/conversation.php:746 +msgid "View in context" +msgstr "Im Zusammenhang anschauen" + +#: ../../include/conversation.php:857 +msgid "remove" +msgstr "lösche" + +#: ../../include/conversation.php:862 +msgid "Delete Selected Items" +msgstr "Lösche die ausgewählten Elemente" + +#: ../../include/conversation.php:950 +msgid "View Source" +msgstr "Quelle anzeigen" + +#: ../../include/conversation.php:951 +msgid "Follow Thread" +msgstr "Unterhaltung folgen" + +#: ../../include/conversation.php:952 +msgid "View Status" +msgstr "Status ansehen" + +#: ../../include/conversation.php:954 +msgid "View Photos" +msgstr "Fotos ansehen" + +#: ../../include/conversation.php:955 +msgid "Matrix Activity" +msgstr "Matrix-Aktivität" + +#: ../../include/conversation.php:957 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: ../../include/conversation.php:958 +msgid "Send PM" +msgstr "Sende PN" + +#: ../../include/conversation.php:959 ../../include/apps.php:145 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../include/conversation.php:1073 +#, php-format +msgid "%s likes this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1073 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gefällt das nicht." + +#: ../../include/conversation.php:1077 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d Person gefällt das." +msgstr[1] "%2$d Leuten gefällt das." + +#: ../../include/conversation.php:1079 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d Person gefällt das nicht." +msgstr[1] "%2$d Leuten gefällt das nicht." + +#: ../../include/conversation.php:1085 +msgid "and" +msgstr "und" + +#: ../../include/conversation.php:1088 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] ", und %d andere" + +#: ../../include/conversation.php:1089 +#, php-format +msgid "%s like this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1089 +#, php-format +msgid "%s don't like this." +msgstr "%s gefällt das nicht." + +#: ../../include/conversation.php:1151 +msgid "Visible to everybody" +msgstr "Sichtbar für jeden" + +#: ../../include/conversation.php:1152 ../../mod/mail.php:174 +#: ../../mod/mail.php:289 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" + +#: ../../include/conversation.php:1153 +msgid "Please enter a video link/URL:" +msgstr "Gib einen Video-Link/URL ein:" + +#: ../../include/conversation.php:1154 +msgid "Please enter an audio link/URL:" +msgstr "Gib einen Audio-Link/URL ein:" + +#: ../../include/conversation.php:1155 +msgid "Tag term:" +msgstr "Schlagwort:" + +#: ../../include/conversation.php:1156 ../../mod/filer.php:49 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" + +#: ../../include/conversation.php:1157 +msgid "Where are you right now?" +msgstr "Wo bist Du jetzt grade?" + +#: ../../include/conversation.php:1158 ../../mod/editpost.php:47 +#: ../../mod/mail.php:175 ../../mod/mail.php:290 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verfällt YYYY-MM-DD HH;MM" + +#: ../../include/conversation.php:1185 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 ../../mod/photos.php:961 ../../mod/layouts.php:184 +msgid "Share" +msgstr "Teilen" + +#: ../../include/conversation.php:1187 +msgid "Page link name" +msgstr "Link zur Seite" + +#: ../../include/conversation.php:1190 +msgid "Post as" +msgstr "Veröffentlichen als" + +#: ../../include/conversation.php:1197 ../../mod/editpost.php:112 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:184 +#: ../../mod/editblock.php:141 ../../mod/mail.php:238 ../../mod/mail.php:352 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: ../../include/conversation.php:1198 +msgid "upload photo" +msgstr "Foto hochladen" + +#: ../../include/conversation.php:1199 ../../mod/editpost.php:113 +#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:185 +#: ../../mod/editblock.php:142 ../../mod/mail.php:239 ../../mod/mail.php:353 +msgid "Attach file" +msgstr "Datei anhängen" + +#: ../../include/conversation.php:1200 +msgid "attach file" +msgstr "Datei anfügen" + +#: ../../include/conversation.php:1201 ../../mod/editpost.php:114 +#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:186 +#: ../../mod/editblock.php:143 ../../mod/mail.php:240 ../../mod/mail.php:354 +msgid "Insert web link" +msgstr "Link einfügen" + +#: ../../include/conversation.php:1202 +msgid "web link" +msgstr "Web-Link" + +#: ../../include/conversation.php:1203 +msgid "Insert video link" +msgstr "Video-Link einfügen" + +#: ../../include/conversation.php:1204 +msgid "video link" +msgstr "Video-Link" + +#: ../../include/conversation.php:1205 +msgid "Insert audio link" +msgstr "Audio-Link einfügen" + +#: ../../include/conversation.php:1206 +msgid "audio link" +msgstr "Audio-Link" + +#: ../../include/conversation.php:1207 ../../mod/editpost.php:118 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:190 +#: ../../mod/editblock.php:147 +msgid "Set your location" +msgstr "Legen Sie Ihren Standort fest" + +#: ../../include/conversation.php:1208 +msgid "set location" +msgstr "Standort festlegen" + +#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 +msgid "Toggle voting" +msgstr "Umfragewerkzeug aktivieren" + +#: ../../include/conversation.php:1212 ../../mod/editpost.php:119 +#: ../../mod/editlayout.php:146 ../../mod/editwebpage.php:191 +#: ../../mod/editblock.php:148 +msgid "Clear browser location" +msgstr "Browser-Standort löschen" + +#: ../../include/conversation.php:1213 +msgid "clear location" +msgstr "Standort löschen" + +#: ../../include/conversation.php:1215 ../../mod/editpost.php:135 +#: ../../mod/editwebpage.php:207 ../../mod/editblock.php:161 +msgid "Title (optional)" +msgstr "Titel (optional)" + +#: ../../include/conversation.php:1219 ../../mod/editpost.php:137 +#: ../../mod/editlayout.php:162 ../../mod/editwebpage.php:209 +#: ../../mod/editblock.php:164 +msgid "Categories (optional, comma-separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" + +#: ../../include/conversation.php:1221 ../../mod/editpost.php:124 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:193 +#: ../../mod/editblock.php:150 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" + +#: ../../include/conversation.php:1222 +msgid "permissions" +msgstr "Berechtigungen" + +#: ../../include/conversation.php:1230 ../../mod/editpost.php:132 +#: ../../mod/editlayout.php:155 ../../mod/editwebpage.php:202 +#: ../../mod/editblock.php:158 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: ../../include/conversation.php:1232 ../../mod/editpost.php:138 +#: ../../mod/editlayout.php:163 ../../mod/editwebpage.php:210 +#: ../../mod/editblock.php:165 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Beispiel: bob@example.com, mary@example.com" + +#: ../../include/conversation.php:1245 ../../mod/editpost.php:149 +#: ../../mod/editlayout.php:172 ../../mod/editwebpage.php:219 +#: ../../mod/editblock.php:175 ../../mod/mail.php:245 ../../mod/mail.php:359 +msgid "Set expiration date" +msgstr "Verfallsdatum festlegen" + +#: ../../include/conversation.php:1249 ../../mod/events.php:674 +#: ../../mod/editpost.php:153 +msgid "OK" +msgstr "Ok" + +#: ../../include/conversation.php:1250 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:134 ../../mod/events.php:673 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:154 +#: ../../mod/settings.php:589 ../../mod/settings.php:615 +msgid "Cancel" +msgstr "Abbrechen" + +#: ../../include/conversation.php:1492 +msgid "Discover" +msgstr "Entdecken" + +#: ../../include/conversation.php:1495 +msgid "Imported public streams" +msgstr "Importierte öffentliche Beiträge" + +#: ../../include/conversation.php:1500 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: ../../include/conversation.php:1503 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" + +#: ../../include/conversation.php:1507 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: ../../include/conversation.php:1510 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" + +#: ../../include/conversation.php:1518 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" + +#: ../../include/conversation.php:1524 ../../mod/connections.php:72 +#: ../../mod/connections.php:85 ../../mod/menu.php:110 +msgid "New" +msgstr "Neu" + +#: ../../include/conversation.php:1527 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" + +#: ../../include/conversation.php:1533 +msgid "Starred" +msgstr "Markiert" + +#: ../../include/conversation.php:1536 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" + +#: ../../include/conversation.php:1543 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1546 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" + +#: ../../include/conversation.php:1590 ../../mod/admin.php:993 +msgid "Channel" +msgstr "Kanal" + +#: ../../include/conversation.php:1593 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: ../../include/conversation.php:1602 +msgid "About" +msgstr "Über" + +#: ../../include/conversation.php:1605 +msgid "Profile Details" +msgstr "Profil-Details" + +#: ../../include/conversation.php:1614 ../../include/photos.php:359 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../include/conversation.php:1623 +msgid "Files and Storage" +msgstr "Dateien und Speicher" + +#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 +msgid "Chatrooms" +msgstr "Chaträume" + +#: ../../include/conversation.php:1649 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" + +#: ../../include/conversation.php:1659 +msgid "Manage Webpages" +msgstr "Webseiten verwalten" + +#: ../../include/conversation.php:1718 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Zusage" +msgstr[1] "Zusagen" + +#: ../../include/conversation.php:1721 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Absage" +msgstr[1] "Absagen" + +#: ../../include/conversation.php:1724 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] " Unentschlossen" +msgstr[1] "Unentschlossene" + +#: ../../include/conversation.php:1727 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Zustimmung" +msgstr[1] "Zustimmungen" + +#: ../../include/conversation.php:1730 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Ablehnung" +msgstr[1] "Ablehnungen" + +#: ../../include/conversation.php:1733 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Enthaltung" +msgstr[1] "Enthaltungen" + +#: ../../include/items.php:413 ../../mod/like.php:273 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 +#: ../../mod/bulksetclose.php:11 ../../index.php:392 msgid "Permission denied" msgstr "Keine Berechtigung" -#: ../../include/items.php:979 ../../include/items.php:1024 +#: ../../include/items.php:1101 ../../include/items.php:1147 msgid "(Unknown)" msgstr "(Unbekannt)" -#: ../../include/items.php:1181 +#: ../../include/items.php:1373 msgid "Visible to anybody on the internet." msgstr "Für jeden im Internet sichtbar." -#: ../../include/items.php:1183 +#: ../../include/items.php:1375 msgid "Visible to you only." msgstr "Nur für Dich sichtbar." -#: ../../include/items.php:1185 +#: ../../include/items.php:1377 msgid "Visible to anybody in this network." msgstr "Für jedes Mitglied der RedMatrix sichtbar." -#: ../../include/items.php:1187 +#: ../../include/items.php:1379 msgid "Visible to anybody authenticated." msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/items.php:1189 +#: ../../include/items.php:1381 #, php-format msgid "Visible to anybody on %s." msgstr "Für jeden auf %s sichtbar." -#: ../../include/items.php:1191 +#: ../../include/items.php:1383 msgid "Visible to all connections." msgstr "Für alle Verbindungen sichtbar." -#: ../../include/items.php:1193 +#: ../../include/items.php:1385 msgid "Visible to approved connections." msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/items.php:1195 +#: ../../include/items.php:1387 msgid "Visible to specific connections." msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/items.php:4002 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:168 ../../mod/admin.php:901 -#: ../../mod/admin.php:1104 +#: ../../include/items.php:4286 ../../mod/thing.php:74 +#: ../../mod/filestorage.php:27 ../../mod/viewsrc.php:20 +#: ../../mod/admin.php:167 ../../mod/admin.php:1025 ../../mod/admin.php:1225 +#: ../../mod/display.php:36 msgid "Item not found." msgstr "Element nicht gefunden." -#: ../../include/items.php:4455 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../include/items.php:4359 ../../include/attach.php:137 +#: ../../include/attach.php:184 ../../include/attach.php:247 +#: ../../include/attach.php:261 ../../include/attach.php:305 +#: ../../include/attach.php:319 ../../include/attach.php:350 +#: ../../include/attach.php:546 ../../include/attach.php:618 +#: ../../include/chat.php:131 ../../include/photos.php:26 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 +#: ../../mod/achievements.php:30 ../../mod/manage.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/webpages.php:69 ../../mod/thing.php:269 +#: ../../mod/thing.php:284 ../../mod/thing.php:318 +#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 +#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 +#: ../../mod/events.php:249 ../../mod/group.php:9 ../../mod/item.php:206 +#: ../../mod/item.php:214 ../../mod/item.php:1005 ../../mod/network.php:12 +#: ../../mod/common.php:35 ../../mod/connections.php:29 +#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/editpost.php:13 +#: ../../mod/photos.php:69 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 +#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 +#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/mitem.php:111 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 +#: ../../mod/rate.php:110 ../../mod/editblock.php:65 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 +#: ../../mod/menu.php:72 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 +#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 +#: ../../mod/poke.php:128 ../../mod/profiles.php:188 +#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 ../../mod/setup.php:223 +#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 +#: ../../mod/register.php:72 ../../mod/settings.php:570 ../../mod/id.php:71 +#: ../../mod/message.php:16 ../../mod/mood.php:111 ../../mod/connedit.php:348 +#: ../../mod/mail.php:114 ../../mod/notifications.php:66 +#: ../../mod/regmod.php:17 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/appman.php:66 +#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 +#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/bookmarks.php:46 +#: ../../mod/channel.php:100 ../../mod/channel.php:219 +#: ../../mod/channel.php:262 ../../mod/suggest.php:26 +#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 +#: ../../index.php:182 ../../index.php:393 +msgid "Permission denied." +msgstr "Zugang verweigert" + +#: ../../include/items.php:4763 ../../mod/group.php:38 ../../mod/group.php:140 +#: ../../mod/bulksetclose.php:51 msgid "Collection not found." msgstr "Sammlung nicht gefunden" -#: ../../include/items.php:4470 +#: ../../include/items.php:4779 msgid "Collection is empty." msgstr "Sammlung ist leer." -#: ../../include/items.php:4477 +#: ../../include/items.php:4786 #, php-format msgid "Collection: %s" msgstr "Sammlung: %s" -#: ../../include/items.php:4488 +#: ../../include/items.php:4796 ../../mod/connedit.php:674 #, php-format msgid "Connection: %s" msgstr "Verbindung: %s" -#: ../../include/items.php:4491 +#: ../../include/items.php:4798 msgid "Connection not found." msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" +#: ../../include/zot.php:678 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Neues Fenster" +#: ../../include/zot.php:694 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" - -#: ../../include/Contact.php:215 ../../mod/admin.php:651 +#: ../../include/zot.php:2184 #, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/network.php:613 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" +#: ../../include/oembed.php:183 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" -#: ../../include/diaspora.php:1938 ../../include/conversation.php:164 -#: ../../mod/like.php:383 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s" +#: ../../include/oembed.php:192 +msgid "Embedding disabled" +msgstr "Einbetten ausgeschaltet" -#: ../../include/bbcode.php:115 ../../include/bbcode.php:694 -#: ../../include/bbcode.php:697 ../../include/bbcode.php:702 -#: ../../include/bbcode.php:705 ../../include/bbcode.php:708 -#: ../../include/bbcode.php:711 ../../include/bbcode.php:716 -#: ../../include/bbcode.php:719 ../../include/bbcode.php:724 -#: ../../include/bbcode.php:727 ../../include/bbcode.php:730 -#: ../../include/bbcode.php:733 -msgid "Image/photo" -msgstr "Bild/Foto" +#: ../../include/auth.php:131 +msgid "Logged out." +msgstr "Ausgeloggt." -#: ../../include/bbcode.php:150 ../../include/bbcode.php:744 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" +#: ../../include/auth.php:272 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" -#: ../../include/bbcode.php:168 -msgid "Install design element: " -msgstr "Design-Element installieren:" - -#: ../../include/bbcode.php:174 -msgid "QR code" -msgstr "QR-Code" - -#: ../../include/bbcode.php:223 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schrieb den folgenden %2$s %3$s" - -#: ../../include/bbcode.php:225 -msgid "post" -msgstr "Beitrag" - -#: ../../include/bbcode.php:447 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" - -#: ../../include/bbcode.php:662 -msgid "$1 spoiler" -msgstr "$1 Spoiler" - -#: ../../include/bbcode.php:682 -msgid "$1 wrote:" -msgstr "$1 schrieb:" +#: ../../include/auth.php:286 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "Login fehlgeschlagen." #: ../../include/contact_widgets.php:14 #, php-format @@ -2785,7 +3171,7 @@ msgid_plural "%d invitations available" msgstr[0] "%d Einladung verfügbar" msgstr[1] "%d Einladungen verfügbar" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:420 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:457 msgid "Advanced" msgstr "Fortgeschritten" @@ -2805,13 +3191,13 @@ msgstr "Verbinden/Folgen" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Beispiele: Robert Morgenstein, Angeln" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:330 ../../mod/directory.php:335 +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 +#: ../../mod/directory.php:384 ../../mod/connections.php:273 msgid "Find" msgstr "Finde" -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:334 +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 +#: ../../mod/suggest.php:60 msgid "Channel Suggestions" msgstr "Kanal-Vorschläge" @@ -2850,36 +3236,317 @@ msgstr "Anzeigen" msgid "Don't show" msgstr "Nicht anzeigen" -#: ../../include/acl_selectors.php:248 ../../mod/events.php:652 -#: ../../mod/chat.php:209 ../../mod/filestorage.php:146 -#: ../../mod/photos.php:559 ../../mod/photos.php:916 +#: ../../include/acl_selectors.php:248 ../../mod/events.php:691 +#: ../../mod/photos.php:571 ../../mod/photos.php:934 ../../mod/chat.php:209 +#: ../../mod/filestorage.php:147 msgid "Permissions" msgstr "Berechtigungen" -#: ../../include/api.php:1081 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" +#: ../../include/attach.php:242 ../../include/attach.php:300 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." -#: ../../include/zot.php:673 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" +#: ../../include/attach.php:363 +msgid "No source file." +msgstr "Keine Quelldatei." -#: ../../include/zot.php:689 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" +#: ../../include/attach.php:381 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" -#: ../../include/zot.php:1961 +#: ../../include/attach.php:399 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:410 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" + +#: ../../include/attach.php:422 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." + +#: ../../include/attach.php:505 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:517 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." + +#: ../../include/attach.php:561 ../../include/attach.php:578 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." + +#: ../../include/attach.php:623 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" + +#: ../../include/attach.php:639 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" + +#: ../../include/attach.php:663 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:714 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:718 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." + +#: ../../include/identity.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" + +#: ../../include/identity.php:67 +msgid "Empty name" +msgstr "Namensfeld leer" + +#: ../../include/identity.php:70 +msgid "Name too long" +msgstr "Name ist zu lang" + +#: ../../include/identity.php:186 +msgid "No account identifier" +msgstr "Keine Account-Kennung" + +#: ../../include/identity.php:198 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." + +#: ../../include/identity.php:212 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." + +#: ../../include/identity.php:217 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." + +#: ../../include/identity.php:292 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" + +#: ../../include/identity.php:350 +msgid "Default Profile" +msgstr "Standard-Profil" + +#: ../../include/identity.php:736 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." + +#: ../../include/identity.php:783 ../../mod/profile.php:16 +#: ../../mod/achievements.php:11 ../../mod/webpages.php:29 +#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/blocks.php:29 +#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 +#: ../../mod/editblock.php:29 ../../mod/filestorage.php:54 +#: ../../mod/layouts.php:29 +msgid "Requested profile is not available." +msgstr "Erwünschte Profil ist nicht verfügbar." + +#: ../../include/identity.php:946 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Profilfoto ändern" + +#: ../../include/identity.php:952 +msgid "Profiles" +msgstr "Profile" + +#: ../../include/identity.php:952 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/bearbeiten" + +#: ../../include/identity.php:953 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" + +#: ../../include/identity.php:968 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Profilfoto:" + +#: ../../include/identity.php:971 +msgid "visible to everybody" +msgstr "sichtbar für jeden" + +#: ../../include/identity.php:972 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" + +#: ../../include/identity.php:988 ../../include/identity.php:1227 +msgid "Gender:" +msgstr "Geschlecht:" + +#: ../../include/identity.php:989 ../../include/identity.php:1271 +msgid "Status:" +msgstr "Status:" + +#: ../../include/identity.php:990 ../../include/identity.php:1282 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../include/identity.php:991 +msgid "Online Now" +msgstr "gerade online" + +#: ../../include/identity.php:1074 ../../include/identity.php:1152 +#: ../../mod/ping.php:324 +msgid "g A l F d" +msgstr "l, j. F, G:i \\U\\h\\r" + +#: ../../include/identity.php:1075 ../../include/identity.php:1153 +msgid "F d" +msgstr "d. F" + +#: ../../include/identity.php:1120 ../../include/identity.php:1192 +#: ../../mod/ping.php:346 +msgid "[today]" +msgstr "[Heute]" + +#: ../../include/identity.php:1131 +msgid "Birthday Reminders" +msgstr "Geburtstags Erinnerungen" + +#: ../../include/identity.php:1132 +msgid "Birthdays this week:" +msgstr "Geburtstage in dieser Woche:" + +#: ../../include/identity.php:1185 +msgid "[No description]" +msgstr "[Keine Beschreibung]" + +#: ../../include/identity.php:1203 +msgid "Event Reminders" +msgstr "Termin-Erinnerungen" + +#: ../../include/identity.php:1204 +msgid "Events this week:" +msgstr "Termine in dieser Woche:" + +#: ../../include/identity.php:1217 ../../include/identity.php:1334 +#: ../../include/apps.php:138 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profil" + +#: ../../include/identity.php:1225 ../../mod/settings.php:1056 +msgid "Full Name:" +msgstr "Voller Name:" + +#: ../../include/identity.php:1232 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" + +#: ../../include/identity.php:1256 +msgid "j F, Y" +msgstr "j. F Y" + +#: ../../include/identity.php:1257 +msgid "j F" +msgstr "j. F" + +#: ../../include/identity.php:1264 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/identity.php:1268 ../../mod/directory.php:297 +msgid "Age:" +msgstr "Alter:" + +#: ../../include/identity.php:1277 +#, php-format +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" + +#: ../../include/identity.php:1280 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" + +#: ../../include/identity.php:1284 ../../mod/directory.php:313 +#: ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Heimatstadt:" + +#: ../../include/identity.php:1286 +msgid "Tags:" +msgstr "Schlagworte:" + +#: ../../include/identity.php:1288 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: ../../include/identity.php:1290 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/identity.php:1292 ../../mod/directory.php:315 +msgid "About:" +msgstr "Über:" + +#: ../../include/identity.php:1294 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" + +#: ../../include/identity.php:1296 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Gefällt:" + +#: ../../include/identity.php:1298 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Gefällt nicht:" + +#: ../../include/identity.php:1300 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" + +#: ../../include/identity.php:1302 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" + +#: ../../include/identity.php:1304 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: ../../include/identity.php:1306 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" + +#: ../../include/identity.php:1308 +msgid "Television:" +msgstr "Fernsehen:" + +#: ../../include/identity.php:1310 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" + +#: ../../include/identity.php:1312 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" + +#: ../../include/identity.php:1314 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" + +#: ../../include/identity.php:1316 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: ../../include/identity.php:1336 +msgid "Like this thing" +msgstr "Gefällt mir" #: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 msgid "Male" msgstr "Männlich" #: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 msgid "Female" msgstr "Weiblich" @@ -2901,7 +3568,7 @@ msgstr "Größtenteils weiblich" #: ../../include/profile_selectors.php:6 msgid "Transgender" -msgstr "Transsexuell" +msgstr "Transgender" #: ../../include/profile_selectors.php:6 msgid "Intersex" @@ -2923,13 +3590,6 @@ msgstr "Geschlechtslos" msgid "Non-specific" msgstr "unklar" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:814 -msgid "Other" -msgstr "Andere" - #: ../../include/profile_selectors.php:6 msgid "Undecided" msgstr "Unentschieden" @@ -3128,10 +3788,6 @@ msgstr "Adressbuch" msgid "Mood" msgstr "Laune" -#: ../../include/apps.php:145 ../../include/conversation.php:943 -msgid "Poke" -msgstr "Anstupsen" - #: ../../include/apps.php:148 msgid "Probe" msgstr "Testen" @@ -3152,7 +3808,7 @@ msgstr "Einladen" msgid "Features" msgstr "Funktionen" -#: ../../include/apps.php:153 +#: ../../include/apps.php:153 ../../mod/id.php:28 msgid "Language" msgstr "Sprache" @@ -3160,12 +3816,13 @@ msgstr "Sprache" msgid "Post" msgstr "Beitrag" -#: ../../include/apps.php:155 +#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 +#: ../../mod/id.php:19 msgid "Profile Photo" msgstr "Profilfoto" -#: ../../include/apps.php:247 ../../mod/settings.php:81 -#: ../../mod/settings.php:609 +#: ../../include/apps.php:247 ../../mod/settings.php:84 +#: ../../mod/settings.php:614 msgid "Update" msgstr "Aktualisieren" @@ -3177,719 +3834,118 @@ msgstr "Installieren" msgid "Purchase" msgstr "Kaufen" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" +#: ../../include/bbcode.php:122 ../../include/bbcode.php:768 +#: ../../include/bbcode.php:771 ../../include/bbcode.php:776 +#: ../../include/bbcode.php:779 ../../include/bbcode.php:782 +#: ../../include/bbcode.php:785 ../../include/bbcode.php:790 +#: ../../include/bbcode.php:793 ../../include/bbcode.php:798 +#: ../../include/bbcode.php:801 ../../include/bbcode.php:804 +#: ../../include/bbcode.php:807 +msgid "Image/photo" +msgstr "Bild/Foto" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt" +#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Speichern der Account-Informationen fehlgeschlagen" - -#: ../../include/account.php:245 +#: ../../include/bbcode.php:178 #, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" +msgid "Install %s element: " +msgstr "Element %s installieren: " -#: ../../include/account.php:313 +#: ../../include/bbcode.php:182 #, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administrator" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Account bestätigt." - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s widerrufen" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Konto geprüft. Bitte melde Dich an!" - -#: ../../include/account.php:674 ../../include/account.php:676 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." - -#: ../../include/account.php:682 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." - -#: ../../include/account.php:687 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." - -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "Kanal" - -#: ../../include/conversation.php:167 ../../mod/like.php:385 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s nicht" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" - -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" - -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../include/conversation.php:556 ../../mod/photos.php:978 -msgctxt "title" -msgid "Dislikes" -msgstr "Gefällt mir nicht" - -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" - -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" - -#: ../../include/conversation.php:557 ../../mod/photos.php:979 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" - -#: ../../include/conversation.php:558 ../../mod/photos.php:980 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" - -#: ../../include/conversation.php:680 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" - -#: ../../include/conversation.php:695 -msgid "Categories:" -msgstr "Kategorien:" - -#: ../../include/conversation.php:696 -msgid "Filed under:" -msgstr "Gespeichert unter:" - -#: ../../include/conversation.php:723 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" - -#: ../../include/conversation.php:838 -msgid "remove" -msgstr "lösche" - -#: ../../include/conversation.php:843 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Quelle anzeigen" - -#: ../../include/conversation.php:935 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" - -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Status ansehen" - -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Fotos ansehen" - -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Matrix-Aktivität" - -#: ../../include/conversation.php:941 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: ../../include/conversation.php:942 -msgid "Send PM" -msgstr "Sende PN" - -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s likes this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1061 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." - -#: ../../include/conversation.php:1065 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d Person gefällt das." -msgstr[1] "%2$d Leuten gefällt das." - -#: ../../include/conversation.php:1067 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d Person gefällt das nicht." -msgstr[1] "%2$d Leuten gefällt das nicht." - -#: ../../include/conversation.php:1073 -msgid "and" -msgstr "und" - -#: ../../include/conversation.php:1076 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", und %d andere" - -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." - -#: ../../include/conversation.php:1136 -msgid "Visible to everybody" -msgstr "Sichtbar für jeden" - -#: ../../include/conversation.php:1137 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" - -#: ../../include/conversation.php:1138 -msgid "Please enter a video link/URL:" -msgstr "Gib einen Video-Link/URL ein:" - -#: ../../include/conversation.php:1139 -msgid "Please enter an audio link/URL:" -msgstr "Gib einen Audio-Link/URL ein:" - -#: ../../include/conversation.php:1140 -msgid "Tag term:" -msgstr "Schlagwort:" - -#: ../../include/conversation.php:1141 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" - -#: ../../include/conversation.php:1142 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" - -#: ../../include/conversation.php:1143 ../../mod/editpost.php:52 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verfällt YYYY-MM-DD HH;MM" - -#: ../../include/conversation.php:1170 ../../mod/editblock.php:198 -#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 -#: ../../mod/layouts.php:168 ../../mod/photos.php:943 -msgid "Share" -msgstr "Teilen" - -#: ../../include/conversation.php:1172 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Seitentitel-Link" - -#: ../../include/conversation.php:1175 -msgid "Post as" -msgstr "Veröffentlichen als" - -#: ../../include/conversation.php:1176 ../../mod/editblock.php:144 -#: ../../mod/editpost.php:114 ../../mod/editlayout.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: ../../include/conversation.php:1177 -msgid "upload photo" -msgstr "Foto hochladen" - -#: ../../include/conversation.php:1178 ../../mod/editblock.php:145 -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:141 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "Datei anhängen" - -#: ../../include/conversation.php:1179 -msgid "attach file" -msgstr "Datei anfügen" - -#: ../../include/conversation.php:1180 ../../mod/editblock.php:146 -#: ../../mod/editpost.php:116 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" -msgstr "Link einfügen" - -#: ../../include/conversation.php:1181 -msgid "web link" -msgstr "Web-Link" - -#: ../../include/conversation.php:1182 -msgid "Insert video link" -msgstr "Video-Link einfügen" - -#: ../../include/conversation.php:1183 -msgid "video link" -msgstr "Video-Link" - -#: ../../include/conversation.php:1184 -msgid "Insert audio link" -msgstr "Audio-Link einfügen" - -#: ../../include/conversation.php:1185 -msgid "audio link" -msgstr "Audio-Link" - -#: ../../include/conversation.php:1186 ../../mod/editblock.php:150 -#: ../../mod/editpost.php:120 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:181 -msgid "Set your location" -msgstr "Standort" - -#: ../../include/conversation.php:1187 -msgid "set location" -msgstr "Standort" - -#: ../../include/conversation.php:1188 ../../mod/editpost.php:122 -msgid "Toggle voting" -msgstr "Umfragewerkzeug aktivieren" - -#: ../../include/conversation.php:1191 ../../mod/editblock.php:151 -#: ../../mod/editpost.php:121 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:182 -msgid "Clear browser location" -msgstr "Browser-Standort löschen" - -#: ../../include/conversation.php:1192 -msgid "clear location" -msgstr "Standort löschen" - -#: ../../include/conversation.php:1194 ../../mod/editblock.php:164 -#: ../../mod/editpost.php:136 ../../mod/editlayout.php:159 -#: ../../mod/editwebpage.php:198 -msgid "Title (optional)" -msgstr "Titel (optional)" - -#: ../../include/conversation.php:1197 ../../mod/editblock.php:167 -#: ../../mod/editpost.php:138 ../../mod/editlayout.php:162 -#: ../../mod/editwebpage.php:200 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" - -#: ../../include/conversation.php:1199 ../../mod/editblock.php:153 -#: ../../mod/editpost.php:126 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:184 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" - -#: ../../include/conversation.php:1200 -msgid "permissions" -msgstr "Berechtigungen" - -#: ../../include/conversation.php:1207 ../../mod/editblock.php:161 -#: ../../mod/editpost.php:133 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:193 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: ../../include/conversation.php:1209 ../../mod/editblock.php:168 -#: ../../mod/editpost.php:139 ../../mod/editlayout.php:163 -#: ../../mod/editwebpage.php:201 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Beispiel: bob@example.com, mary@example.com" - -#: ../../include/conversation.php:1222 ../../mod/editblock.php:178 -#: ../../mod/editpost.php:150 ../../mod/editlayout.php:173 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Verfallsdatum" - -#: ../../include/conversation.php:1226 ../../mod/editpost.php:154 -#: ../../mod/events.php:635 -msgid "OK" -msgstr "Ok" - -#: ../../include/conversation.php:1227 ../../mod/editpost.php:155 -#: ../../mod/events.php:634 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/settings.php:584 -#: ../../mod/settings.php:610 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Abbrechen" - -#: ../../include/conversation.php:1471 -msgid "Discover" -msgstr "Entdecken" - -#: ../../include/conversation.php:1474 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" - -#: ../../include/conversation.php:1479 -msgid "Commented Order" -msgstr "Neueste Kommentare" - -#: ../../include/conversation.php:1482 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" - -#: ../../include/conversation.php:1486 -msgid "Posted Order" -msgstr "Neueste Beiträge" - -#: ../../include/conversation.php:1489 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" - -#: ../../include/conversation.php:1497 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" - -#: ../../include/conversation.php:1503 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" -msgstr "Neu" - -#: ../../include/conversation.php:1506 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" - -#: ../../include/conversation.php:1512 -msgid "Starred" -msgstr "Markiert" - -#: ../../include/conversation.php:1515 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" - -#: ../../include/conversation.php:1522 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1525 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" - -#: ../../include/conversation.php:1565 ../../mod/admin.php:870 -msgid "Channel" -msgstr "Kanal" - -#: ../../include/conversation.php:1568 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: ../../include/conversation.php:1577 -msgid "About" -msgstr "Über" - -#: ../../include/conversation.php:1580 -msgid "Profile Details" -msgstr "Profil-Details" - -#: ../../include/conversation.php:1598 -msgid "Files and Storage" -msgstr "Dateien und Speicher" - -#: ../../include/conversation.php:1608 ../../include/conversation.php:1611 -msgid "Chatrooms" -msgstr "Chaträume" - -#: ../../include/conversation.php:1624 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" - -#: ../../include/conversation.php:1635 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" - -#: ../../include/conversation.php:1698 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Zusage" -msgstr[1] "Zusagen" - -#: ../../include/conversation.php:1701 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Absage" -msgstr[1] "Absagen" - -#: ../../include/conversation.php:1704 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] " Unentschlossen" -msgstr[1] "Unentschlossene" - -#: ../../include/conversation.php:1707 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Zustimmung" -msgstr[1] "Zustimmungen" - -#: ../../include/conversation.php:1710 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Ablehnung" -msgstr[1] "Ablehnungen" - -#: ../../include/conversation.php:1713 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Enthaltung" -msgstr[1] "Enthaltungen" - -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" - -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kann meine Fotoalben betrachten" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kann meine Dateiordner lesen" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" - -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" - -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" - -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" - -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kann in meine Dateiordner schreiben" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" - -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" - -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" - -#: ../../include/permissions.php:48 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dieser Beitrag beinhaltet ein installierbares %s Element, allerdings fehlen dir die nötigen Rechte es auf dieser Seite zu installieren." -#: ../../include/permissions.php:810 -msgid "Social Networking" -msgstr "Soziales Netzwerk" +#: ../../include/bbcode.php:192 ../../mod/impel.php:37 +msgid "webpage" +msgstr "Webseite" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Mostly Public" -msgstr "Weitgehend öffentlich" +#: ../../include/bbcode.php:195 ../../mod/impel.php:47 +msgid "layout" +msgstr "Gestaltung" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Restricted" -msgstr "Beschränkt" +#: ../../include/bbcode.php:198 ../../mod/impel.php:42 +msgid "block" +msgstr "Block" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -msgid "Private" -msgstr "Privat" +#: ../../include/bbcode.php:201 ../../mod/impel.php:54 +msgid "menu" +msgstr "Menü" -#: ../../include/permissions.php:811 -msgid "Community Forum" -msgstr "Forum" +#: ../../include/bbcode.php:215 +msgid "QR code" +msgstr "QR-Code" -#: ../../include/permissions.php:812 -msgid "Feed Republish" -msgstr "Teilen von Feeds" +#: ../../include/bbcode.php:266 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" -#: ../../include/permissions.php:813 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" +#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 +msgid "post" +msgstr "Beitrag" -#: ../../include/permissions.php:813 -msgid "Celebrity/Soapbox" -msgstr "Mitteilungs-Kanal (keine Kommentare)" +#: ../../include/bbcode.php:518 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" -#: ../../include/permissions.php:813 -msgid "Group Repository" -msgstr "Gruppenarchiv" +#: ../../include/bbcode.php:729 +msgid "$1 spoiler" +msgstr "$1 Spoiler" -#: ../../include/permissions.php:814 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" +#: ../../include/bbcode.php:756 +msgid "$1 wrote:" +msgstr "$1 schrieb:" + +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Der Chatraum hat keinen Namen" + +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Name des Chatraums bereits vergeben" + +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Ungültiger Raumbezeichner." + +#: ../../include/chat.php:120 +msgid "Room not found." +msgstr "Chatraum konnte nicht gefunden werden." + +#: ../../include/chat.php:141 +msgid "Room is full" +msgstr "Der Raum ist voll" + +#: ../../include/photos.php:94 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" + +#: ../../include/photos.php:101 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 +msgid "Unable to process image" +msgstr "Kann Bild nicht verarbeiten" + +#: ../../include/photos.php:199 +msgid "Photo storage failed." +msgstr "Foto speichern schlug fehl" + +#: ../../include/photos.php:363 +msgid "Upload New Photos" +msgstr "Lade neue Fotos hoch" #: ../../mod/achievements.php:34 msgid "Some blurb about what to do when you're new here" msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" -#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 -#: ../../mod/editpost.php:20 ../../mod/editlayout.php:78 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Element nicht gefunden" - -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Block bearbeiten" - -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Block löschen?" - -#: ../../mod/editblock.php:147 ../../mod/editpost.php:117 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" -msgstr "YouTube-Video einfügen" - -#: ../../mod/editblock.php:148 ../../mod/editpost.php:118 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis [.ogg]-Video einfügen" - -#: ../../mod/editblock.php:149 ../../mod/editpost.php:119 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis [.ogg]-Audio einfügen" - -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Block löschen" - #: ../../mod/manage.php:136 #, php-format msgid "You have created %1$.0f of %2$.0f allowed channels." @@ -3899,32 +3955,125 @@ msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." msgid "Create a new channel" msgstr "Neuen Kanal anlegen" -#: ../../mod/manage.php:149 +#: ../../mod/manage.php:167 msgid "Current Channel" msgstr "Aktueller Kanal" -#: ../../mod/manage.php:151 +#: ../../mod/manage.php:169 msgid "Switch to one of your channels by selecting it." msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." -#: ../../mod/manage.php:152 +#: ../../mod/manage.php:170 msgid "Default Channel" msgstr "Standard Kanal" -#: ../../mod/manage.php:153 +#: ../../mod/manage.php:171 msgid "Make Default" msgstr "Zum Standard machen" -#: ../../mod/manage.php:156 +#: ../../mod/manage.php:174 #, php-format msgid "%d new messages" msgstr "%d neue Nachrichten" -#: ../../mod/manage.php:157 +#: ../../mod/manage.php:175 #, php-format msgid "%d new introductions" msgstr "%d neue Vorstellungen" +#: ../../mod/manage.php:177 +msgid "Delegated Channels" +msgstr "Delegierte Kanäle" + +#: ../../mod/directory.php:59 ../../mod/photos.php:441 ../../mod/search.php:13 +#: ../../mod/ratings.php:82 ../../mod/viewconnections.php:17 +#: ../../mod/display.php:13 +msgid "Public access denied." +msgstr "Öffentlicher Zugang verweigert." + +#: ../../mod/directory.php:234 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d Bewertung" +msgstr[1] "%d Bewertungen" + +#: ../../mod/directory.php:245 +msgid "Gender: " +msgstr "Geschlecht:" + +#: ../../mod/directory.php:247 +msgid "Status: " +msgstr "Status:" + +#: ../../mod/directory.php:249 +msgid "Homepage: " +msgstr "Webseite:" + +#: ../../mod/directory.php:308 ../../mod/events.php:682 +msgid "Description:" +msgstr "Beschreibung:" + +#: ../../mod/directory.php:317 +msgid "Public Forum:" +msgstr "Öffentliches Forum:" + +#: ../../mod/directory.php:320 +msgid "Keywords: " +msgstr "Schlüsselwörter:" + +#: ../../mod/directory.php:323 +msgid "Don't suggest" +msgstr "Nicht vorschlagen." + +#: ../../mod/directory.php:325 +msgid "Common connections:" +msgstr "Gemeinsame Verbindungen:" + +#: ../../mod/directory.php:374 +msgid "Global Directory" +msgstr "Globales Verzeichnis" + +#: ../../mod/directory.php:374 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: ../../mod/directory.php:380 +msgid "Finding:" +msgstr "Ergebnisse:" + +#: ../../mod/directory.php:385 +msgid "next page" +msgstr "nächste Seite" + +#: ../../mod/directory.php:385 +msgid "previous page" +msgstr "vorherige Seite" + +#: ../../mod/directory.php:386 +msgid "Sort options" +msgstr "Sortieroptionen" + +#: ../../mod/directory.php:387 +msgid "Alphabetic" +msgstr "alphabetisch" + +#: ../../mod/directory.php:388 +msgid "Reverse Alphabetic" +msgstr "Entgegengesetzt alphabetisch" + +#: ../../mod/directory.php:389 +msgid "Newest to Oldest" +msgstr "Neueste zuerst" + +#: ../../mod/directory.php:390 +msgid "Oldest to Newest" +msgstr "Älteste zuerst" + +#: ../../mod/directory.php:407 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." + #: ../../mod/xchan.php:6 msgid "Xchan Lookup" msgstr "Xchan-Suche" @@ -3933,7 +4082,7 @@ msgstr "Xchan-Suche" msgid "Lookup xchan beginning with (or webbie): " msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" -#: ../../mod/xchan.php:37 ../../mod/menu.php:136 ../../mod/mitem.php:111 +#: ../../mod/xchan.php:37 ../../mod/mitem.php:116 ../../mod/menu.php:160 msgid "Not found." msgstr "Nicht gefunden." @@ -3955,371 +4104,29 @@ msgid "" " and/or create new posts for you?" msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" -#: ../../mod/api.php:105 ../../mod/settings.php:974 ../../mod/settings.php:979 -#: ../../mod/settings.php:1064 ../../mod/admin.php:396 -msgid "Yes" -msgstr "Ja" +#: ../../mod/webpages.php:191 +msgid "Page Title" +msgstr "Seitentitel" -#: ../../mod/api.php:106 ../../mod/settings.php:974 ../../mod/settings.php:979 -#: ../../mod/settings.php:1064 ../../mod/admin.php:394 -msgid "No" -msgstr "Nein" +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Kanal hinzugefügt." -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Block-Name" +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Schlagwort entfernt" -#: ../../mod/connedit.php:75 ../../mod/connections.php:37 -msgid "Could not access contact record." -msgstr "Konnte nicht auf den Kontakteintrag zugreifen." +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" -#: ../../mod/connedit.php:99 ../../mod/connections.php:51 -msgid "Could not locate selected profile." -msgstr "Gewähltes Profil nicht gefunden." +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../mod/connedit.php:204 ../../mod/connections.php:94 -msgid "Connection updated." -msgstr "Verbindung aktualisiert." - -#: ../../mod/connedit.php:206 ../../mod/connections.php:96 -msgid "Failed to update connection record." -msgstr "Konnte den Verbindungseintrag nicht aktualisieren." - -#: ../../mod/connedit.php:252 -msgid "is now connected to" -msgstr "ist jetzt verbunden mit" - -#: ../../mod/connedit.php:365 -msgid "Could not access address book record." -msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." - -#: ../../mod/connedit.php:379 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." - -#: ../../mod/connedit.php:386 -msgid "Channel has been unblocked" -msgstr "Kanal nicht mehr blockiert" - -#: ../../mod/connedit.php:387 -msgid "Channel has been blocked" -msgstr "Kanal blockiert" - -#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 -#: ../../mod/connedit.php:443 -msgid "Unable to set address book parameters." -msgstr "Konnte die Adressbuch-Parameter nicht setzen." - -#: ../../mod/connedit.php:398 -msgid "Channel has been unignored" -msgstr "Kanal wird nicht mehr ignoriert" - -#: ../../mod/connedit.php:399 -msgid "Channel has been ignored" -msgstr "Kanal wird ignoriert" - -#: ../../mod/connedit.php:410 -msgid "Channel has been unarchived" -msgstr "Kanal wurde aus dem Archiv zurück geholt" - -#: ../../mod/connedit.php:411 -msgid "Channel has been archived" -msgstr "Kanal wurde archiviert" - -#: ../../mod/connedit.php:422 -msgid "Channel has been unhidden" -msgstr "Kanal wird nicht mehr versteckt" - -#: ../../mod/connedit.php:423 -msgid "Channel has been hidden" -msgstr "Kanal wurde versteckt" - -#: ../../mod/connedit.php:438 -msgid "Channel has been approved" -msgstr "Kanal wurde zugelassen" - -#: ../../mod/connedit.php:439 -msgid "Channel has been unapproved" -msgstr "Zulassung des Kanals entfernt" - -#: ../../mod/connedit.php:467 -msgid "Connection has been removed." -msgstr "Verbindung wurde gelöscht." - -#: ../../mod/connedit.php:487 -#, php-format -msgid "View %s's profile" -msgstr "%ss Profil ansehen" - -#: ../../mod/connedit.php:491 -msgid "Refresh Permissions" -msgstr "Zugriffsrechte neu laden" - -#: ../../mod/connedit.php:494 -msgid "Fetch updated permissions" -msgstr "Aktualisierte Zugriffsrechte abfragen" - -#: ../../mod/connedit.php:498 -msgid "Recent Activity" -msgstr "Kürzliche Aktivitäten" - -#: ../../mod/connedit.php:501 -msgid "View recent posts and comments" -msgstr "Betrachte die neuesten Beiträge und Kommentare" - -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:737 -msgid "Unblock" -msgstr "Freigeben" - -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:736 -msgid "Block" -msgstr "Blockieren" - -#: ../../mod/connedit.php:510 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" - -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -msgid "Unignore" -msgstr "Nicht ignorieren" - -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorieren" - -#: ../../mod/connedit.php:517 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" - -#: ../../mod/connedit.php:520 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" - -#: ../../mod/connedit.php:520 -msgid "Archive" -msgstr "Archivieren" - -#: ../../mod/connedit.php:523 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" - -#: ../../mod/connedit.php:526 -msgid "Unhide" -msgstr "Wieder sichtbar machen" - -#: ../../mod/connedit.php:526 -msgid "Hide" -msgstr "Verstecken" - -#: ../../mod/connedit.php:529 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" - -#: ../../mod/connedit.php:536 -msgid "Delete this connection" -msgstr "Verbindung löschen" - -#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 -msgid "Approve this connection" -msgstr "Verbindung genehmigen" - -#: ../../mod/connedit.php:611 -msgid "Accept connection to allow communication" -msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" - -#: ../../mod/connedit.php:627 -#, php-format -msgid "Connections: settings for %s" -msgstr "Verbindungseinstellungen für %s" - -#: ../../mod/connedit.php:628 -msgid "Apply these permissions automatically" -msgstr "Diese Berechtigungen automatisch anwenden" - -#: ../../mod/connedit.php:632 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Wende die auf dieser Seite gewählten Berechtigungen auf alle neuen Verbindungen an." - -#: ../../mod/connedit.php:636 -msgid "Slide to adjust your degree of friendship" -msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" - -#: ../../mod/connedit.php:637 ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" - -#: ../../mod/connedit.php:638 ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" - -#: ../../mod/connedit.php:645 -msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." -msgstr "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert. Bitte sieh Dir die Zugriffsrechte auf dieser Seite an und ändere sie, wenn Du willst. Dieser Kontakt kann evtl. nicht mit Dir kommunizieren, bevor Du nicht auf dieser Seite auf „Senden“ geklickt hast – erst dieser Klick speichert die gewünschten Zugriffsrechte." - -#: ../../mod/connedit.php:648 -msgid "inherited" -msgstr "geerbt" - -#: ../../mod/connedit.php:651 -msgid "Connection has no individual permissions!" -msgstr "Diese Verbindung hat keine individuellen Zugriffsrechte!" - -#: ../../mod/connedit.php:652 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen." - -#: ../../mod/connedit.php:654 -msgid "Profile Visibility" -msgstr "Sichtbarkeit des Profils" - -#: ../../mod/connedit.php:655 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." - -#: ../../mod/connedit.php:656 -msgid "Contact Information / Notes" -msgstr "Kontaktinformationen / Notizen" - -#: ../../mod/connedit.php:657 -msgid "Edit contact notes" -msgstr "Kontaktnotizen bearbeiten" - -#: ../../mod/connedit.php:659 -msgid "Their Settings" -msgstr "Deren Einstellungen" - -#: ../../mod/connedit.php:660 -msgid "My Settings" -msgstr "Meine Einstellungen" - -#: ../../mod/connedit.php:662 -msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." -msgstr "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert, und Du hast keine Voreinstellungen für die Zugriffsrechte von Verbindungen angelegt. Bitte sieht Dir die Einstellungen an, ändere sie bei Bedarf und klicke [Senden], um den Vorgang abzuschließen." - -#: ../../mod/connedit.php:663 -msgid "Clear/Disable Automatic Permissions" -msgstr "Automatische Berechtigungen abschalten/entfernen" - -#: ../../mod/connedit.php:664 -msgid "Forum Members" -msgstr "Forum Mitglieder" - -#: ../../mod/connedit.php:665 -msgid "Soapbox" -msgstr "Marktschreier" - -#: ../../mod/connedit.php:666 -msgid "Full Sharing (typical social network permissions)" -msgstr "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)" - -#: ../../mod/connedit.php:667 -msgid "Cautious Sharing " -msgstr "Vorsichtiges Teilen" - -#: ../../mod/connedit.php:668 -msgid "Follow Only" -msgstr "Nur folgen" - -#: ../../mod/connedit.php:669 -msgid "Individual Permissions" -msgstr "Individuelle Zugriffsrechte" - -#: ../../mod/connedit.php:670 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Einige Berechtigungen werden von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen." - -#: ../../mod/connedit.php:671 -msgid "Advanced Permissions" -msgstr "Zugriffsrechte für Fortgeschrittene" - -#: ../../mod/connedit.php:672 -msgid "Simple Permissions (select one and submit)" -msgstr "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)" - -#: ../../mod/connedit.php:676 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "%ss Profil besuchen - %s" - -#: ../../mod/connedit.php:677 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freigeben" - -#: ../../mod/connedit.php:678 -msgid "Ignore contact" -msgstr "Kontakt ignorieren" - -#: ../../mod/connedit.php:679 -msgid "Repair URL settings" -msgstr "URL-Einstellungen reparieren" - -#: ../../mod/connedit.php:680 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" - -#: ../../mod/connedit.php:682 -msgid "Delete contact" -msgstr "Kontakt löschen" - -#: ../../mod/connedit.php:686 -msgid "Last update:" -msgstr "Letzte Aktualisierung:" - -#: ../../mod/connedit.php:688 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" - -#: ../../mod/connedit.php:690 -msgid "Update now" -msgstr "Jetzt aktualisieren" - -#: ../../mod/connedit.php:696 -msgid "Currently blocked" -msgstr "Derzeit blockiert" - -#: ../../mod/connedit.php:697 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" - -#: ../../mod/connedit.php:698 -msgid "Currently archived" -msgstr "Derzeit archiviert" - -#: ../../mod/connedit.php:699 -msgid "Currently pending" -msgstr "Derzeit anstehend" - -#: ../../mod/home.php:48 -msgid "Red Matrix - "The Network"" -msgstr "RedMatrix – "Das Netzwerk"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" +#: ../../mod/tagrm.php:133 ../../mod/photos.php:887 +msgid "Remove" +msgstr "Entferne" #: ../../mod/connect.php:56 ../../mod/connect.php:104 msgid "Continue" @@ -4364,31 +4171,72 @@ msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" msgid "Restricted or Premium Channel" msgstr "Eingeschränkter oder Premium-Kanal" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." +#: ../../mod/thing.php:94 +msgid "Thing updated" +msgstr "Sache aktualisiert" -#: ../../mod/editpost.php:42 ../../mod/rpost.php:97 -msgid "Edit post" -msgstr "Bearbeite Beitrag" +#: ../../mod/thing.php:167 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eintrag löschen?" +#: ../../mod/thing.php:171 +msgid "Thing added" +msgstr "Sache hinzugefügt" + +#: ../../mod/thing.php:203 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:254 +msgid "Show Thing" +msgstr "Sache anzeigen" + +#: ../../mod/thing.php:261 +msgid "item not found." +msgstr "Eintrag nicht gefunden" + +#: ../../mod/thing.php:289 +msgid "Edit Thing" +msgstr "Sache bearbeiten" + +#: ../../mod/thing.php:291 ../../mod/thing.php:338 +msgid "Select a profile" +msgstr "Wähle ein Profil" + +#: ../../mod/thing.php:295 ../../mod/thing.php:341 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" + +#: ../../mod/thing.php:295 ../../mod/thing.php:341 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" + +#: ../../mod/thing.php:297 ../../mod/thing.php:343 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" + +#: ../../mod/thing.php:299 ../../mod/thing.php:344 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" + +#: ../../mod/thing.php:301 ../../mod/thing.php:345 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" + +#: ../../mod/thing.php:336 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" #: ../../mod/attach.php:9 msgid "Item not available." msgstr "Element nicht verfügbar." -#: ../../mod/probe.php:23 ../../mod/probe.php:29 +#: ../../mod/probe.php:24 ../../mod/probe.php:30 #, php-format msgid "Fetching URL returns error: %1$s" msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" -#: ../../mod/dav.php:121 -msgid "RedMatrix channel" -msgstr "RedMatrix-Kanal" - #: ../../mod/profile_photo.php:108 msgid "Image uploaded but image cropping failed." msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." @@ -4428,7 +4276,7 @@ msgstr "Wähle ein Profil:" msgid "Upload Profile Photo" msgstr "Lade neues Profilfoto hoch" -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:983 +#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 msgid "or" msgstr "oder" @@ -4465,138 +4313,194 @@ msgstr "Hochladen des Bilds fehlgeschlagen." msgid "Image size reduction [%s] failed." msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." -#: ../../mod/block.php:27 ../../mod/page.php:33 +#: ../../mod/block.php:27 ../../mod/page.php:36 msgid "Invalid item." msgstr "Ungültiges Element." -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:52 msgid "Channel not found." msgstr "Kanal nicht gefunden." -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:102 -#: ../../mod/page.php:81 ../../index.php:241 +#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:79 +#: ../../mod/page.php:89 ../../index.php:241 msgid "Page not found." msgstr "Seite nicht gefunden." -#: ../../mod/network.php:84 -msgid "No such group" -msgstr "Sammlung nicht gefunden" +#: ../../mod/like.php:15 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" -#: ../../mod/network.php:122 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" +#: ../../mod/like.php:20 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." -#: ../../mod/network.php:176 -msgid "Collection is empty" -msgstr "Sammlung ist leer" +#: ../../mod/like.php:21 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." -#: ../../mod/network.php:184 -msgid "Collection: " -msgstr "Sammlung:" +#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 +msgid "Invalid request." +msgstr "Ungültige Anfrage." -#: ../../mod/network.php:197 -msgid "Connection: " -msgstr "Verbindung:" +#: ../../mod/like.php:143 +msgid "thing" +msgstr "Sache" -#: ../../mod/network.php:200 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." +#: ../../mod/like.php:189 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." -#: ../../mod/events.php:87 +#: ../../mod/like.php:231 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." + +#: ../../mod/like.php:401 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s stimmt %2$ss %3$s zu" + +#: ../../mod/like.php:403 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s lehnt %2$ss %3$s ab" + +#: ../../mod/like.php:405 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s enthält sich zu %2$ss %3$s" + +#: ../../mod/like.php:407 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil" + +#: ../../mod/like.php:409 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s nicht teil" + +#: ../../mod/like.php:411 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" + +#: ../../mod/like.php:507 +msgid "Action completed." +msgstr "Aktion durchgeführt." + +#: ../../mod/like.php:508 +msgid "Thank you." +msgstr "Vielen Dank." + +#: ../../mod/events.php:21 +msgid "Calendar entries imported." +msgstr "Kalendereinträge wurden importiert." + +#: ../../mod/events.php:23 +msgid "No calendar entries found." +msgstr "Keine Kalendereinträge gefunden." + +#: ../../mod/events.php:101 msgid "Event can not end before it has started." msgstr "Termin-Ende liegt vor dem Beginn." -#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 +#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 msgid "Unable to generate preview." msgstr "Vorschau konnte nicht erzeugt werden." -#: ../../mod/events.php:96 +#: ../../mod/events.php:110 msgid "Event title and start time are required." msgstr "Titel und Startzeit des Termins sind erforderlich." -#: ../../mod/events.php:114 +#: ../../mod/events.php:128 msgid "Event not found." msgstr "Termin nicht gefunden." -#: ../../mod/events.php:396 +#: ../../mod/events.php:426 msgid "l, F j" msgstr "l, j. F" -#: ../../mod/events.php:418 +#: ../../mod/events.php:448 msgid "Edit event" msgstr "Termin bearbeiten" -#: ../../mod/events.php:419 +#: ../../mod/events.php:449 msgid "Delete event" msgstr "Termin löschen" -#: ../../mod/events.php:473 +#: ../../mod/events.php:483 +msgid "calendar" +msgstr "Kalender" + +#: ../../mod/events.php:504 msgid "Create New Event" msgstr "Neuen Termin erstellen" -#: ../../mod/events.php:474 ../../mod/photos.php:827 +#: ../../mod/events.php:505 ../../mod/photos.php:839 msgid "Previous" msgstr "Voriges" -#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 +#: ../../mod/events.php:506 ../../mod/photos.php:848 ../../mod/setup.php:281 msgid "Next" msgstr "Nächste" -#: ../../mod/events.php:476 +#: ../../mod/events.php:507 msgid "Export" msgstr "Exportieren" -#: ../../mod/events.php:504 +#: ../../mod/events.php:510 +msgid "Import" +msgstr "Import" + +#: ../../mod/events.php:541 msgid "Event removed" msgstr "Termin gelöscht" -#: ../../mod/events.php:507 +#: ../../mod/events.php:544 msgid "Failed to remove event" msgstr "Termin konnte nicht gelöscht werden" -#: ../../mod/events.php:625 +#: ../../mod/events.php:664 msgid "Event details" msgstr "Termin-Details" -#: ../../mod/events.php:626 +#: ../../mod/events.php:665 msgid "Starting date and Title are required." msgstr "Startdatum und Titel sind erforderlich." -#: ../../mod/events.php:628 +#: ../../mod/events.php:667 msgid "Categories (comma-separated list)" msgstr "Kategorien (Kommagetrennte Liste)" -#: ../../mod/events.php:630 +#: ../../mod/events.php:669 msgid "Event Starts:" msgstr "Termin beginnt:" -#: ../../mod/events.php:637 +#: ../../mod/events.php:676 msgid "Finish date/time is not known or not relevant" msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" -#: ../../mod/events.php:639 +#: ../../mod/events.php:678 msgid "Event Finishes:" msgstr "Termin endet:" -#: ../../mod/events.php:641 ../../mod/events.php:642 +#: ../../mod/events.php:680 ../../mod/events.php:681 msgid "Adjust for viewer timezone" msgstr "An die Zeitzone des Betrachters anpassen" -#: ../../mod/events.php:641 +#: ../../mod/events.php:680 msgid "" "Important for events that happen in a particular place. Not practical for " "global holidays." msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." -#: ../../mod/events.php:643 -msgid "Description:" -msgstr "Beschreibung:" - -#: ../../mod/events.php:647 +#: ../../mod/events.php:686 msgid "Title:" msgstr "Titel:" -#: ../../mod/events.php:649 +#: ../../mod/events.php:688 msgid "Share this event" msgstr "Den Termin teilen" @@ -4611,12 +4515,12 @@ msgstr "Öffentliche Server" #: ../../mod/pubsites.php:19 msgid "" -"The listed sites allow public registration into the Red Matrix. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen." +"The listed sites allow public registration for the $Projectname network. All" +" sites in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some sites may require subscription or" +" provide tiered service plans. The provider links may " +"provide additional details." +msgstr "Die hier aufgeführten Server sind öffentlich und erlauben die Registrierung bei $Projectname. Alle Server dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen." #: ../../mod/pubsites.php:25 msgid "Rate this hub" @@ -4650,599 +4554,13 @@ msgstr "Bewerten" msgid "View ratings" msgstr "Bewertungen ansehen" -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Name ist erforderlich" +#: ../../mod/rpost.php:131 ../../mod/editpost.php:158 +msgid "Edit post" +msgstr "Bearbeite Beitrag" -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Schlüssel und Geheimnis werden benötigt" - -#: ../../mod/settings.php:120 -msgid "Diaspora Policy Settings updated." -msgstr "Diaspora-Einstellungen aktualisiert." - -#: ../../mod/settings.php:228 -msgid "Passwords do not match. Password unchanged." -msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." - -#: ../../mod/settings.php:232 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." - -#: ../../mod/settings.php:246 -msgid "Password changed." -msgstr "Kennwort geändert." - -#: ../../mod/settings.php:248 -msgid "Password update failed. Please try again." -msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." - -#: ../../mod/settings.php:262 -msgid "Not valid email." -msgstr "Keine gültige E-Mail Adresse." - -#: ../../mod/settings.php:265 -msgid "Protected email address. Cannot change to that email." -msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." - -#: ../../mod/settings.php:274 -msgid "System failure storing new email. Please try again." -msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." - -#: ../../mod/settings.php:513 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: ../../mod/settings.php:582 ../../mod/settings.php:608 -#: ../../mod/settings.php:644 -msgid "Add application" -msgstr "Anwendung hinzufügen" - -#: ../../mod/settings.php:585 -msgid "Name of application" -msgstr "Name der Anwendung" - -#: ../../mod/settings.php:586 ../../mod/settings.php:612 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:586 ../../mod/settings.php:587 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:588 ../../mod/settings.php:614 -msgid "Redirect" -msgstr "Umleitung" - -#: ../../mod/settings.php:588 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" - -#: ../../mod/settings.php:589 ../../mod/settings.php:615 -msgid "Icon url" -msgstr "Symbol-URL" - -#: ../../mod/settings.php:589 -msgid "Optional" -msgstr "Optional" - -#: ../../mod/settings.php:600 -msgid "You can't edit this application." -msgstr "Diese Anwendung kann nicht bearbeitet werden." - -#: ../../mod/settings.php:643 -msgid "Connected Apps" -msgstr "Verbundene Apps" - -#: ../../mod/settings.php:647 -msgid "Client key starts with" -msgstr "Client Key beginnt mit" - -#: ../../mod/settings.php:648 -msgid "No name" -msgstr "Kein Name" - -#: ../../mod/settings.php:649 -msgid "Remove authorization" -msgstr "Authorisierung aufheben" - -#: ../../mod/settings.php:663 -msgid "No feature settings configured" -msgstr "Keine Funktions-Einstellungen konfiguriert" - -#: ../../mod/settings.php:676 -msgid "Feature Settings" -msgstr "Funktions-Einstellungen" - -#: ../../mod/settings.php:679 -msgid "Diaspora Policy Settings" -msgstr "Diaspora-Einstellungen" - -#: ../../mod/settings.php:680 -msgid "Allow any Diaspora member to comment on your public posts." -msgstr "Allen Diaspora-Mitgliedern erlauben, Deine öffentlichen Beiträge zu kommentieren." - -#: ../../mod/settings.php:681 -msgid "Submit Diaspora Policy Settings" -msgstr "Diaspora-Einstellungen speichern" - -#: ../../mod/settings.php:704 -msgid "Account Settings" -msgstr "Konto-Einstellungen" - -#: ../../mod/settings.php:705 -msgid "Password Settings" -msgstr "Kennwort-Einstellungen" - -#: ../../mod/settings.php:706 -msgid "New Password:" -msgstr "Neues Passwort:" - -#: ../../mod/settings.php:707 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: ../../mod/settings.php:707 -msgid "Leave password fields blank unless changing" -msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" - -#: ../../mod/settings.php:709 ../../mod/settings.php:1045 -msgid "Email Address:" -msgstr "Email Adresse:" - -#: ../../mod/settings.php:710 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Konto entfernen" - -#: ../../mod/settings.php:711 -msgid "Remove this account from this server including all its channels" -msgstr "Lösche dieses Konto einschließlich aller zugehörigen Kanäle von diesem Server" - -#: ../../mod/settings.php:712 ../../mod/settings.php:1126 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden." - -#: ../../mod/settings.php:728 -msgid "Off" -msgstr "Aus" - -#: ../../mod/settings.php:728 -msgid "On" -msgstr "An" - -#: ../../mod/settings.php:735 -msgid "Additional Features" -msgstr "Zusätzliche Funktionen" - -#: ../../mod/settings.php:759 -msgid "Connector Settings" -msgstr "Connector-Einstellungen" - -#: ../../mod/settings.php:798 -msgid "No special theme for mobile devices" -msgstr "Keine spezielle Theme für mobile Geräte" - -#: ../../mod/settings.php:801 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s – (experimentell)" - -#: ../../mod/settings.php:804 ../../mod/admin.php:367 -msgid "mobile" -msgstr "mobil" - -#: ../../mod/settings.php:840 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" - -#: ../../mod/settings.php:846 -msgid "Display Theme:" -msgstr "Anzeige-Theme:" - -#: ../../mod/settings.php:847 -msgid "Mobile Theme:" -msgstr "Mobile Theme:" - -#: ../../mod/settings.php:848 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom auf Mobilgeräten aktivieren" - -#: ../../mod/settings.php:849 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: ../../mod/settings.php:849 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 Sekunden, kein Maximum" - -#: ../../mod/settings.php:850 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" - -#: ../../mod/settings.php:850 -msgid "Maximum of 100 items" -msgstr "Maximum: 100 Beiträge" - -#: ../../mod/settings.php:851 -msgid "Don't show emoticons" -msgstr "Emoticons nicht anzeigen" - -#: ../../mod/settings.php:852 -msgid "Link post titles to source" -msgstr "Beitragstitel zum Originalbeitrag verlinken" - -#: ../../mod/settings.php:853 -msgid "System Page Layout Editor - (advanced)" -msgstr "System-Seitenlayout-Editor (für Experten)" - -#: ../../mod/settings.php:856 -msgid "Use blog/list mode on channel page" -msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" - -#: ../../mod/settings.php:856 ../../mod/settings.php:857 -msgid "(comments displayed separately)" -msgstr "(Kommentare werden separat angezeigt)" - -#: ../../mod/settings.php:857 -msgid "Use blog/list mode on matrix page" -msgstr "Blog-/Listenmodus auf der Matrixseite verwenden" - -#: ../../mod/settings.php:858 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" - -#: ../../mod/settings.php:858 ../../mod/settings.php:859 -msgid "click to expand content exceeding this height" -msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." - -#: ../../mod/settings.php:859 -msgid "Matrix page max height of content (in pixels)" -msgstr "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)" - -#: ../../mod/settings.php:893 -msgid "Nobody except yourself" -msgstr "Niemand außer Dir selbst" - -#: ../../mod/settings.php:894 -msgid "Only those you specifically allow" -msgstr "Nur die, denen Du es explizit erlaubst" - -#: ../../mod/settings.php:895 -msgid "Approved connections" -msgstr "Angenommene Verbindungen" - -#: ../../mod/settings.php:896 -msgid "Any connections" -msgstr "Beliebige Verbindungen" - -#: ../../mod/settings.php:897 -msgid "Anybody on this website" -msgstr "Jeder auf dieser Website" - -#: ../../mod/settings.php:898 -msgid "Anybody in this network" -msgstr "Alle Red-Nutzer" - -#: ../../mod/settings.php:899 -msgid "Anybody authenticated" -msgstr "Jeder authentifizierte" - -#: ../../mod/settings.php:900 -msgid "Anybody on the internet" -msgstr "Jeder im Internet" - -#: ../../mod/settings.php:974 -msgid "Publish your default profile in the network directory" -msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" - -#: ../../mod/settings.php:979 -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:988 -msgid "Your channel address is" -msgstr "Deine Kanal-Adresse lautet" - -#: ../../mod/settings.php:1036 -msgid "Channel Settings" -msgstr "Kanal-Einstellungen" - -#: ../../mod/settings.php:1043 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: ../../mod/settings.php:1046 -msgid "Your Timezone:" -msgstr "Ihre Zeitzone:" - -#: ../../mod/settings.php:1047 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: ../../mod/settings.php:1047 -msgid "Geographical location to display on your posts" -msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" - -#: ../../mod/settings.php:1048 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: ../../mod/settings.php:1050 -msgid "Adult Content" -msgstr "Nicht jugendfreie Inhalte" - -#: ../../mod/settings.php:1050 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" - -#: ../../mod/settings.php:1052 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Datenschutz-Einstellungen" - -#: ../../mod/settings.php:1054 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" - -#: ../../mod/settings.php:1056 -msgid "Hide my online presence" -msgstr "Meine Online-Präsenz verbergen" - -#: ../../mod/settings.php:1056 -msgid "Prevents displaying in your profile that you are online" -msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" - -#: ../../mod/settings.php:1058 -msgid "Simple Privacy Settings:" -msgstr "Einfache Privatsphäre-Einstellungen" - -#: ../../mod/settings.php:1059 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" - -#: ../../mod/settings.php:1060 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" - -#: ../../mod/settings.php:1061 -msgid "Private - default private, never open or public" -msgstr "Privat – Standard privat, nie offen oder öffentlich" - -#: ../../mod/settings.php:1062 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockiert – Alle standardmäßig blockiert" - -#: ../../mod/settings.php:1064 -msgid "Allow others to tag your posts" -msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" - -#: ../../mod/settings.php:1064 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" - -#: ../../mod/settings.php:1066 -msgid "Advanced Privacy Settings" -msgstr "Fortgeschrittene Privatsphäre-Einstellungen" - -#: ../../mod/settings.php:1068 -msgid "Expire other channel content after this many days" -msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" - -#: ../../mod/settings.php:1068 -msgid "0 or blank prevents expiration" -msgstr "0 oder kein Inhalt verhindern das Verfallen" - -#: ../../mod/settings.php:1069 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Kontaktanfragen pro Tag:" - -#: ../../mod/settings.php:1069 -msgid "May reduce spam activity" -msgstr "Kann die Spam-Aktivität verringern" - -#: ../../mod/settings.php:1070 -msgid "Default Post Permissions" -msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte" - -#: ../../mod/settings.php:1071 ../../mod/mitem.php:161 ../../mod/mitem.php:204 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" - -#: ../../mod/settings.php:1075 -msgid "Channel permissions category:" -msgstr "Zugriffsrechte-Kategorie des Kanals:" - -#: ../../mod/settings.php:1081 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" - -#: ../../mod/settings.php:1081 -msgid "Useful to reduce spamming" -msgstr "Nützlich, um Spam zu verringern" - -#: ../../mod/settings.php:1084 -msgid "Notification Settings" -msgstr "Benachrichtigungs-Einstellungen" - -#: ../../mod/settings.php:1085 -msgid "By default post a status message when:" -msgstr "Sende standardmäßig Status-Nachrichten, wenn:" - -#: ../../mod/settings.php:1086 -msgid "accepting a friend request" -msgstr "Du eine Verbindungsanfrage annimmst" - -#: ../../mod/settings.php:1087 -msgid "joining a forum/community" -msgstr "Du einem Forum beitrittst" - -#: ../../mod/settings.php:1088 -msgid "making an interesting profile change" -msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" - -#: ../../mod/settings.php:1089 -msgid "Send a notification email when:" -msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" - -#: ../../mod/settings.php:1090 -msgid "You receive a connection request" -msgstr "Du eine Verbindungsanfrage erhältst" - -#: ../../mod/settings.php:1091 -msgid "Your connections are confirmed" -msgstr "Eine Verbindung bestätigt wurde" - -#: ../../mod/settings.php:1092 -msgid "Someone writes on your profile wall" -msgstr "Jemand auf Deine Pinnwand schreibt" - -#: ../../mod/settings.php:1093 -msgid "Someone writes a followup comment" -msgstr "Jemand einen Beitrag kommentiert" - -#: ../../mod/settings.php:1094 -msgid "You receive a private message" -msgstr "Du eine private Nachricht erhältst" - -#: ../../mod/settings.php:1095 -msgid "You receive a friend suggestion" -msgstr "Du einen Kontaktvorschlag erhältst" - -#: ../../mod/settings.php:1096 -msgid "You are tagged in a post" -msgstr "Du in einem Beitrag erwähnt wurdest" - -#: ../../mod/settings.php:1097 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" - -#: ../../mod/settings.php:1100 -msgid "Show visual notifications including:" -msgstr "Visuelle Benachrichtigungen anzeigen für:" - -#: ../../mod/settings.php:1102 -msgid "Unseen matrix activity" -msgstr "Ungesehene Matrix-Aktivität" - -#: ../../mod/settings.php:1103 -msgid "Unseen channel activity" -msgstr "Ungesehene Kanal-Aktivität" - -#: ../../mod/settings.php:1104 -msgid "Unseen private messages" -msgstr "Ungelesene persönliche Nachrichten" - -#: ../../mod/settings.php:1104 ../../mod/settings.php:1109 -#: ../../mod/settings.php:1110 ../../mod/settings.php:1111 -msgid "Recommended" -msgstr "Empfohlen" - -#: ../../mod/settings.php:1105 -msgid "Upcoming events" -msgstr "Baldige Termine" - -#: ../../mod/settings.php:1106 -msgid "Events today" -msgstr "Heutige Termine" - -#: ../../mod/settings.php:1107 -msgid "Upcoming birthdays" -msgstr "Baldige Geburtstage" - -#: ../../mod/settings.php:1107 -msgid "Not available in all themes" -msgstr "Nicht in allen Themes verfügbar" - -#: ../../mod/settings.php:1108 -msgid "System (personal) notifications" -msgstr "System – (persönliche) Benachrichtigungen" - -#: ../../mod/settings.php:1109 -msgid "System info messages" -msgstr "System – Info-Nachrichten" - -#: ../../mod/settings.php:1110 -msgid "System critical alerts" -msgstr "System – kritische Warnungen" - -#: ../../mod/settings.php:1111 -msgid "New connections" -msgstr "Neue Verbindungen" - -#: ../../mod/settings.php:1112 -msgid "System Registrations" -msgstr "System – Registrierungen" - -#: ../../mod/settings.php:1113 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an" - -#: ../../mod/settings.php:1115 -msgid "Notify me of events this many days in advance" -msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" - -#: ../../mod/settings.php:1115 -msgid "Must be greater than 0" -msgstr "Muss größer als 0 sein" - -#: ../../mod/settings.php:1117 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Account- und Seitenart-Einstellungen" - -#: ../../mod/settings.php:1118 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" - -#: ../../mod/settings.php:1121 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" - -#: ../../mod/settings.php:1122 -msgid "Miscellaneous Settings" -msgstr "Sonstige Einstellungen" - -#: ../../mod/settings.php:1124 -msgid "Personal menu to display in your channel pages" -msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" - -#: ../../mod/settings.php:1125 -msgid "Remove this channel" -msgstr "Diesen Kanal löschen" - -#: ../../mod/cloud.php:120 -msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" -msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++" - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Schlagwort entfernt" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" - -#: ../../mod/tagrm.php:133 ../../mod/delegate.php:130 ../../mod/photos.php:873 -msgid "Remove" -msgstr "Entferne" +#: ../../mod/dav.php:121 +msgid "$Projectname channel" +msgstr "$Projectname-Kanal" #: ../../mod/group.php:20 msgid "Collection created." @@ -5280,465 +4598,134 @@ msgstr "Löschen der Sammlung nicht möglich." msgid "Collection Editor" msgstr "Sammlung-Editor" -#: ../../mod/group.php:196 +#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 msgid "Members" msgstr "Mitglieder" -#: ../../mod/group.php:198 +#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 msgid "All Connected Channels" msgstr "Alle verbundenen Kanäle" -#: ../../mod/group.php:233 +#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 msgid "Click on a channel to add or remove." msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../mod/siteinfo.php:93 +#: ../../mod/siteinfo.php:112 #, php-format msgid "Version %s" msgstr "Version %s" -#: ../../mod/siteinfo.php:114 +#: ../../mod/siteinfo.php:133 msgid "Installed plugins/addons/apps:" msgstr "Installierte Plugins/Addons/Apps" -#: ../../mod/siteinfo.php:127 +#: ../../mod/siteinfo.php:146 msgid "No installed plugins/addons/apps" msgstr "Keine installierten Plugins/Addons/Apps" -#: ../../mod/siteinfo.php:136 -msgid "Red" -msgstr "Red" +#: ../../mod/siteinfo.php:155 ../../mod/home.php:58 ../../mod/home.php:64 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../mod/siteinfo.php:137 +#: ../../mod/siteinfo.php:156 msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " +"This is a hub of $Projectname - a global cooperative network of " "decentralized privacy enhanced websites." -msgstr "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." +msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." -#: ../../mod/siteinfo.php:139 +#: ../../mod/siteinfo.php:158 msgid "Tag: " msgstr "Schlagwort: " -#: ../../mod/siteinfo.php:141 +#: ../../mod/siteinfo.php:160 msgid "Last background fetch: " msgstr "Letzter Hintergrundabruf:" -#: ../../mod/siteinfo.php:144 +#: ../../mod/siteinfo.php:163 msgid "Running at web location" msgstr "Erreichbar unter der Web-Adresse" -#: ../../mod/siteinfo.php:145 +#: ../../mod/siteinfo.php:164 msgid "" -"Please visit RedMatrix.me to learn more" -" about the Red Matrix." -msgstr "Bitte besuchen Sie RedMatrix.me, um mehr über RedMatrix zu erfahren." +"Please visit redmatrix.me to learn more" +" about $Projectname." +msgstr "Bitte besuchen Sie redmatrix.me, um mehr über $Projectname zu erfahren." -#: ../../mod/siteinfo.php:146 +#: ../../mod/siteinfo.php:165 msgid "Bug reports and issues: please visit" msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../mod/siteinfo.php:149 +#: ../../mod/siteinfo.php:167 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" + +#: ../../mod/siteinfo.php:168 msgid "" "Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " "com" msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" -#: ../../mod/siteinfo.php:151 +#: ../../mod/siteinfo.php:170 msgid "Site Administrators" msgstr "Administratoren" -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Hilfe:" +#: ../../mod/item.php:174 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" -msgstr "Nicht gefunden" +#: ../../mod/item.php:440 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." -#: ../../mod/setup.php:166 -msgid "Red Matrix Server - Setup" -msgstr "Red Matrix Server - Installation" +#: ../../mod/item.php:480 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." -#: ../../mod/setup.php:172 -msgid "Could not connect to database." -msgstr "Kann nicht mit der Datenbank verbinden." +#: ../../mod/item.php:914 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." +#: ../../mod/item.php:1146 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." -#: ../../mod/setup.php:183 -msgid "Could not create table." -msgstr "Kann Tabelle nicht erstellen." - -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." -msgstr "Die Datenbank Deines Hubs wurde installiert." - -#: ../../mod/setup.php:194 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." - -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Lies die Datei \"install/INSTALL.txt\"." - -#: ../../mod/setup.php:261 -msgid "System check" -msgstr "Systemprüfung" - -#: ../../mod/setup.php:266 -msgid "Check again" -msgstr "Bitte nochmal prüfen" - -#: ../../mod/setup.php:289 -msgid "Database connection" -msgstr "Datenbank Verbindung" - -#: ../../mod/setup.php:290 -msgid "" -"In order to install Red Matrix we need to know how to connect to your " -"database." -msgstr "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." - -#: ../../mod/setup.php:291 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." - -#: ../../mod/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." - -#: ../../mod/setup.php:296 -msgid "Database Server Name" -msgstr "Datenbank-Servername" - -#: ../../mod/setup.php:296 -msgid "Default is localhost" -msgstr "Standard ist localhost" - -#: ../../mod/setup.php:297 -msgid "Database Port" -msgstr "Datenbank-Port" - -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" -msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" - -#: ../../mod/setup.php:298 -msgid "Database Login Name" -msgstr "Datenbank-Benutzername" - -#: ../../mod/setup.php:299 -msgid "Database Login Password" -msgstr "Datenbank-Kennwort" - -#: ../../mod/setup.php:300 -msgid "Database Name" -msgstr "Datenbank-Name" - -#: ../../mod/setup.php:301 -msgid "Database Type" -msgstr "Datenbanktyp" - -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" -msgstr "E-Mail Adresse des Seiten-Administrators" - -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." - -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" -msgstr "Server-URL" - -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." -msgstr "Nutze wenn möglich eine SSL-URL (https)." - -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" -msgstr "Standard-Zeitzone für Deinen Server" - -#: ../../mod/setup.php:335 -msgid "Site settings" -msgstr "Seiteneinstellungen" - -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." - -#: ../../mod/setup.php:396 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." - -#: ../../mod/setup.php:400 -msgid "PHP executable path" -msgstr "PHP Pfad zu ausführbarer Datei" - -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." - -#: ../../mod/setup.php:405 -msgid "Command line PHP" -msgstr "PHP Befehlszeile" - -#: ../../mod/setup.php:414 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." - -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." -msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." - -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." - -#: ../../mod/setup.php:439 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." - -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" -msgstr "Verschlüsselungsschlüssel generieren" - -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "libCurl-PHP-Modul" - -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "GD-Grafik-PHP-Modul" - -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" -msgstr "OpenSSL-PHP-Modul" - -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" -msgstr "mysqli oder postgres PHP-Modul" - -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" -msgstr "mb_string-PHP-Modul" - -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" -msgstr "mcrypt-PHP-Modul" - -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" -msgstr "Apache-mod_rewrite-Modul" - -#: ../../mod/setup.php:458 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" - -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:476 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." - -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." - -#: ../../mod/setup.php:508 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." - -#: ../../mod/setup.php:509 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." - -#: ../../mod/setup.php:510 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst." - -#: ../../mod/setup.php:511 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." - -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php ist beschreibbar" - -#: ../../mod/setup.php:524 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." - -#: ../../mod/setup.php:525 +#: ../../mod/item.php:1153 #, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses." +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." -#: ../../mod/setup.php:526 ../../mod/setup.php:544 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." - -#: ../../mod/setup.php:527 +#: ../../mod/item.php:1160 #, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." -#: ../../mod/setup.php:530 -#, php-format -msgid "%s is writable" -msgstr "%s ist beschreibbar" +#: ../../mod/network.php:91 +msgid "No such group" +msgstr "Sammlung nicht gefunden" -#: ../../mod/setup.php:543 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" +#: ../../mod/network.php:129 +msgid "No such channel" +msgstr "Kanal nicht gefunden" -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "store ist schreibbar" +#: ../../mod/network.php:143 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" -#: ../../mod/setup.php:577 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." +#: ../../mod/network.php:198 +msgid "Collection is empty" +msgstr "Sammlung ist leer" -#: ../../mod/setup.php:578 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." +#: ../../mod/network.php:207 +msgid "Collection: " +msgstr "Sammlung:" -#: ../../mod/setup.php:579 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." +#: ../../mod/network.php:226 +msgid "Connection: " +msgstr "Verbindung:" -#: ../../mod/setup.php:580 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." - -#: ../../mod/setup.php:581 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." - -#: ../../mod/setup.php:582 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." - -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" -msgstr "SSL Zertifikatverifizierung" - -#: ../../mod/setup.php:590 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" - -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" -msgstr "Url rewrite funktioniert" - -#: ../../mod/setup.php:602 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." - -#: ../../mod/setup.php:625 -msgid "Errors encountered creating database tables." -msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." - -#: ../../mod/setup.php:660 -msgid "

What next

" -msgstr "

Was als Nächstes

" - -#: ../../mod/setup.php:661 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." +#: ../../mod/network.php:233 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." #: ../../mod/common.php:10 msgid "No channel." @@ -5752,203 +4739,292 @@ msgstr "Gemeinsame Verbindungen" msgid "No connections in common." msgstr "Keine gemeinsamen Verbindungen." -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Diese Website ist kein Verzeichnis-Server" -#: ../../mod/connections.php:192 ../../mod/connections.php:293 +#: ../../mod/connections.php:52 ../../mod/connections.php:153 msgid "Blocked" msgstr "Blockiert" -#: ../../mod/connections.php:197 ../../mod/connections.php:300 +#: ../../mod/connections.php:57 ../../mod/connections.php:160 msgid "Ignored" msgstr "Ignoriert" -#: ../../mod/connections.php:202 ../../mod/connections.php:314 +#: ../../mod/connections.php:62 ../../mod/connections.php:174 msgid "Hidden" msgstr "Versteckt" -#: ../../mod/connections.php:207 ../../mod/connections.php:307 +#: ../../mod/connections.php:67 ../../mod/connections.php:167 msgid "Archived" msgstr "Archiviert" -#: ../../mod/connections.php:231 ../../mod/connections.php:246 -msgid "All" -msgstr "Alle" - -#: ../../mod/connections.php:271 +#: ../../mod/connections.php:131 msgid "Suggest new connections" msgstr "Neue Verbindungen vorschlagen" -#: ../../mod/connections.php:274 +#: ../../mod/connections.php:134 msgid "New Connections" msgstr "Neue Verbindungen" -#: ../../mod/connections.php:277 +#: ../../mod/connections.php:137 msgid "Show pending (new) connections" msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 +#: ../../mod/connections.php:140 ../../mod/profperm.php:139 msgid "All Connections" msgstr "Alle Verbindungen" -#: ../../mod/connections.php:283 +#: ../../mod/connections.php:143 msgid "Show all connections" msgstr "Alle Verbindungen anzeigen" -#: ../../mod/connections.php:286 +#: ../../mod/connections.php:146 msgid "Unblocked" msgstr "Freigegeben" -#: ../../mod/connections.php:289 +#: ../../mod/connections.php:149 msgid "Only show unblocked connections" msgstr "Nur freigegebene Verbindungen anzeigen" -#: ../../mod/connections.php:296 +#: ../../mod/connections.php:156 msgid "Only show blocked connections" msgstr "Nur blockierte Verbindungen anzeigen" -#: ../../mod/connections.php:303 +#: ../../mod/connections.php:163 msgid "Only show ignored connections" msgstr "Nur ignorierte Verbindungen anzeigen" -#: ../../mod/connections.php:310 +#: ../../mod/connections.php:170 msgid "Only show archived connections" msgstr "Nur archivierte Verbindungen anzeigen" -#: ../../mod/connections.php:317 +#: ../../mod/connections.php:177 msgid "Only show hidden connections" msgstr "Nur versteckte Verbindungen anzeigen" -#: ../../mod/connections.php:372 +#: ../../mod/connections.php:232 #, php-format msgid "%1$s [%2$s]" msgstr "%1$s [%2$s]" -#: ../../mod/connections.php:373 +#: ../../mod/connections.php:233 msgid "Edit connection" msgstr "Verbindung bearbeiten" -#: ../../mod/connections.php:411 +#: ../../mod/connections.php:271 msgid "Search your connections" msgstr "Verbindungen durchsuchen" -#: ../../mod/connections.php:412 +#: ../../mod/connections.php:272 msgid "Finding: " msgstr "Ergebnisse:" -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "Webseite" +#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 +msgid "Block Name" +msgstr "Datenblockname" -#: ../../mod/impel.php:38 -msgid "block" -msgstr "Block" +#: ../../mod/blocks.php:149 +msgid "Block Title" +msgstr "Titel des Blocks" -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "Layout" +#: ../../mod/editpost.php:20 ../../mod/editlayout.php:76 +#: ../../mod/editwebpage.php:77 ../../mod/editblock.php:78 +#: ../../mod/editblock.php:94 +msgid "Item not found" +msgstr "Element nicht gefunden" -#: ../../mod/impel.php:117 +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." + +#: ../../mod/editpost.php:48 +msgid "Delete item?" +msgstr "Eintrag löschen?" + +#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 +#: ../../mod/editwebpage.php:187 ../../mod/editblock.php:144 +msgid "Insert YouTube video" +msgstr "YouTube-Video einfügen" + +#: ../../mod/editpost.php:116 ../../mod/editlayout.php:143 +#: ../../mod/editwebpage.php:188 ../../mod/editblock.php:145 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis [.ogg]-Video einfügen" + +#: ../../mod/editpost.php:117 ../../mod/editlayout.php:144 +#: ../../mod/editwebpage.php:189 ../../mod/editblock.php:146 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis [.ogg]-Audio einfügen" + +#: ../../mod/cloud.php:120 +msgid "$Projectname - Guests: Username: {your email address}, Password: +++" +msgstr "$Projectname-Gäste: Benutzername: {Ihre E-Mail-Adresse}, Passwort: +++" + +#: ../../mod/photos.php:78 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." + +#: ../../mod/photos.php:98 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../mod/photos.php:120 ../../mod/photos.php:655 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../mod/photos.php:160 ../../mod/photos.php:942 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../mod/photos.php:452 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" + +#: ../../mod/photos.php:496 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." + +#: ../../mod/photos.php:535 #, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." -#: ../../mod/tagger.php:96 +#: ../../mod/photos.php:538 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." -#: ../../mod/item.php:165 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." +#: ../../mod/photos.php:562 +msgid "Upload Photos" +msgstr "Fotos hochladen" -#: ../../mod/item.php:424 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." +#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" -#: ../../mod/item.php:466 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." +#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" -#: ../../mod/item.php:865 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." +#: ../../mod/photos.php:568 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" -#: ../../mod/item.php:1083 +#: ../../mod/photos.php:596 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" + +#: ../../mod/photos.php:637 ../../mod/photos.php:1169 +#: ../../mod/photos.php:1185 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" + +#: ../../mod/photos.php:661 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" + +#: ../../mod/photos.php:663 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" + +#: ../../mod/photos.php:687 ../../mod/photos.php:1217 +msgid "View Photo" +msgstr "Foto ansehen" + +#: ../../mod/photos.php:716 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../mod/photos.php:761 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." + +#: ../../mod/photos.php:763 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../mod/photos.php:821 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" + +#: ../../mod/photos.php:828 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:843 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" + +#: ../../mod/photos.php:921 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../mod/photos.php:923 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" + +#: ../../mod/photos.php:924 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" + +#: ../../mod/photos.php:931 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../mod/photos.php:933 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" + +#: ../../mod/photos.php:937 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" + +#: ../../mod/photos.php:940 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" + +#: ../../mod/photos.php:1132 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" + +#: ../../mod/photos.php:1137 +msgid "Map" +msgstr "Karte" + +#: ../../mod/photos.php:1223 +msgid "View Album" +msgstr "Album ansehen" + +#: ../../mod/photos.php:1246 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../mod/search.php:206 #, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." +msgid "Items tagged with: %s" +msgstr "Beiträge mit Schlagwort: %s" -#: ../../mod/item.php:1089 +#: ../../mod/search.php:208 #, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" -#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:82 -#: ../../mod/directory.php:22 ../../mod/viewconnections.php:17 -#: ../../mod/photos.php:429 -msgid "Public access denied." -msgstr "Öffentlicher Zugang verweigert." +#: ../../mod/match.php:22 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Sache aktualisiert" +#: ../../mod/match.php:31 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" +#: ../../mod/match.php:63 +msgid "is interested in:" +msgstr "interessiert sich für:" -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Sache hinzugefügt" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Sache anzeigen" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "Eintrag nicht gefunden" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Sache bearbeiten" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Wähle ein Profil" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" - -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" +#: ../../mod/match.php:70 +msgid "No matches" +msgstr "Keine Übereinstimmungen" #: ../../mod/chatsvc.php:111 msgid "Away" @@ -5958,9 +5034,25 @@ msgstr "Abwesend" msgid "Online" msgstr "Online" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal hinzugefügt." +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Lesezeichenordner wählen" + +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Lesezeichen speichern" + +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL des Lesezeichens" + +#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +msgid "Description" +msgstr "Beschreibung" + +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" #: ../../mod/notify.php:53 ../../mod/notifications.php:94 msgid "No more system notifications." @@ -5980,7 +5072,7 @@ msgstr "RSS" #: ../../mod/pdledit.php:13 msgid "Layout updated." -msgstr "Layout aktualisiert." +msgstr "Gestaltung aktualisiert." #: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 msgid "Edit System Page Description" @@ -5988,67 +5080,15 @@ msgstr "Systemseitenbeschreibung bearbeiten" #: ../../mod/pdledit.php:48 msgid "Layout not found." -msgstr "Layout nicht gefunden." +msgstr "Gestaltung nicht gefunden." #: ../../mod/pdledit.php:54 msgid "Module Name:" msgstr "Modulname:" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 +#: ../../mod/pdledit.php:55 msgid "Layout Help" -msgstr "Layout-Hilfe" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installiert." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Fehlerhafte App." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Code einbetten" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bearbeiten" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App erstellen" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Name der App" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" - -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Beschreibung" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL zum Icon" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versions-ID" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Preis der App" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" +msgstr "Gestaltungshilfe" #: ../../mod/filer.php:49 msgid "- select -" @@ -6059,76 +5099,76 @@ msgstr "– auswählen –" msgid "Your service plan only allows %d channels." msgstr "Dein Vertrag erlaubt nur %d Kanäle." -#: ../../mod/import.php:51 +#: ../../mod/import.php:60 msgid "Nothing to import." msgstr "Nichts zu importieren." -#: ../../mod/import.php:75 +#: ../../mod/import.php:84 msgid "Unable to download data from old server" msgstr "Daten können vom alten Server nicht heruntergeladen werden" -#: ../../mod/import.php:81 +#: ../../mod/import.php:90 msgid "Imported file is empty." msgstr "Die importierte Datei ist leer." -#: ../../mod/import.php:106 +#: ../../mod/import.php:110 +msgid "The data provided is not compatible with this project." +msgstr "Die bereitgestellten Daten sind mit diesem Projekt nicht kompatibel." + +#: ../../mod/import.php:115 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." + +#: ../../mod/import.php:135 msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." - -#: ../../mod/import.php:147 +#: ../../mod/import.php:176 msgid "Channel clone failed. Import failed." msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." -#: ../../mod/import.php:157 +#: ../../mod/import.php:186 msgid "Cloned channel not found. Import failed." msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import abgeschlossen." - -#: ../../mod/import.php:487 +#: ../../mod/import.php:574 msgid "You must be logged in to use this feature." msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." -#: ../../mod/import.php:492 +#: ../../mod/import.php:579 msgid "Import Channel" msgstr "Kanal importieren" -#: ../../mod/import.php:493 +#: ../../mod/import.php:580 msgid "" "Use this form to import an existing channel from a different server/hub. You" " may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich." +"or provide an export file." +msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen RadMatrix-Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." -#: ../../mod/import.php:494 +#: ../../mod/import.php:581 msgid "File to Upload" msgstr "Hochzuladende Datei:" -#: ../../mod/import.php:495 +#: ../../mod/import.php:582 msgid "Or provide the old server/hub details" msgstr "Oder gib die Details Deines bisherigen Red-Servers ein" -#: ../../mod/import.php:496 +#: ../../mod/import.php:583 msgid "Your old identity address (xyz@example.com)" msgstr "Bisherige Kanal-Adresse (xyz@example.com)" -#: ../../mod/import.php:497 +#: ../../mod/import.php:584 msgid "Your old login email address" msgstr "Deine alte Login-E-Mail-Adresse" -#: ../../mod/import.php:498 +#: ../../mod/import.php:585 msgid "Your old login password" msgstr "Dein altes Passwort" -#: ../../mod/import.php:499 +#: ../../mod/import.php:586 msgid "" "For either option, please choose whether to make this hub your new primary " "address, or whether your old location should continue this role. You will be" @@ -6136,25 +5176,38 @@ msgid "" "primary location for files, photos, and media." msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." -#: ../../mod/import.php:500 +#: ../../mod/import.php:587 msgid "Make this hub my primary location" msgstr "Dieser Red-Server ist mein primärer Server." -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Existierende Beiträge importieren, falls möglich" +#: ../../mod/import.php:588 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Layout bearbeiten" +#: ../../mod/import.php:589 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." -#: ../../mod/editlayout.php:117 +#: ../../mod/editlayout.php:111 msgid "Delete layout?" -msgstr "Layout löschen?" +msgstr "Gestaltung löschen?" -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Layout löschen" +#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 +msgid "Layout Description (Optional)" +msgstr "Gestaltungsbeschreibung (Optional)" + +#: ../../mod/editlayout.php:160 ../../mod/layouts.php:121 +#: ../../mod/layouts.php:179 +msgid "Layout Name" +msgstr "Gestaltungsname" + +#: ../../mod/editlayout.php:177 +msgid "Edit Layout" +msgstr "Gestaltung bearbeiten" #: ../../mod/chat.php:19 ../../mod/channel.php:25 msgid "You must be logged in to see this page." @@ -6197,21 +5250,141 @@ msgstr "Name des Chatraums" msgid "%1$s's Chatrooms" msgstr "%1$ss Chaträume" -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Webseite bearbeiten" +#: ../../mod/mitem.php:24 ../../mod/menu.php:138 +msgid "Menu not found." +msgstr "Menü nicht gefunden" -#: ../../mod/editwebpage.php:150 +#: ../../mod/mitem.php:48 +msgid "Unable to create element." +msgstr "Element konnte nicht erstellt werden." + +#: ../../mod/mitem.php:72 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." + +#: ../../mod/mitem.php:88 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." + +#: ../../mod/mitem.php:154 ../../mod/mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" + +#: ../../mod/mitem.php:155 ../../mod/mitem.php:227 ../../mod/settings.php:1083 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" + +#: ../../mod/mitem.php:157 ../../mod/mitem.php:173 +msgid "Link Name" +msgstr "Name des Links" + +#: ../../mod/mitem.php:158 ../../mod/mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" + +#: ../../mod/mitem.php:158 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." + +#: ../../mod/mitem.php:159 ../../mod/mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" + +#: ../../mod/mitem.php:160 ../../mod/mitem.php:233 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" + +#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" + +#: ../../mod/mitem.php:162 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" + +#: ../../mod/mitem.php:163 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" + +#: ../../mod/mitem.php:171 +msgid "Menu:" +msgstr "Menü:" + +#: ../../mod/mitem.php:174 +msgid "Link Target" +msgstr "Ziel des Links" + +#: ../../mod/mitem.php:177 +msgid "Edit menu" +msgstr "Menü bearbeiten" + +#: ../../mod/mitem.php:180 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" + +#: ../../mod/mitem.php:181 +msgid "Drop element" +msgstr "Bestandteil löschen" + +#: ../../mod/mitem.php:182 +msgid "New element" +msgstr "Neues Bestandteil" + +#: ../../mod/mitem.php:183 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" + +#: ../../mod/mitem.php:184 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" + +#: ../../mod/mitem.php:185 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" + +#: ../../mod/mitem.php:186 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" + +#: ../../mod/mitem.php:203 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." + +#: ../../mod/mitem.php:215 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." + +#: ../../mod/mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." + +#: ../../mod/mitem.php:224 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" + +#: ../../mod/mitem.php:230 +msgid "Link text" +msgstr "Link Text" + +#: ../../mod/editwebpage.php:152 msgid "Delete webpage?" msgstr "Webseite löschen?" -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Webseite löschen" +#: ../../mod/editwebpage.php:173 +msgid "Page link title" +msgstr "Seitentitel-Link" -#: ../../mod/dirsearch.php:20 ../../mod/regdir.php:22 -msgid "This site is not a directory server" -msgstr "Diese Website ist kein Verzeichnis-Server" +#: ../../mod/editwebpage.php:224 +msgid "Edit Webpage" +msgstr "Webseite bearbeiten" + +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "Dieser Verzeichnis-Server benötigt ein Zugangstoken" #: ../../mod/lostpass.php:15 msgid "No valid account found." @@ -6221,7 +5394,7 @@ msgstr "Kein gültiges Konto gefunden." msgid "Password reset request issued. Check your email." msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 #, php-format msgid "Site Member (%s)" msgstr "Nutzer (%s)" @@ -6237,52 +5410,52 @@ msgid "" "Password reset failed." msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." -#: ../../mod/lostpass.php:85 ../../boot.php:1560 +#: ../../mod/lostpass.php:86 ../../boot.php:1558 msgid "Password Reset" msgstr "Zurücksetzen des Kennworts" -#: ../../mod/lostpass.php:86 +#: ../../mod/lostpass.php:87 msgid "Your password has been reset as requested." msgstr "Dein Passwort wurde wie angefordert neu erstellt." -#: ../../mod/lostpass.php:87 +#: ../../mod/lostpass.php:88 msgid "Your new password is" msgstr "Dein neues Passwort lautet" -#: ../../mod/lostpass.php:88 +#: ../../mod/lostpass.php:89 msgid "Save or copy your new password - and then" msgstr "Speichere oder kopiere Dein neues Passwort – und dann" -#: ../../mod/lostpass.php:89 +#: ../../mod/lostpass.php:90 msgid "click here to login" msgstr "Klicke hier, um dich anzumelden" -#: ../../mod/lostpass.php:90 +#: ../../mod/lostpass.php:91 msgid "" "Your password may be changed from the Settings page after " "successful login." -msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." +msgstr "Ihr Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." -#: ../../mod/lostpass.php:107 +#: ../../mod/lostpass.php:108 #, php-format msgid "Your password has changed at %s" msgstr "Auf %s wurde Dein Passwort geändert" -#: ../../mod/lostpass.php:122 +#: ../../mod/lostpass.php:123 msgid "Forgot your Password?" msgstr "Kennwort vergessen?" -#: ../../mod/lostpass.php:123 +#: ../../mod/lostpass.php:124 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." -#: ../../mod/lostpass.php:124 +#: ../../mod/lostpass.php:125 msgid "Email Address" msgstr "E-Mail Adresse" -#: ../../mod/lostpass.php:125 +#: ../../mod/lostpass.php:126 msgid "Reset" msgstr "Zurücksetzen" @@ -6293,7 +5466,23 @@ msgstr "Webseite:" #: ../../mod/rate.php:160 #, php-format msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" +msgstr "Entfernter Kanal [%s] (auf diesem Server noch unbekannt)" + +#: ../../mod/rate.php:161 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" + +#: ../../mod/rate.php:162 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" + +#: ../../mod/editblock.php:117 +msgid "Delete block?" +msgstr "Block löschen?" + +#: ../../mod/editblock.php:179 +msgid "Edit Block" +msgstr "Block bearbeiten" #: ../../mod/invite.php:25 msgid "Total invitation limit exceeded." @@ -6341,20 +5530,21 @@ msgid "Your message:" msgstr "Deine Nachricht:" #: ../../mod/invite.php:132 -msgid "Please join my community on RedMatrix." -msgstr "Schließe Dich uns in der RedMatrix an!" +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" #: ../../mod/invite.php:134 msgid "You will need to supply this invitation code: " msgstr "Gib folgenden Einladungs-Code ein:" #: ../../mod/invite.php:135 -msgid "1. Register at any RedMatrix location (they are all inter-connected)" -msgstr "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)" +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Server (sie sind alle miteinander verbunden)" #: ../../mod/invite.php:137 -msgid "2. Enter my RedMatrix network address into the site searchbar." -msgstr "2. Gib meine RedMatrix-Adresse im Suchfeld ein." +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." #: ../../mod/invite.php:138 msgid "or visit " @@ -6420,7 +5610,7 @@ msgstr "Neue Quelle" msgid "" "Import all or selected content from the following channel into this channel " "and distribute it according to your channel settings." -msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." +msgstr "Importieren Sie alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteilen Sie sie gemäß der Ihrer Kanaleinstellungen." #: ../../mod/sources.php:102 ../../mod/sources.php:134 msgid "Only import content with these words (one per line)" @@ -6455,145 +5645,137 @@ msgstr "Quelle gelöscht" msgid "Unable to remove source." msgstr "Konnte die Quelle nicht löschen." -#: ../../mod/menu.php:31 -msgid "Menu updated." -msgstr "Menü aktualisiert." - -#: ../../mod/menu.php:35 +#: ../../mod/menu.php:45 msgid "Unable to update menu." msgstr "Kann Menü nicht aktualisieren." -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Menü erstellt." - -#: ../../mod/menu.php:44 +#: ../../mod/menu.php:56 msgid "Unable to create menu." msgstr "Kann Menü nicht erstellen." -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Menüs verwalten" +#: ../../mod/menu.php:92 ../../mod/menu.php:104 +msgid "Menu Name" +msgstr "Name des Menüs" -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Löschen" +#: ../../mod/menu.php:92 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" +#: ../../mod/menu.php:93 ../../mod/menu.php:105 +msgid "Menu Title" +msgstr "Menütitel" -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Neues Menü erstellen" +#: ../../mod/menu.php:93 +msgid "Visible on webpage - leave empty for no title" +msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" -#: ../../mod/menu.php:83 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" +#: ../../mod/menu.php:94 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" - -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" - -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Neues Menü" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Menü Name" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" - -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Menü Titel" - -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 +#: ../../mod/menu.php:94 ../../mod/menu.php:151 msgid "Menu may be used to store saved bookmarks" msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" -#: ../../mod/menu.php:108 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menü nicht gefunden" +#: ../../mod/menu.php:95 ../../mod/menu.php:153 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Menü gelöscht." +#: ../../mod/menu.php:107 +msgid "Drop" +msgstr "Löschen" -#: ../../mod/menu.php:116 +#: ../../mod/menu.php:111 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" + +#: ../../mod/menu.php:113 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" + +#: ../../mod/menu.php:114 ../../mod/menu.php:148 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" + +#: ../../mod/menu.php:115 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" + +#: ../../mod/menu.php:130 msgid "Menu could not be deleted." msgstr "Menü konnte nicht gelöscht werden." -#: ../../mod/menu.php:122 +#: ../../mod/menu.php:143 msgid "Edit Menu" msgstr "Menü bearbeiten" -#: ../../mod/menu.php:124 +#: ../../mod/menu.php:147 msgid "Add or remove entries to this menu" msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" -#: ../../mod/menu.php:130 ../../mod/mitem.php:213 -msgid "Modify" -msgstr "Ändern" +#: ../../mod/menu.php:149 +msgid "Menu name" +msgstr "Menü Name" -#: ../../mod/filestorage.php:81 +#: ../../mod/menu.php:149 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" + +#: ../../mod/menu.php:150 +msgid "Menu title" +msgstr "Menü Titel" + +#: ../../mod/menu.php:150 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" + +#: ../../mod/menu.php:151 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" + +#: ../../mod/filestorage.php:82 msgid "Permission Denied." msgstr "Zugriff verweigert." -#: ../../mod/filestorage.php:97 +#: ../../mod/filestorage.php:98 msgid "File not found." msgstr "Datei nicht gefunden." -#: ../../mod/filestorage.php:140 +#: ../../mod/filestorage.php:141 msgid "Edit file permissions" msgstr "Dateiberechtigungen bearbeiten" -#: ../../mod/filestorage.php:149 +#: ../../mod/filestorage.php:150 msgid "Set/edit permissions" msgstr "Berechtigungen setzen/ändern" -#: ../../mod/filestorage.php:150 +#: ../../mod/filestorage.php:151 msgid "Include all files and sub folders" msgstr "Alle Dateien und Unterverzeichnisse einbinden" -#: ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:152 msgid "Return to file list" msgstr "Zurück zur Dateiliste" -#: ../../mod/filestorage.php:153 +#: ../../mod/filestorage.php:154 msgid "Copy/paste this code to attach file to a post" msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" -#: ../../mod/filestorage.php:154 +#: ../../mod/filestorage.php:155 msgid "Copy/paste this URL to link file from a web page" msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" -#: ../../mod/filestorage.php:156 -msgid "Attach this file to a new post" -msgstr "Diese Datei an einen neuen Beitrag anhängen" - #: ../../mod/filestorage.php:157 +msgid "Share this file" +msgstr "Diese Datei freigeben" + +#: ../../mod/filestorage.php:158 msgid "Show URL to this file" msgstr "URL zu dieser Datei anzeigen" -#: ../../mod/filestorage.php:158 -msgid "Do not show in shared with me folder of your connections" -msgstr "Nicht im Ordner „Dateien, die mit mir geteilt wurden“ meiner Verbindungen anzeigen" +#: ../../mod/filestorage.php:159 +msgid "Notify your contacts about this file" +msgstr "Meine Kontakte über diese Datei benachrichtigen" #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." @@ -6612,7 +5794,7 @@ msgstr "Kontakte vorschlagen" msgid "Suggest a friend for %s" msgstr "Schlage %s einen Kontakt vor" -#: ../../mod/magic.php:70 +#: ../../mod/magic.php:69 msgid "Hub not found." msgstr "Server nicht gefunden." @@ -6652,13 +5834,15 @@ msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." msgid "Visible To" msgstr "Sichtbar für" -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." +#: ../../mod/impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Sichtbar für:" +#: ../../mod/impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s ist fehlgeschlagen" #: ../../mod/profiles.php:18 ../../mod/profiles.php:174 #: ../../mod/profiles.php:231 ../../mod/profiles.php:600 @@ -6687,7 +5871,7 @@ msgstr "Dieses Profil kann nicht exportiert werden." #: ../../mod/profiles.php:241 msgid "Profile Name is required." -msgstr "Profil-Name erforderlich." +msgstr "Profilname ist erforderlich." #: ../../mod/profiles.php:404 msgid "Marital Status" @@ -6717,7 +5901,7 @@ msgstr "Religion" msgid "Political Views" msgstr "Politische Ansichten" -#: ../../mod/profiles.php:431 +#: ../../mod/profiles.php:431 ../../mod/id.php:33 msgid "Gender" msgstr "Geschlecht" @@ -6733,7 +5917,7 @@ msgstr "Webseite" msgid "Interests" msgstr "Hobbys/Interessen" -#: ../../mod/profiles.php:447 ../../mod/admin.php:871 +#: ../../mod/profiles.php:447 ../../mod/admin.php:994 msgid "Address" msgstr "Adresse" @@ -6901,7 +6085,7 @@ msgstr "Schule/Ausbildung" msgid "This is your default profile." msgstr "Das ist Dein Standardprofil." -#: ../../mod/profiles.php:728 ../../mod/directory.php:188 +#: ../../mod/profiles.php:728 msgid "Age: " msgstr "Alter:" @@ -6937,113 +6121,437 @@ msgstr "Webseite: " msgid "Description: " msgstr "Beschreibung: " -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." +#: ../../mod/viewsrc.php:38 +msgid "Source of Item" +msgstr "Quelle des Elements" -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für diese Seite" +#: ../../mod/setup.php:187 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Server-Einrichtung" -#: ../../mod/delegate.php:123 +#: ../../mod/setup.php:191 +msgid "Could not connect to database." +msgstr "Kann nicht mit der Datenbank verbinden." + +#: ../../mod/setup.php:195 msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" +#: ../../mod/setup.php:202 +msgid "Could not create table." +msgstr "Kann Tabelle nicht erstellen." -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" +#: ../../mod/setup.php:207 +msgid "Your site database has been installed." +msgstr "Die Datenbank Deines Hubs wurde installiert." -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" +#: ../../mod/setup.php:211 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Hinzufügen" +#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Lies die Datei \"install/INSTALL.txt\"." -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Keine Einträge." +#: ../../mod/setup.php:277 +msgid "System check" +msgstr "Systemprüfung" -#: ../../mod/directory.php:194 +#: ../../mod/setup.php:282 +msgid "Check again" +msgstr "Bitte nochmal prüfen" + +#: ../../mod/setup.php:304 +msgid "Database connection" +msgstr "Datenbank Verbindung" + +#: ../../mod/setup.php:305 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." + +#: ../../mod/setup.php:306 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktieren Sie Ihren Hosting-Provider oder Administrator, falls Sie Fragen zu diesen Einstellungen haben." + +#: ../../mod/setup.php:307 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." + +#: ../../mod/setup.php:311 +msgid "Database Server Name" +msgstr "Datenbank-Servername" + +#: ../../mod/setup.php:311 +msgid "Default is localhost" +msgstr "Standard ist localhost" + +#: ../../mod/setup.php:312 +msgid "Database Port" +msgstr "Datenbank-Port" + +#: ../../mod/setup.php:312 +msgid "Communication port number - use 0 for default" +msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" + +#: ../../mod/setup.php:313 +msgid "Database Login Name" +msgstr "Datenbank-Benutzername" + +#: ../../mod/setup.php:314 +msgid "Database Login Password" +msgstr "Datenbank-Kennwort" + +#: ../../mod/setup.php:315 +msgid "Database Name" +msgstr "Datenbank-Name" + +#: ../../mod/setup.php:316 +msgid "Database Type" +msgstr "Datenbanktyp" + +#: ../../mod/setup.php:318 ../../mod/setup.php:359 +msgid "Site administrator email address" +msgstr "E-Mail Adresse des Seiten-Administrators" + +#: ../../mod/setup.php:318 ../../mod/setup.php:359 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." + +#: ../../mod/setup.php:319 ../../mod/setup.php:361 +msgid "Website URL" +msgstr "URL der Webseite" + +#: ../../mod/setup.php:319 ../../mod/setup.php:361 +msgid "Please use SSL (https) URL if available." +msgstr "Nutze wenn möglich eine SSL-URL (https)." + +#: ../../mod/setup.php:321 ../../mod/setup.php:363 +msgid "Please select a default timezone for your website" +msgstr "Standard-Zeitzone für Deinen Server" + +#: ../../mod/setup.php:348 +msgid "Site settings" +msgstr "Seiteneinstellungen" + +#: ../../mod/setup.php:413 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." + +#: ../../mod/setup.php:414 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." + +#: ../../mod/setup.php:418 +msgid "PHP executable path" +msgstr "PHP Pfad zu ausführbarer Datei" + +#: ../../mod/setup.php:418 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." + +#: ../../mod/setup.php:423 +msgid "Command line PHP" +msgstr "PHP Befehlszeile" + +#: ../../mod/setup.php:432 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." + +#: ../../mod/setup.php:433 +msgid "This is required for message delivery to work." +msgstr "Das ist für die funktionierende Auslieferung von Nachrichten erforderlich." + +#: ../../mod/setup.php:436 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/setup.php:454 #, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d Bewertung" -msgstr[1] "%d Bewertungen" +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." -#: ../../mod/directory.php:206 -msgid "Gender: " -msgstr "Geschlecht:" +#: ../../mod/setup.php:459 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Du kannst diese Einstellungen in der php.ini des Servers ändern." -#: ../../mod/directory.php:208 -msgid "Status: " -msgstr "Status:" +#: ../../mod/setup.php:461 +msgid "PHP upload limits" +msgstr "PHP-Hochladebeschränkungen" -#: ../../mod/directory.php:210 -msgid "Homepage: " -msgstr "Webseite:" +#: ../../mod/setup.php:484 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." -#: ../../mod/directory.php:213 -msgid "Hometown: " -msgstr "Wohnort:" +#: ../../mod/setup.php:485 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." -#: ../../mod/directory.php:215 -msgid "About: " -msgstr "Über:" +#: ../../mod/setup.php:488 +msgid "Generate encryption keys" +msgstr "Verschlüsselungsschlüssel generieren" -#: ../../mod/directory.php:273 -msgid "Public Forum:" -msgstr "Öffentliches Forum:" +#: ../../mod/setup.php:500 +msgid "libCurl PHP module" +msgstr "libCurl-PHP-Modul" -#: ../../mod/directory.php:276 -msgid "Keywords: " -msgstr "Schlüsselwörter:" +#: ../../mod/setup.php:501 +msgid "GD graphics PHP module" +msgstr "GD-Grafik-PHP-Modul" -#: ../../mod/directory.php:331 -msgid "Finding:" -msgstr "Ergebnisse:" +#: ../../mod/setup.php:502 +msgid "OpenSSL PHP module" +msgstr "OpenSSL-PHP-Modul" -#: ../../mod/directory.php:336 -msgid "next page" -msgstr "nächste Seite" +#: ../../mod/setup.php:503 +msgid "mysqli or postgres PHP module" +msgstr "mysqli oder postgres PHP-Modul" -#: ../../mod/directory.php:336 -msgid "previous page" -msgstr "vorherige Seite" +#: ../../mod/setup.php:504 +msgid "mb_string PHP module" +msgstr "mb_string-PHP-Modul" -#: ../../mod/directory.php:353 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." +#: ../../mod/setup.php:505 +msgid "mcrypt PHP module" +msgstr "mcrypt-PHP-Modul" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Lesezeichenordner wählen" +#: ../../mod/setup.php:506 +msgid "xml PHP module" +msgstr "xml-PHP-Modul" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Lesezeichen speichern" +#: ../../mod/setup.php:510 ../../mod/setup.php:512 +msgid "Apache mod_rewrite module" +msgstr "Apache-mod_rewrite-Modul" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL des Lesezeichens" +#: ../../mod/setup.php:510 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite ist erforderlich, aber nicht installiert." -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" +#: ../../mod/setup.php:516 ../../mod/setup.php:519 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 +#: ../../mod/setup.php:516 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Fehler: proc_open ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert" + +#: ../../mod/setup.php:524 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul libCURL ist erforderlich, aber nicht installiert." + +#: ../../mod/setup.php:528 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung ist erforderlich, aber nicht installiert." + +#: ../../mod/setup.php:532 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul openssl ist erforderlich, aber nicht installiert." + +#: ../../mod/setup.php:536 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." + +#: ../../mod/setup.php:540 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mb_string ist erforderlich, aber nicht installiert." + +#: ../../mod/setup.php:544 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mcrypt ist erforderlich, aber nicht installiert." + +#: ../../mod/setup.php:548 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." + +#: ../../mod/setup.php:566 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." + +#: ../../mod/setup.php:567 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." + +#: ../../mod/setup.php:568 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst." + +#: ../../mod/setup.php:569 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." + +#: ../../mod/setup.php:572 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php ist beschreibbar" + +#: ../../mod/setup.php:586 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." + +#: ../../mod/setup.php:587 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the Red top level folder." +msgstr "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses." + +#: ../../mod/setup.php:588 ../../mod/setup.php:609 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." + +#: ../../mod/setup.php:589 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." + +#: ../../mod/setup.php:592 +#, php-format +msgid "%s is writable" +msgstr "%s ist beschreibbar" + +#: ../../mod/setup.php:608 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to" +" have write access to the store directory under the Red top level folder" +msgstr "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" + +#: ../../mod/setup.php:612 +msgid "store is writable" +msgstr "store ist schreibbar" + +#: ../../mod/setup.php:645 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." + +#: ../../mod/setup.php:646 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." + +#: ../../mod/setup.php:647 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." + +#: ../../mod/setup.php:648 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." + +#: ../../mod/setup.php:649 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." + +#: ../../mod/setup.php:650 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." + +#: ../../mod/setup.php:652 +msgid "SSL certificate validation" +msgstr "SSL Zertifikatverifizierung" + +#: ../../mod/setup.php:658 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" + +#: ../../mod/setup.php:661 +msgid "Url rewrite is working" +msgstr "Url rewrite funktioniert" + +#: ../../mod/setup.php:670 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." + +#: ../../mod/setup.php:694 +msgid "Errors encountered creating database tables." +msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." + +#: ../../mod/setup.php:728 +msgid "

What next

" +msgstr "

Was als Nächstes

" + +#: ../../mod/setup.php:729 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:287 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." + +#: ../../mod/tagger.php:96 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" + +#: ../../mod/uexport.php:45 ../../mod/uexport.php:46 msgid "Export Channel" msgstr "Kanal exportieren" -#: ../../mod/uexport.php:35 +#: ../../mod/uexport.php:47 msgid "" "Export your basic channel information to a small file. This acts as a " "backup of your connections, permissions, profile and basic data, which can " @@ -7051,11 +6559,11 @@ msgid "" "content." msgstr "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." -#: ../../mod/uexport.php:36 +#: ../../mod/uexport.php:48 msgid "Export Content" msgstr "Kanal und Inhalte exportieren" -#: ../../mod/uexport.php:37 +#: ../../mod/uexport.php:49 msgid "" "Export your channel information and all the content to a JSON backup. This " "backs up all of your connections, permissions, profile data and all of your " @@ -7064,11 +6572,11 @@ msgid "" "minutes for this download to begin." msgstr "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Inhalte Deines Kanals, ist aber nicht unbedingt für den Import eines Kanals auf einem anderen Hub geeignet, da die Datei SEHR groß werden kann. Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." -#: ../../mod/viewconnections.php:58 +#: ../../mod/viewconnections.php:62 msgid "No connections." msgstr "Keine Verbindungen." -#: ../../mod/viewconnections.php:71 +#: ../../mod/viewconnections.php:75 #, php-format msgid "Visit %s's profile [%s]" msgstr "%ss Profil [%s] besuchen" @@ -7081,654 +6589,787 @@ msgstr "Ungültige Signatur des Ziels" msgid "Theme settings updated." msgstr "Theme-Einstellungen aktualisiert." -#: ../../mod/admin.php:97 ../../mod/admin.php:415 +#: ../../mod/admin.php:93 ../../mod/admin.php:452 msgid "Site" msgstr "Seite" -#: ../../mod/admin.php:98 +#: ../../mod/admin.php:94 msgid "Accounts" msgstr "Konten" -#: ../../mod/admin.php:99 ../../mod/admin.php:863 +#: ../../mod/admin.php:95 ../../mod/admin.php:985 msgid "Channels" msgstr "Kanäle" -#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996 +#: ../../mod/admin.php:96 ../../mod/admin.php:1077 ../../mod/admin.php:1117 msgid "Plugins" msgstr "Plug-Ins" -#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195 +#: ../../mod/admin.php:97 ../../mod/admin.php:1277 ../../mod/admin.php:1311 msgid "Themes" msgstr "Themes" -#: ../../mod/admin.php:102 ../../mod/admin.php:517 -msgid "Server" -msgstr "Server" +#: ../../mod/admin.php:98 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" -#: ../../mod/admin.php:103 +#: ../../mod/admin.php:100 msgid "Profile Config" msgstr "Profilkonfiguration" -#: ../../mod/admin.php:104 +#: ../../mod/admin.php:101 msgid "DB updates" msgstr "DB-Aktualisierungen" -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282 +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1396 msgid "Logs" msgstr "Protokolle" -#: ../../mod/admin.php:124 +#: ../../mod/admin.php:121 msgid "Plugin Features" msgstr "Plug-In Funktionen" -#: ../../mod/admin.php:126 +#: ../../mod/admin.php:123 msgid "User registrations waiting for confirmation" msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" -#: ../../mod/admin.php:206 +#: ../../mod/admin.php:200 +msgid "# Accounts" +msgstr "Anzahl der Konten" + +#: ../../mod/admin.php:201 +msgid "# blocked accounts" +msgstr "Anzahl der blockierten Konten" + +#: ../../mod/admin.php:202 +msgid "# expired accounts" +msgstr "Anzahl der abgelaufenen Konten" + +#: ../../mod/admin.php:203 +msgid "# expiring accounts" +msgstr "Anzahl der ablaufenden Konten" + +#: ../../mod/admin.php:216 +msgid "# Channels" +msgstr "Anzahl der Kanäle" + +#: ../../mod/admin.php:217 +msgid "# primary" +msgstr "Anzahl der primären Kanäle" + +#: ../../mod/admin.php:218 +msgid "# clones" +msgstr "Anzahl der Klone" + +#: ../../mod/admin.php:224 msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: ../../mod/admin.php:211 ../../mod/admin.php:414 ../../mod/admin.php:516 -#: ../../mod/admin.php:726 ../../mod/admin.php:862 ../../mod/admin.php:953 -#: ../../mod/admin.php:995 ../../mod/admin.php:1158 ../../mod/admin.php:1194 -#: ../../mod/admin.php:1281 +#: ../../mod/admin.php:240 ../../mod/admin.php:451 ../../mod/admin.php:548 +#: ../../mod/admin.php:817 ../../mod/admin.php:984 ../../mod/admin.php:1076 +#: ../../mod/admin.php:1116 ../../mod/admin.php:1276 ../../mod/admin.php:1310 +#: ../../mod/admin.php:1395 msgid "Administration" msgstr "Administration" -#: ../../mod/admin.php:212 +#: ../../mod/admin.php:241 msgid "Summary" msgstr "Zusammenfassung" -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Registrierte Benutzer" +#: ../../mod/admin.php:244 +msgid "Registered accounts" +msgstr "Registrierte Konten" -#: ../../mod/admin.php:216 ../../mod/admin.php:520 +#: ../../mod/admin.php:245 ../../mod/admin.php:552 msgid "Pending registrations" msgstr "Ausstehende Registrierungen" -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Version" +#: ../../mod/admin.php:246 +msgid "Registered channels" +msgstr "Registrierte Kanäle" -#: ../../mod/admin.php:219 ../../mod/admin.php:521 +#: ../../mod/admin.php:247 ../../mod/admin.php:553 msgid "Active plugins" msgstr "Aktive Plug-Ins" -#: ../../mod/admin.php:330 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." +#: ../../mod/admin.php:248 +msgid "Version" +msgstr "Version" -#: ../../mod/admin.php:369 +#: ../../mod/admin.php:363 +msgid "Site settings updated." +msgstr "Seiteneinstellungen aktualisiert." + +#: ../../mod/admin.php:400 ../../mod/settings.php:813 +msgid "mobile" +msgstr "mobil" + +#: ../../mod/admin.php:402 msgid "experimental" msgstr "experimentell" -#: ../../mod/admin.php:371 +#: ../../mod/admin.php:404 msgid "unsupported" msgstr "nicht unterstützt" -#: ../../mod/admin.php:395 +#: ../../mod/admin.php:429 msgid "Yes - with approval" msgstr "Ja - mit Zustimmung" -#: ../../mod/admin.php:401 +#: ../../mod/admin.php:435 msgid "My site is not a public server" msgstr "Mein Server ist kein öffentlicher Server" -#: ../../mod/admin.php:402 +#: ../../mod/admin.php:436 msgid "My site has paid access only" msgstr "Mein Server erlaubt nur bezahlten Zugang" -#: ../../mod/admin.php:403 +#: ../../mod/admin.php:437 msgid "My site has free access only" msgstr "Mein Server erlaubt ausschließlich freien Zugang" -#: ../../mod/admin.php:404 +#: ../../mod/admin.php:438 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../mod/admin.php:417 ../../mod/register.php:207 +#: ../../mod/admin.php:454 ../../mod/register.php:207 msgid "Registration" msgstr "Registrierung" -#: ../../mod/admin.php:418 +#: ../../mod/admin.php:455 msgid "File upload" msgstr "Dateiupload" -#: ../../mod/admin.php:419 +#: ../../mod/admin.php:456 msgid "Policies" msgstr "Richtlinien" -#: ../../mod/admin.php:424 +#: ../../mod/admin.php:461 msgid "Site name" msgstr "Seitenname" -#: ../../mod/admin.php:425 +#: ../../mod/admin.php:462 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../mod/admin.php:426 +#: ../../mod/admin.php:463 msgid "Administrator Information" msgstr "Administrator-Informationen" -#: ../../mod/admin.php:426 +#: ../../mod/admin.php:463 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." -#: ../../mod/admin.php:427 +#: ../../mod/admin.php:464 msgid "System language" msgstr "System-Sprache" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:465 msgid "System theme" msgstr "System-Theme" -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:465 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" -#: ../../mod/admin.php:429 +#: ../../mod/admin.php:466 msgid "Mobile system theme" msgstr "Mobile System-Theme:" -#: ../../mod/admin.php:429 +#: ../../mod/admin.php:466 msgid "Theme for mobile devices" msgstr "Theme für mobile Geräte" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:468 msgid "Enable Diaspora Protocol" msgstr "Diaspora-Protokoll aktivieren" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:468 msgid "Communicate with Diaspora and Friendica - experimental" msgstr "Kommunikation mit Diaspora und Friendica – experimentell" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:469 msgid "Allow Feeds as Connections" msgstr "Feeds als Verbindungen erlauben" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:469 msgid "(Heavy system resource usage)" msgstr "(führt zu hoher Systemlast)" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:470 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:470 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." -#: ../../mod/admin.php:434 +#: ../../mod/admin.php:471 msgid "Does this site allow new member registration?" msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:472 msgid "Which best describes the types of account offered by this hub?" msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:473 msgid "Register text" msgstr "Registrierungstext" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:473 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:474 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage des Servers, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" + +#: ../../mod/admin.php:474 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." + +#: ../../mod/admin.php:475 +msgid "Preserve site homepage URL" +msgstr "Homepage-URL schützen" + +#: ../../mod/admin.php:475 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." + +#: ../../mod/admin.php:476 msgid "Accounts abandoned after x days" msgstr "Konten gelten nach X Tagen als unbenutzt" -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:476 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:477 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:477 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:439 +#: ../../mod/admin.php:478 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:478 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:440 +#: ../../mod/admin.php:479 msgid "Not allowed email domains" msgstr "Nicht erlaubte Domains für E-Mails" -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:479 msgid "" "Comma separated list of domains which are not allowed in email addresses for" " registrations to this site. Wildcards are accepted. Empty to allow any " "domains, unless allowed domains have been defined." msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." -#: ../../mod/admin.php:441 +#: ../../mod/admin.php:480 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: ../../mod/admin.php:441 +#: ../../mod/admin.php:480 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist." -#: ../../mod/admin.php:442 +#: ../../mod/admin.php:481 msgid "Verify Email Addresses" msgstr "E-Mail-Adressen überprüfen" -#: ../../mod/admin.php:442 +#: ../../mod/admin.php:481 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:482 msgid "Force publish" msgstr "Veröffentlichung erzwingen" -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:482 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:483 msgid "Disable discovery tab" msgstr "Den „Entdecken“-Reiter ausblenden" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:483 msgid "" "Remove the tab in the network view with public content pulled from sources " "chosen for this site." msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden." -#: ../../mod/admin.php:445 -msgid "No login on Homepage" -msgstr "Kein Login auf der Homepage" +#: ../../mod/admin.php:484 +msgid "login on Homepage" +msgstr "Anmeldemaske auf der Homepage" -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:484 msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)." +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:486 msgid "Proxy user" msgstr "Proxy Benutzer" -#: ../../mod/admin.php:448 +#: ../../mod/admin.php:487 msgid "Proxy URL" msgstr "Proxy URL" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:488 msgid "Network timeout" msgstr "Netzwerk-Timeout" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:488 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:489 msgid "Delivery interval" msgstr "Auslieferung Intervall" -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:489 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../mod/admin.php:451 +#: ../../mod/admin.php:490 msgid "Poll interval" msgstr "Abfrageintervall" -#: ../../mod/admin.php:451 +#: ../../mod/admin.php:490 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." -#: ../../mod/admin.php:452 +#: ../../mod/admin.php:491 msgid "Maximum Load Average" msgstr "Maximales Load Average" -#: ../../mod/admin.php:452 +#: ../../mod/admin.php:491 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:508 +#: ../../mod/admin.php:492 +msgid "Expiration period in days for imported (matrix/network) content" +msgstr "Setze den Zeitraum (in Tagen), ab wann importierte Inhalte aus der RedMatrix (dem Netzwerk) ablaufen sollen" + +#: ../../mod/admin.php:492 +msgid "0 for no expiration of imported content" +msgstr "Setze 0, damit importierte Inhalte niemals ablaufen (entfernt werden)" + +#: ../../mod/admin.php:540 msgid "No server found" msgstr "Kein Server gefunden" -#: ../../mod/admin.php:515 ../../mod/admin.php:740 +#: ../../mod/admin.php:547 ../../mod/admin.php:831 msgid "ID" msgstr "ID" -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:547 msgid "for channel" msgstr "für Kanal" -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:547 msgid "on server" msgstr "auf Server" -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:547 msgid "Status" msgstr "Status" -#: ../../mod/admin.php:536 +#: ../../mod/admin.php:549 +msgid "Server" +msgstr "Server" + +#: ../../mod/admin.php:566 msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: ../../mod/admin.php:546 +#: ../../mod/admin.php:576 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." -#: ../../mod/admin.php:549 +#: ../../mod/admin.php:579 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s wurde erfolgreich ausgeführt." -#: ../../mod/admin.php:553 +#: ../../mod/admin.php:583 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." -#: ../../mod/admin.php:556 +#: ../../mod/admin.php:586 #, php-format msgid "Update function %s could not be found." msgstr "Update-Funktion %s konnte nicht gefunden werden." -#: ../../mod/admin.php:571 +#: ../../mod/admin.php:602 msgid "No failed updates." msgstr "Keine fehlgeschlagenen Aktualisierungen." -#: ../../mod/admin.php:575 +#: ../../mod/admin.php:606 msgid "Failed Updates" msgstr "Fehlgeschlagene Aktualisierungen" -#: ../../mod/admin.php:577 +#: ../../mod/admin.php:608 msgid "Mark success (if update was manually applied)" msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" -#: ../../mod/admin.php:578 +#: ../../mod/admin.php:609 msgid "Attempt to execute this update step automatically" msgstr "Versuche, diesen Updateschritt automatisch auszuführen" -#: ../../mod/admin.php:604 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s Nutzer blockiert/freigegeben" -msgstr[1] "%s Nutzer blockiert/freigegeben" +#: ../../mod/admin.php:641 +msgid "Queue Statistics" +msgstr "Warteschlangenstatistiken" -#: ../../mod/admin.php:611 -#, 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:642 +msgid "Total Entries" +msgstr "Einträge insgesamt" -#: ../../mod/admin.php:640 +#: ../../mod/admin.php:643 +msgid "Priority" +msgstr "Priorität" + +#: ../../mod/admin.php:644 +msgid "Destination URL" +msgstr "Ziel-URL" + +#: ../../mod/admin.php:645 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markieren" + +#: ../../mod/admin.php:646 +msgid "Empty queue for this hub" +msgstr "Warteschlange für diesen Hub leeren" + +#: ../../mod/admin.php:647 +msgid "Last known contact" +msgstr "Letzter bekannter Kontakt" + +#: ../../mod/admin.php:683 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s Konto blockiert/freigegeben" +msgstr[1] "%s Konten blockiert/freigegeben" + +#: ../../mod/admin.php:691 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s Konto gelöscht" +msgstr[1] "%s Konten gelöscht" + +#: ../../mod/admin.php:727 msgid "Account not found" msgstr "Konto nicht gefunden" -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:739 #, php-format -msgid "User '%s' unblocked" -msgstr "Benutzer '%s' freigegeben" +msgid "Account '%s' deleted" +msgstr "Konte '%s' gelöscht" -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:747 #, php-format -msgid "User '%s' blocked" -msgstr "Benutzer '%s' blockiert" +msgid "Account '%s' blocked" +msgstr "Konto '%s' blockiert" -#: ../../mod/admin.php:727 ../../mod/admin.php:739 +#: ../../mod/admin.php:755 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Konto '%s' freigegeben" + +#: ../../mod/admin.php:818 ../../mod/admin.php:830 msgid "Users" msgstr "Benutzer" -#: ../../mod/admin.php:729 ../../mod/admin.php:865 +#: ../../mod/admin.php:820 ../../mod/admin.php:987 msgid "select all" msgstr "Alle auswählen" -#: ../../mod/admin.php:730 +#: ../../mod/admin.php:821 msgid "User registrations waiting for confirm" msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" -#: ../../mod/admin.php:731 +#: ../../mod/admin.php:822 msgid "Request date" msgstr "Antragsdatum" -#: ../../mod/admin.php:732 +#: ../../mod/admin.php:823 msgid "No registrations." msgstr "Keine Registrierungen." -#: ../../mod/admin.php:733 +#: ../../mod/admin.php:824 ../../mod/connedit.php:699 msgid "Approve" msgstr "Genehmigen" -#: ../../mod/admin.php:734 +#: ../../mod/admin.php:825 msgid "Deny" msgstr "Verweigern" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:827 ../../mod/connedit.php:531 +msgid "Block" +msgstr "Blockieren" + +#: ../../mod/admin.php:828 ../../mod/connedit.php:531 +msgid "Unblock" +msgstr "Freigeben" + +#: ../../mod/admin.php:831 msgid "Register date" msgstr "Registrierungs-Datum" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:831 msgid "Last login" msgstr "Letzte Anmeldung" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:831 msgid "Expires" msgstr "Verfällt" -#: ../../mod/admin.php:740 +#: ../../mod/admin.php:831 msgid "Service Class" msgstr "Service-Klasse" -#: ../../mod/admin.php:742 +#: ../../mod/admin.php:833 msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Ausgewählte Konten werden gelöscht.\\n\\nAlles was diese Konten auf dieser Seite veröffentlicht haben wird permanent gelöscht werden!\\n\\nBist du dir sicher?" + +#: ../../mod/admin.php:834 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " "this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?" +msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" -#: ../../mod/admin.php:743 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" - -#: ../../mod/admin.php:776 +#: ../../mod/admin.php:870 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "%s Kanal gesperrt/freigegeben" msgstr[1] "%s Kanäle gesperrt/freigegeben" -#: ../../mod/admin.php:783 +#: ../../mod/admin.php:879 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "Code für %s Kanal gesperrt/freigegeben." +msgstr[1] "Code für %s Kanäle gesperrt/freigegeben" + +#: ../../mod/admin.php:886 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "%s Kanal gelöscht" msgstr[1] "%s Kanäle gelöscht" -#: ../../mod/admin.php:802 +#: ../../mod/admin.php:906 msgid "Channel not found" msgstr "Kanal nicht gefunden" -#: ../../mod/admin.php:813 +#: ../../mod/admin.php:917 #, php-format msgid "Channel '%s' deleted" msgstr "Kanal '%s' gelöscht" -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" - -#: ../../mod/admin.php:824 +#: ../../mod/admin.php:929 #, php-format msgid "Channel '%s' censored" msgstr "Kanal '%s' gesperrt" -#: ../../mod/admin.php:867 +#: ../../mod/admin.php:929 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" + +#: ../../mod/admin.php:940 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Code für Kanal '%s' freigegeben" + +#: ../../mod/admin.php:940 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Code für Kanal '%s' gesperrt." + +#: ../../mod/admin.php:989 msgid "Censor" msgstr "Sperren" -#: ../../mod/admin.php:868 +#: ../../mod/admin.php:990 msgid "Uncensor" msgstr "Freigeben" -#: ../../mod/admin.php:871 +#: ../../mod/admin.php:991 +msgid "Allow Code" +msgstr "Code erlauben" + +#: ../../mod/admin.php:992 +msgid "Disallow Code" +msgstr "Code nicht erlauben" + +#: ../../mod/admin.php:994 msgid "UID" msgstr "UID" -#: ../../mod/admin.php:873 +#: ../../mod/admin.php:996 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " "channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" -#: ../../mod/admin.php:874 +#: ../../mod/admin.php:997 msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" -#: ../../mod/admin.php:913 +#: ../../mod/admin.php:1037 #, php-format msgid "Plugin %s disabled." msgstr "Plug-In %s deaktiviert." -#: ../../mod/admin.php:917 +#: ../../mod/admin.php:1041 #, php-format msgid "Plugin %s enabled." msgstr "Plug-In %s aktiviert." -#: ../../mod/admin.php:927 ../../mod/admin.php:1129 +#: ../../mod/admin.php:1051 ../../mod/admin.php:1249 msgid "Disable" msgstr "Deaktivieren" -#: ../../mod/admin.php:929 ../../mod/admin.php:1131 +#: ../../mod/admin.php:1054 ../../mod/admin.php:1251 msgid "Enable" msgstr "Aktivieren" -#: ../../mod/admin.php:955 ../../mod/admin.php:1160 +#: ../../mod/admin.php:1078 ../../mod/admin.php:1278 msgid "Toggle" msgstr "Umschalten" -#: ../../mod/admin.php:963 ../../mod/admin.php:1170 +#: ../../mod/admin.php:1086 ../../mod/admin.php:1288 msgid "Author: " msgstr "Autor: " -#: ../../mod/admin.php:964 ../../mod/admin.php:1171 +#: ../../mod/admin.php:1087 ../../mod/admin.php:1289 msgid "Maintainer: " msgstr "Betreuer:" -#: ../../mod/admin.php:1093 +#: ../../mod/admin.php:1214 msgid "No themes found." msgstr "Keine Theme gefunden." -#: ../../mod/admin.php:1152 +#: ../../mod/admin.php:1270 msgid "Screenshot" msgstr "Bildschirmfoto" -#: ../../mod/admin.php:1200 +#: ../../mod/admin.php:1316 msgid "[Experimental]" msgstr "[Experimentell]" -#: ../../mod/admin.php:1201 +#: ../../mod/admin.php:1317 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: ../../mod/admin.php:1228 +#: ../../mod/admin.php:1341 msgid "Log settings updated." -msgstr "Protokoll-Einstellungen aktualisiert." +msgstr "Protokolleinstellungen aktualisiert." -#: ../../mod/admin.php:1284 +#: ../../mod/admin.php:1398 msgid "Clear" msgstr "Leeren" -#: ../../mod/admin.php:1290 +#: ../../mod/admin.php:1404 msgid "Debugging" msgstr "Debugging" -#: ../../mod/admin.php:1291 +#: ../../mod/admin.php:1405 msgid "Log file" msgstr "Protokolldatei" -#: ../../mod/admin.php:1291 +#: ../../mod/admin.php:1405 msgid "" "Must be writable by web server. Relative to your Red top-level directory." msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis." -#: ../../mod/admin.php:1292 +#: ../../mod/admin.php:1406 msgid "Log level" msgstr "Protokollstufe" -#: ../../mod/admin.php:1339 +#: ../../mod/admin.php:1452 msgid "New Profile Field" msgstr "Neues Profilfeld" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 msgid "Field nickname" msgstr "Kurzname für das Feld" -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 +#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 msgid "System name of field" msgstr "Systemname des Feldes" -#: ../../mod/admin.php:1341 ../../mod/admin.php:1362 +#: ../../mod/admin.php:1454 ../../mod/admin.php:1474 msgid "Input type" msgstr "Art des Inhalts" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 +#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 msgid "Field Name" msgstr "Feldname" -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 +#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 msgid "Label on profile pages" msgstr "Bezeichnung auf Profilseiten" -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 +#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 msgid "Help text" msgstr "Hilfetext" -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 +#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 msgid "Additional info (optional)" msgstr "Zusätzliche Informationen (optional)" -#: ../../mod/admin.php:1354 +#: ../../mod/admin.php:1466 msgid "Field definition not found" msgstr "Feld-Definition nicht gefunden" -#: ../../mod/admin.php:1360 +#: ../../mod/admin.php:1472 msgid "Edit Profile Field" msgstr "Profilfeld bearbeiten" @@ -7740,20 +7381,80 @@ msgstr "Konnte Deinen Server nicht finden." msgid "Post successful." msgstr "Veröffentlichung erfolgreich." -#: ../../mod/post.php:229 +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." + +#: ../../mod/register.php:50 msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." + +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." + +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registrierung auf einem anderen, angeschlossenen Server" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" + +#: ../../mod/register.php:191 #, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Bitte melde dich an." +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Passwort" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" #: ../../mod/removeaccount.php:30 msgid "" @@ -7765,11 +7466,19 @@ msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geä msgid "Remove This Account" msgstr "Dieses Konto löschen" +#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 +msgid "WARNING: " +msgstr "WARNUNG: " + #: ../../mod/removeaccount.php:58 msgid "" -"This will completely remove this account including all its channels from the" -" network. Once this has been done it is not recoverable." -msgstr "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden." +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." + +#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" #: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 msgid "Please enter your password for verification:" @@ -7787,31 +7496,677 @@ msgid "" "removed from the network" msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt" +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 +msgid "Remove Account" +msgstr "Konto entfernen" + +#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 +msgid "Help:" +msgstr "Hilfe:" + +#: ../../mod/help.php:76 ../../index.php:238 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: ../../mod/help.php:100 +msgid "$Projectname Documentation" +msgstr "$Projectname Dokkumentation" + #: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 #: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 +#: ../../mod/update_home.php:21 ../../mod/update_public.php:21 msgid "[Embedded content - reload page to view]" msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]" -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" -msgstr "Wall Fotos" +#: ../../mod/lockview.php:37 +msgid "Remote privacy information not available." +msgstr "Privatsphäreeinstellungen anderer Nutzer sind nicht verfügbar." -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" +#: ../../mod/lockview.php:58 +msgid "Visible to:" +msgstr "Sichtbar für:" -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." +#: ../../mod/settings.php:76 +msgid "Name is required" +msgstr "Name ist erforderlich" -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "interessiert sich für:" +#: ../../mod/settings.php:80 +msgid "Key and Secret are required" +msgstr "Schlüssel und Geheimnis sind erforderlich" -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Keine Übereinstimmungen" +#: ../../mod/settings.php:130 +msgid "Diaspora Policy Settings updated." +msgstr "Diaspora-Richtlinieneinstellungen aktualisiert." + +#: ../../mod/settings.php:238 +msgid "Passwords do not match. Password unchanged." +msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." + +#: ../../mod/settings.php:242 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." + +#: ../../mod/settings.php:256 +msgid "Password changed." +msgstr "Kennwort geändert." + +#: ../../mod/settings.php:258 +msgid "Password update failed. Please try again." +msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." + +#: ../../mod/settings.php:272 +msgid "Not valid email." +msgstr "Keine gültige E-Mail Adresse." + +#: ../../mod/settings.php:275 +msgid "Protected email address. Cannot change to that email." +msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." + +#: ../../mod/settings.php:284 +msgid "System failure storing new email. Please try again." +msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." + +#: ../../mod/settings.php:523 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +#: ../../mod/settings.php:649 +msgid "Add application" +msgstr "Anwendung hinzufügen" + +#: ../../mod/settings.php:590 +msgid "Name of application" +msgstr "Name der Anwendung" + +#: ../../mod/settings.php:591 ../../mod/settings.php:617 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../mod/settings.php:591 ../../mod/settings.php:592 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" + +#: ../../mod/settings.php:592 ../../mod/settings.php:618 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../mod/settings.php:593 ../../mod/settings.php:619 +msgid "Redirect" +msgstr "Umleitung" + +#: ../../mod/settings.php:593 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" + +#: ../../mod/settings.php:594 ../../mod/settings.php:620 +msgid "Icon url" +msgstr "Symbol-URL" + +#: ../../mod/settings.php:594 +msgid "Optional" +msgstr "Optional" + +#: ../../mod/settings.php:605 +msgid "You can't edit this application." +msgstr "Diese Anwendung kann nicht bearbeitet werden." + +#: ../../mod/settings.php:648 +msgid "Connected Apps" +msgstr "Verbundene Apps" + +#: ../../mod/settings.php:652 +msgid "Client key starts with" +msgstr "Client Key beginnt mit" + +#: ../../mod/settings.php:653 +msgid "No name" +msgstr "Kein Name" + +#: ../../mod/settings.php:654 +msgid "Remove authorization" +msgstr "Authorisierung aufheben" + +#: ../../mod/settings.php:668 +msgid "No feature settings configured" +msgstr "Keine Funktionseinstellungen konfiguriert" + +#: ../../mod/settings.php:685 +msgid "Feature/Addon Settings" +msgstr "Funktions-/Addon-Einstellungen" + +#: ../../mod/settings.php:687 +msgid "Settings for the built-in Diaspora emulator" +msgstr "Einstellungen für den eingebauten Diaspora-Emulator" + +#: ../../mod/settings.php:688 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "Jedem Diaspora-Mitglied erlauben, Deine öffentlichen Beiträge zu kommentieren" + +#: ../../mod/settings.php:689 +msgid "Enable the Diaspora protocol for this channel" +msgstr "Diaspora-Protokoll für diesen Kanal aktivieren" + +#: ../../mod/settings.php:690 +msgid "Diaspora Policy Settings" +msgstr "Diaspora-Richtlinieneinstellungen" + +#: ../../mod/settings.php:691 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "Verhindern, dass Deine hashtags zu anderen Seiten umgeleitet werden" + +#: ../../mod/settings.php:715 +msgid "Account Settings" +msgstr "Kontoeinstellungen" + +#: ../../mod/settings.php:716 +msgid "Enter New Password:" +msgstr "Neues Passwort eingeben:" + +#: ../../mod/settings.php:717 +msgid "Confirm New Password:" +msgstr "Neues Passwort bestätigen:" + +#: ../../mod/settings.php:717 +msgid "Leave password fields blank unless changing" +msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" + +#: ../../mod/settings.php:719 ../../mod/settings.php:1057 +msgid "Email Address:" +msgstr "Email Adresse:" + +#: ../../mod/settings.php:721 +msgid "Remove this account including all its channels" +msgstr "Dieses Konto inklusive all seiner Kanäle löschen" + +#: ../../mod/settings.php:737 +msgid "Off" +msgstr "Aus" + +#: ../../mod/settings.php:737 +msgid "On" +msgstr "An" + +#: ../../mod/settings.php:744 +msgid "Additional Features" +msgstr "Zusätzliche Funktionen" + +#: ../../mod/settings.php:768 +msgid "Connector Settings" +msgstr "Verbindereinstellungen" + +#: ../../mod/settings.php:807 +msgid "No special theme for mobile devices" +msgstr "Keine spezielle Theme für mobile Geräte" + +#: ../../mod/settings.php:810 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s – (experimentell)" + +#: ../../mod/settings.php:849 +msgid "Display Settings" +msgstr "Anzeigeeinstellungen" + +#: ../../mod/settings.php:850 +msgid "Theme Settings" +msgstr "Theme-Einstellungen" + +#: ../../mod/settings.php:851 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Theme-Einstellungen" + +#: ../../mod/settings.php:852 +msgid "Content Settings" +msgstr "Inhaltseinstellungen" + +#: ../../mod/settings.php:858 +msgid "Display Theme:" +msgstr "Anzeige-Theme:" + +#: ../../mod/settings.php:859 +msgid "Mobile Theme:" +msgstr "Mobile Theme:" + +#: ../../mod/settings.php:860 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom auf Mobilgeräten aktivieren" + +#: ../../mod/settings.php:861 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" + +#: ../../mod/settings.php:861 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 Sekunden, kein Maximum" + +#: ../../mod/settings.php:862 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" + +#: ../../mod/settings.php:862 +msgid "Maximum of 100 items" +msgstr "Maximum: 100 Beiträge" + +#: ../../mod/settings.php:863 +msgid "Show emoticons (smilies) as images" +msgstr "Emoticons (Smilies) als Bilder anzeigen" + +#: ../../mod/settings.php:864 +msgid "Link post titles to source" +msgstr "Beitragstitel zum Originalbeitrag verlinken" + +#: ../../mod/settings.php:865 +msgid "System Page Layout Editor - (advanced)" +msgstr "Systemseitengestaltungseditor - (erweitert)" + +#: ../../mod/settings.php:868 +msgid "Use blog/list mode on channel page" +msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" + +#: ../../mod/settings.php:868 ../../mod/settings.php:869 +msgid "(comments displayed separately)" +msgstr "(Kommentare werden separat angezeigt)" + +#: ../../mod/settings.php:869 +msgid "Use blog/list mode on matrix page" +msgstr "Blog-/Listenmodus auf der Matrixseite verwenden" + +#: ../../mod/settings.php:870 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" + +#: ../../mod/settings.php:870 ../../mod/settings.php:871 +msgid "click to expand content exceeding this height" +msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." + +#: ../../mod/settings.php:871 +msgid "Matrix page max height of content (in pixels)" +msgstr "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)" + +#: ../../mod/settings.php:905 +msgid "Nobody except yourself" +msgstr "Niemand außer Dir selbst" + +#: ../../mod/settings.php:906 +msgid "Only those you specifically allow" +msgstr "Nur die, denen Du es explizit erlaubst" + +#: ../../mod/settings.php:907 +msgid "Approved connections" +msgstr "Angenommene Verbindungen" + +#: ../../mod/settings.php:908 +msgid "Any connections" +msgstr "Beliebige Verbindungen" + +#: ../../mod/settings.php:909 +msgid "Anybody on this website" +msgstr "Jeder auf dieser Website" + +#: ../../mod/settings.php:910 +msgid "Anybody in this network" +msgstr "Alle Red-Nutzer" + +#: ../../mod/settings.php:911 +msgid "Anybody authenticated" +msgstr "Jeder authentifizierte" + +#: ../../mod/settings.php:912 +msgid "Anybody on the internet" +msgstr "Jeder im Internet" + +#: ../../mod/settings.php:986 +msgid "Publish your default profile in the network directory" +msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" + +#: ../../mod/settings.php:991 +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:1000 +msgid "Your channel address is" +msgstr "Deine Kanal-Adresse lautet" + +#: ../../mod/settings.php:1048 +msgid "Channel Settings" +msgstr "Kanaleinstellungen" + +#: ../../mod/settings.php:1055 +msgid "Basic Settings" +msgstr "Grundeinstellungen" + +#: ../../mod/settings.php:1058 +msgid "Your Timezone:" +msgstr "Ihre Zeitzone:" + +#: ../../mod/settings.php:1059 +msgid "Default Post Location:" +msgstr "Standardstandort:" + +#: ../../mod/settings.php:1059 +msgid "Geographical location to display on your posts" +msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" + +#: ../../mod/settings.php:1060 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" + +#: ../../mod/settings.php:1062 +msgid "Adult Content" +msgstr "Nicht jugendfreie Inhalte" + +#: ../../mod/settings.php:1062 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" + +#: ../../mod/settings.php:1064 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Datenschutzeinstellungen" + +#: ../../mod/settings.php:1066 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" + +#: ../../mod/settings.php:1068 +msgid "Hide my online presence" +msgstr "Meine Online-Präsenz verbergen" + +#: ../../mod/settings.php:1068 +msgid "Prevents displaying in your profile that you are online" +msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" + +#: ../../mod/settings.php:1070 +msgid "Simple Privacy Settings:" +msgstr "Einfache Privatsphäreeinstellungen:" + +#: ../../mod/settings.php:1071 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" + +#: ../../mod/settings.php:1072 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" + +#: ../../mod/settings.php:1073 +msgid "Private - default private, never open or public" +msgstr "Privat – Standard privat, nie offen oder öffentlich" + +#: ../../mod/settings.php:1074 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockiert – Alle standardmäßig blockiert" + +#: ../../mod/settings.php:1076 +msgid "Allow others to tag your posts" +msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" + +#: ../../mod/settings.php:1076 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" + +#: ../../mod/settings.php:1078 +msgid "Advanced Privacy Settings" +msgstr "Fortgeschrittene Privatsphäreeinstellungen" + +#: ../../mod/settings.php:1080 +msgid "Expire other channel content after this many days" +msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" + +#: ../../mod/settings.php:1080 +msgid "0 or blank prevents expiration" +msgstr "0 oder kein Inhalt verhindern das Verfallen" + +#: ../../mod/settings.php:1081 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Kontaktanfragen pro Tag:" + +#: ../../mod/settings.php:1081 +msgid "May reduce spam activity" +msgstr "Kann die Spam-Aktivität verringern" + +#: ../../mod/settings.php:1082 +msgid "Default Post Permissions" +msgstr "Standardmäßige Beitragsberechtigungen" + +#: ../../mod/settings.php:1087 +msgid "Channel permissions category:" +msgstr "Zugriffsrechte-Kategorie des Kanals:" + +#: ../../mod/settings.php:1093 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" + +#: ../../mod/settings.php:1093 +msgid "Useful to reduce spamming" +msgstr "Nützlich, um Spam zu verringern" + +#: ../../mod/settings.php:1096 +msgid "Notification Settings" +msgstr "Benachrichtigungseinstellungen" + +#: ../../mod/settings.php:1097 +msgid "By default post a status message when:" +msgstr "Sende standardmäßig Status-Nachrichten, wenn:" + +#: ../../mod/settings.php:1098 +msgid "accepting a friend request" +msgstr "Du eine Verbindungsanfrage annimmst" + +#: ../../mod/settings.php:1099 +msgid "joining a forum/community" +msgstr "Du einem Forum beitrittst" + +#: ../../mod/settings.php:1100 +msgid "making an interesting profile change" +msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" + +#: ../../mod/settings.php:1101 +msgid "Send a notification email when:" +msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" + +#: ../../mod/settings.php:1102 +msgid "You receive a connection request" +msgstr "Du eine Verbindungsanfrage erhältst" + +#: ../../mod/settings.php:1103 +msgid "Your connections are confirmed" +msgstr "Eine Verbindung bestätigt wurde" + +#: ../../mod/settings.php:1104 +msgid "Someone writes on your profile wall" +msgstr "Jemand auf Deine Pinnwand schreibt" + +#: ../../mod/settings.php:1105 +msgid "Someone writes a followup comment" +msgstr "Jemand einen Beitrag kommentiert" + +#: ../../mod/settings.php:1106 +msgid "You receive a private message" +msgstr "Du eine private Nachricht erhältst" + +#: ../../mod/settings.php:1107 +msgid "You receive a friend suggestion" +msgstr "Du einen Kontaktvorschlag erhältst" + +#: ../../mod/settings.php:1108 +msgid "You are tagged in a post" +msgstr "Du in einem Beitrag erwähnt wurdest" + +#: ../../mod/settings.php:1109 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" + +#: ../../mod/settings.php:1112 +msgid "Show visual notifications including:" +msgstr "Visuelle Benachrichtigungen anzeigen für:" + +#: ../../mod/settings.php:1114 +msgid "Unseen matrix activity" +msgstr "Ungesehene Matrix-Aktivität" + +#: ../../mod/settings.php:1115 +msgid "Unseen channel activity" +msgstr "Ungesehene Kanal-Aktivität" + +#: ../../mod/settings.php:1116 +msgid "Unseen private messages" +msgstr "Ungelesene persönliche Nachrichten" + +#: ../../mod/settings.php:1116 ../../mod/settings.php:1121 +#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 +msgid "Recommended" +msgstr "Empfohlen" + +#: ../../mod/settings.php:1117 +msgid "Upcoming events" +msgstr "Baldige Termine" + +#: ../../mod/settings.php:1118 +msgid "Events today" +msgstr "Heutige Termine" + +#: ../../mod/settings.php:1119 +msgid "Upcoming birthdays" +msgstr "Baldige Geburtstage" + +#: ../../mod/settings.php:1119 +msgid "Not available in all themes" +msgstr "Nicht in allen Themes verfügbar" + +#: ../../mod/settings.php:1120 +msgid "System (personal) notifications" +msgstr "System – (persönliche) Benachrichtigungen" + +#: ../../mod/settings.php:1121 +msgid "System info messages" +msgstr "System – Info-Nachrichten" + +#: ../../mod/settings.php:1122 +msgid "System critical alerts" +msgstr "System – kritische Warnungen" + +#: ../../mod/settings.php:1123 +msgid "New connections" +msgstr "Neue Verbindungen" + +#: ../../mod/settings.php:1124 +msgid "System Registrations" +msgstr "System – Registrierungen" + +#: ../../mod/settings.php:1125 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an" + +#: ../../mod/settings.php:1127 +msgid "Notify me of events this many days in advance" +msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" + +#: ../../mod/settings.php:1127 +msgid "Must be greater than 0" +msgstr "Muss größer als 0 sein" + +#: ../../mod/settings.php:1129 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Konto-/Seitentypeinstellungen" + +#: ../../mod/settings.php:1130 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" + +#: ../../mod/settings.php:1133 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Bitte aktivieren Sie den Expertenmodus (unter Einstellungen > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" + +#: ../../mod/settings.php:1134 +msgid "Miscellaneous Settings" +msgstr "Sonstige Einstellungen" + +#: ../../mod/settings.php:1136 +msgid "Personal menu to display in your channel pages" +msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" + +#: ../../mod/settings.php:1137 ../../mod/removeme.php:61 +msgid "Remove Channel" +msgstr "Kanal löschen" + +#: ../../mod/settings.php:1138 +msgid "Remove this channel." +msgstr "Diesen Kanal löschen" + +#: ../../mod/id.php:11 +msgid "First Name" +msgstr "Vorname" + +#: ../../mod/id.php:12 +msgid "Last Name" +msgstr "Nachname" + +#: ../../mod/id.php:13 +msgid "Nickname" +msgstr "Spitzname" + +#: ../../mod/id.php:14 +msgid "Full Name" +msgstr "Voller Name" + +#: ../../mod/id.php:20 +msgid "Profile Photo 16px" +msgstr "Profilfoto 16 px" + +#: ../../mod/id.php:21 +msgid "Profile Photo 32px" +msgstr "Profilfoto 32 px" + +#: ../../mod/id.php:22 +msgid "Profile Photo 48px" +msgstr "Profilfoto 48 px" + +#: ../../mod/id.php:23 +msgid "Profile Photo 64px" +msgstr "Profilfoto 64 px" + +#: ../../mod/id.php:24 +msgid "Profile Photo 80px" +msgstr "Profilfoto 80 px" + +#: ../../mod/id.php:25 +msgid "Profile Photo 128px" +msgstr "Profilfoto 128 px" + +#: ../../mod/id.php:26 +msgid "Timezone" +msgstr "Zeitzone" + +#: ../../mod/id.php:27 +msgid "Homepage URL" +msgstr "Homepage-URL" + +#: ../../mod/id.php:29 +msgid "Birth Year" +msgstr "Geburtsjahr" + +#: ../../mod/id.php:30 +msgid "Birth Month" +msgstr "Geburtsmonat" + +#: ../../mod/id.php:31 +msgid "Birth Day" +msgstr "Geburtstag" + +#: ../../mod/id.php:32 +msgid "Birthdate" +msgstr "Geburtsdatum" #: ../../mod/message.php:41 msgid "Conversation removed." @@ -7829,113 +8184,13 @@ msgstr "Unterhaltung löschen" msgid "D, d M Y - g:i A" msgstr "D, d. M Y - G:i" -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menü-Element aktualisiert." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menü-Bestandteil hinzugefügt." - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Menü-Bestandteile verwalten" - -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Neues Menü-Bestandteil" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Link Text" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "URL des Links" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use RedMatrix magic-auth if available" -msgstr "Verwende die automatische RedMatrix-Authentifizierung (magic-auth), wenn verfügbar" - -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" - -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - #: ../../mod/mood.php:131 msgid "Set your current mood and tell your friends" msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" #: ../../mod/vote.php:97 msgid "Total votes" -msgstr "Stimmen gesamt" +msgstr "Stimmen insgesamt" #: ../../mod/vote.php:98 msgid "Average Rating" @@ -7952,10 +8207,8 @@ msgid "Remove This Channel" msgstr "Diesen Kanal löschen" #: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet, kann dieser Prozess nicht wieder rückgängig gemacht werden." +msgid "This channel will be completely removed from the network. " +msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." #: ../../mod/removeme.php:60 msgid "Remove this channel and all its clones from the network" @@ -7967,85 +8220,280 @@ msgid "" "removed from the network" msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanal löschen" +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "Konnte nicht auf den Kontakteintrag zugreifen." -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hilfe zu dieser Funktion" +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "Gewähltes Profil nicht gefunden." -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Layout-Name" +#: ../../mod/connedit.php:219 +msgid "Connection updated." +msgstr "Verbindung aktualisiert." -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" +#: ../../mod/connedit.php:221 +msgid "Failed to update connection record." +msgstr "Konnte den Verbindungseintrag nicht aktualisieren." -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." +#: ../../mod/connedit.php:267 +msgid "is now connected to" +msgstr "ist jetzt verbunden mit" -#: ../../mod/like.php:21 +#: ../../mod/connedit.php:392 +msgid "Could not access address book record." +msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." + +#: ../../mod/connedit.php:406 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." + +#: ../../mod/connedit.php:418 ../../mod/connedit.php:430 +#: ../../mod/connedit.php:442 ../../mod/connedit.php:454 +#: ../../mod/connedit.php:470 +msgid "Unable to set address book parameters." +msgstr "Konnte die Adressbuch-Parameter nicht setzen." + +#: ../../mod/connedit.php:494 +msgid "Connection has been removed." +msgstr "Verbindung wurde gelöscht." + +#: ../../mod/connedit.php:513 +#, php-format +msgid "View %s's profile" +msgstr "%ss Profil ansehen" + +#: ../../mod/connedit.php:517 +msgid "Refresh Permissions" +msgstr "Zugriffsrechte neu laden" + +#: ../../mod/connedit.php:520 +msgid "Fetch updated permissions" +msgstr "Aktualisierte Zugriffsrechte abfragen" + +#: ../../mod/connedit.php:524 +msgid "Recent Activity" +msgstr "Kürzliche Aktivitäten" + +#: ../../mod/connedit.php:527 +msgid "View recent posts and comments" +msgstr "Betrachte die neuesten Beiträge und Kommentare" + +#: ../../mod/connedit.php:534 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" + +#: ../../mod/connedit.php:535 +msgid "This connection is blocked!" +msgstr "Die Verbindung ist geblockt!" + +#: ../../mod/connedit.php:539 +msgid "Unignore" +msgstr "Nicht ignorieren" + +#: ../../mod/connedit.php:539 ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignorieren" + +#: ../../mod/connedit.php:542 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" + +#: ../../mod/connedit.php:543 +msgid "This connection is ignored!" +msgstr "Die Verbindung wird ignoriert!" + +#: ../../mod/connedit.php:547 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" + +#: ../../mod/connedit.php:547 +msgid "Archive" +msgstr "Archivieren" + +#: ../../mod/connedit.php:550 msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." -msgstr "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren." +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Ungültige Anfrage." +#: ../../mod/connedit.php:551 +msgid "This connection is archived!" +msgstr "Die Verbindung ist archiviert." -#: ../../mod/like.php:143 -msgid "thing" -msgstr "Sache" +#: ../../mod/connedit.php:555 +msgid "Unhide" +msgstr "Wieder sichtbar machen" -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." +#: ../../mod/connedit.php:555 +msgid "Hide" +msgstr "Verstecken" -#: ../../mod/like.php:228 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." +#: ../../mod/connedit.php:558 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../mod/like.php:387 +#: ../../mod/connedit.php:559 +msgid "This connection is hidden!" +msgstr "Die Verbindung ist versteckt!" + +#: ../../mod/connedit.php:566 +msgid "Delete this connection" +msgstr "Verbindung löschen" + +#: ../../mod/connedit.php:647 +msgid "Approve this connection" +msgstr "Verbindung genehmigen" + +#: ../../mod/connedit.php:647 +msgid "Accept connection to allow communication" +msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" + +#: ../../mod/connedit.php:652 +msgid "Set Affinity" +msgstr "Beziehung festlegen" + +#: ../../mod/connedit.php:655 +msgid "Set Profile" +msgstr "Profil festlegen" + +#: ../../mod/connedit.php:658 +msgid "Set Affinity & Profile" +msgstr "Beziehung und Profile festlegen" + +#: ../../mod/connedit.php:675 +msgid "Apply these permissions automatically" +msgstr "Diese Berechtigungen automatisch anwenden" + +#: ../../mod/connedit.php:677 +msgid "This connection's address is" +msgstr "Die Adresse des Kontakts lautet" + +#: ../../mod/connedit.php:680 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen verwendet." + +#: ../../mod/connedit.php:682 +msgid "Slide to adjust your degree of friendship" +msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" + +#: ../../mod/connedit.php:684 +msgid "Slide to adjust your rating" +msgstr "Verschieben, um deine Bewertung festzulegen" + +#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 +msgid "Optionally explain your rating" +msgstr "Optional kannst du deine Bewertung beschreiben" + +#: ../../mod/connedit.php:687 +msgid "Custom Filter" +msgstr "Benutzerdefinierter Filter" + +#: ../../mod/connedit.php:688 +msgid "Only import posts with this text" +msgstr "Importiere nur Beiträge mit diesem Text" + +#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 +msgid "" +"words one per line or #tags or /patterns/, leave blank to import all posts" +msgstr "Einzelne Worte pro Zeile, #Tags oder /Muster/. Frei lassen, um alle Posts zu importieren." + +#: ../../mod/connedit.php:689 +msgid "Do not import posts with this text" +msgstr "Importiere keine Einträge mit diesem Text" + +#: ../../mod/connedit.php:691 +msgid "This information is public!" +msgstr "Diese Information ist öffentlich!" + +#: ../../mod/connedit.php:696 +msgid "Connection Pending Approval" +msgstr "Verbindung wartet auf Bestätigung" + +#: ../../mod/connedit.php:697 +msgid "Connection Request" +msgstr "Verbindungs Anfrage" + +#: ../../mod/connedit.php:698 #, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s stimmt %2$ss %3$s zu" +msgid "" +"(%s) would like to connect with you. Please approve this connection to allow" +" communication." +msgstr "(%s) möchte sich mit dir verbinden. Bitte genehmige die Verbindung um eine Kommunikation zu ermöglichen." -#: ../../mod/like.php:389 +#: ../../mod/connedit.php:700 +msgid "Approve Later" +msgstr "Bestätige später" + +#: ../../mod/connedit.php:703 +msgid "inherited" +msgstr "geerbt" + +#: ../../mod/connedit.php:705 #, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s lehnt %2$ss %3$s ab" +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../mod/like.php:391 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s enthält sich zu %2$ss %3$s" +#: ../../mod/connedit.php:707 +msgid "Their Settings" +msgstr "Deren Einstellungen" -#: ../../mod/like.php:393 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s teil" +#: ../../mod/connedit.php:708 +msgid "My Settings" +msgstr "Meine Einstellungen" -#: ../../mod/like.php:395 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s nicht teil" +#: ../../mod/connedit.php:710 +msgid "Individual Permissions" +msgstr "Individuelle Zugriffsrechte" -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" +#: ../../mod/connedit.php:711 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität, als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../mod/like.php:481 -msgid "Action completed." -msgstr "Aktion durchgeführt." +#: ../../mod/connedit.php:712 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität, als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../mod/like.php:482 -msgid "Thank you." -msgstr "Vielen Dank." +#: ../../mod/connedit.php:713 +msgid "Last update:" +msgstr "Letzte Aktualisierung:" + +#: ../../mod/rmagic.php:40 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." + +#: ../../mod/rmagic.php:40 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" + +#: ../../mod/rmagic.php:44 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." + +#: ../../mod/rmagic.php:84 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" + +#: ../../mod/rmagic.php:85 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" + +#: ../../mod/rmagic.php:86 +msgid "Authenticate" +msgstr "Authentifizieren" #: ../../mod/mail.php:33 msgid "Unable to lookup recipient." @@ -8125,6 +8573,16 @@ msgstr "Ungültiger Anfrage-Identifikator." msgid "Discard" msgstr "Verwerfen" +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Bitte melde dich an." + +#: ../../mod/post.php:236 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." + #: ../../mod/new_channel.php:109 msgid "Add a Channel" msgstr "Kanal hinzufügen" @@ -8169,144 +8627,53 @@ msgstr "Kanaltyp" msgid "Read more about roles" msgstr "Mehr Informationen über Rollen" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installiert." -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "Fehlerhafte App." -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album nicht gefunden." +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Code einbetten" -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Album löschen" +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "App bearbeiten" -#: ../../mod/photos.php:159 ../../mod/photos.php:924 -msgid "Delete Photo" -msgstr "Foto löschen" +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "App erstellen" -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Name der App" -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" -#: ../../mod/photos.php:523 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL zum Icon" -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Fotos hochladen" +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "Versions-ID" -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:909 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Preis der App" -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:910 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" - -#: ../../mod/photos.php:556 -msgid "Do not show a status post for this upload" -msgstr "Keine Statusnachricht für diesen Upload anzeigen" - -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" - -#: ../../mod/photos.php:625 ../../mod/photos.php:1149 -#: ../../mod/photos.php:1165 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" - -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" - -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" - -#: ../../mod/photos.php:675 ../../mod/photos.php:1197 -msgid "View Photo" -msgstr "Foto ansehen" - -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." - -#: ../../mod/photos.php:751 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../mod/photos.php:903 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../mod/photos.php:905 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../mod/photos.php:906 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../mod/photos.php:913 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../mod/photos.php:915 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../mod/photos.php:919 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" - -#: ../../mod/photos.php:922 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" - -#: ../../mod/photos.php:1114 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../mod/photos.php:1203 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../mod/photos.php:1226 -msgid "Recent Photos" -msgstr "Neueste Fotos" +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" #: ../../mod/ping.php:263 msgid "sent you a private message" @@ -8320,6 +8687,27 @@ msgstr "hat deinen Kanal hinzugefügt" msgid "posted an event" msgstr "hat einen Termin veröffentlicht" +#: ../../mod/layouts.php:176 +msgid "Comanche page description language help" +msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" + +#: ../../mod/layouts.php:180 +msgid "Layout Description" +msgstr "Gestaltungsbeschreibung" + +#: ../../mod/layouts.php:185 +msgid "Download PDL file" +msgstr "PDL-Datei herunterladen" + +#: ../../mod/home.php:73 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" + +#: ../../mod/page.php:126 +msgid "Lorem Ipsum" +msgstr "Lorem Ipsum" + #: ../../mod/bookmarks.php:38 msgid "Bookmark added" msgstr "Lesezeichen hinzugefügt" @@ -8332,110 +8720,30 @@ msgstr "Meine Lesezeichen" msgid "My Connections Bookmarks" msgstr "Lesezeichen meiner Kontakte" -#: ../../mod/channel.php:87 +#: ../../mod/channel.php:97 msgid "Insufficient permissions. Request redirected to profile page." msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." +#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Diese Einstellung erfordert spezielles Vorgehen, die Bearbeitung wurde blockiert." -#: ../../mod/register.php:50 +#: ../../mod/pconfig.php:49 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" + +#: ../../mod/pconfig.php:50 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlass diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." - -#: ../../mod/register.php:117 +#: ../../mod/suggest.php:35 msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrierung auf einem anderen, angeschlossenen Server" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Passwort" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Authentifizieren" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." #: ../../mod/poll.php:64 msgid "Poll" @@ -8443,36 +8751,40 @@ msgstr "Umfrage" #: ../../mod/poll.php:69 msgid "View Results" -msgstr "Ergebnisse" +msgstr "Ergebnisse ansehen" #: ../../mod/service_limits.php:19 msgid "No service class restrictions found." msgstr "Keine Dienstklassenbeschränkungen gefunden." -#: ../../mod/sharedwithme.php:99 +#: ../../mod/sharedwithme.php:94 msgid "Files: shared with me" msgstr "Dateien, die mit mir geteilt wurden" -#: ../../mod/sharedwithme.php:103 +#: ../../mod/sharedwithme.php:96 +msgid "NEW" +msgstr "NEU" + +#: ../../mod/sharedwithme.php:99 msgid "Remove all files" msgstr "Alle Dateien löschen" -#: ../../mod/sharedwithme.php:104 +#: ../../mod/sharedwithme.php:100 msgid "Remove this file" msgstr "Diese Datei löschen" #: ../../view/theme/apw/php/config.php:202 #: ../../view/theme/apw/php/config.php:236 msgid "Schema Default" -msgstr "Standard-Schema" +msgstr "Schemastandard" #: ../../view/theme/apw/php/config.php:203 msgid "Sans-Serif" -msgstr "Sans-Serif" +msgstr "Sans Serif" #: ../../view/theme/apw/php/config.php:204 msgid "Monospace" -msgstr "Monospace" +msgstr "Monospace (dicktengleich)" #: ../../view/theme/apw/php/config.php:259 #: ../../view/theme/redbasic/php/config.php:102 @@ -8480,14 +8792,13 @@ msgid "Theme settings" msgstr "Theme-Einstellungen" #: ../../view/theme/apw/php/config.php:260 -#: ../../view/theme/redbasic/php/config.php:103 msgid "Set scheme" -msgstr "Schema" +msgstr "Schema festlegen" #: ../../view/theme/apw/php/config.php:261 #: ../../view/theme/redbasic/php/config.php:124 msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare" +msgstr "Schriftgröße für Beiträge und Kommentare festlegen" #: ../../view/theme/apw/php/config.php:262 msgid "Set font face" @@ -8495,31 +8806,31 @@ msgstr "Schriftart" #: ../../view/theme/apw/php/config.php:263 msgid "Set iconset" -msgstr "Icon-Set" +msgstr "Symbolsatz festlegen" #: ../../view/theme/apw/php/config.php:264 msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Ausmaß der großen Schatten (Voreinstellung 15px 15px 15px)" +msgstr "Ausmaß der großen Schatten (Default 15px 15px 15px)" #: ../../view/theme/apw/php/config.php:265 msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Ausmaß der kleinen Schatten (Voreinstellung 5px 5px 5px)" +msgstr "Ausmaß der kleinen Schatten festlegen (Voreinstellung 5px 5px 5px)" #: ../../view/theme/apw/php/config.php:266 msgid "Set shadow color, default #000" -msgstr "Farbe der Schatten (Voreinstellung #000)" +msgstr "Schattenfarbe (Voreinstellung #000)" #: ../../view/theme/apw/php/config.php:267 msgid "Set radius size, default 5px" -msgstr "Ecken-Radius (Voreinstellung 5px)" +msgstr "Eckenradius (Voreinstellung 5px)" #: ../../view/theme/apw/php/config.php:268 msgid "Set line-height for posts and comments" -msgstr "Zeilenhöhe in Beiträgen und Kommentaren" +msgstr "Zeilenhöhe für Beiträge und Kommentare" #: ../../view/theme/apw/php/config.php:269 msgid "Set background image" -msgstr "Hintergrundbild" +msgstr "Hintergrundbild festlegen" #: ../../view/theme/apw/php/config.php:270 msgid "Set background attachment" @@ -8527,15 +8838,15 @@ msgstr "Hintergrunddatei" #: ../../view/theme/apw/php/config.php:271 msgid "Set background color" -msgstr "Hintergrundfarbe" +msgstr "Hintergrundfarbe festlegen" #: ../../view/theme/apw/php/config.php:272 msgid "Set section background image" -msgstr "Hintergrundbild für die Section" +msgstr "Hintergrundbild für die section" #: ../../view/theme/apw/php/config.php:273 msgid "Set section background color" -msgstr "Hintergrundfarbe für die Section" +msgstr "Hintergrundfarbe für die section" #: ../../view/theme/apw/php/config.php:274 msgid "Set color of items - use hex" @@ -8547,15 +8858,15 @@ msgstr "Farbe für Links – Hex benutzen" #: ../../view/theme/apw/php/config.php:276 msgid "Set max-width for items. Default 400px" -msgstr "Maximale Breite von Beiträgen (Voreinstellung 400px)" +msgstr "Maximalbreite von Beiträgen (Voreinstellung 400px)" #: ../../view/theme/apw/php/config.php:277 msgid "Set min-width for items. Default 240px" -msgstr "Minimale Breite von Beiträgen (Voreinstellung 240px)" +msgstr "Minimalbreite von Beiträgen (Voreinstellung 240px)" #: ../../view/theme/apw/php/config.php:278 msgid "Set the generic content wrapper width. Default 48%" -msgstr "Breite des \"generic content wrapper\" (Voreinstellung 48%)" +msgstr "Breite des „generic content wrapper“ (Voreinstellung 48%)" #: ../../view/theme/apw/php/config.php:279 msgid "Set color of fonts - use hex" @@ -8563,11 +8874,11 @@ msgstr "Schriftfarbe – Hex benutzen" #: ../../view/theme/apw/php/config.php:280 msgid "Set background-size element" -msgstr "Größe des Hintergrund-Elements" +msgstr "size-Element für den Hintergrund" #: ../../view/theme/apw/php/config.php:281 msgid "Item opacity" -msgstr "Deckkraft der Beiträge" +msgstr "Deckkraft für Beiträge" #: ../../view/theme/apw/php/config.php:282 msgid "Display post previews only" @@ -8575,7 +8886,7 @@ msgstr "Nur Beitragsvorschau anzeigen" #: ../../view/theme/apw/php/config.php:283 msgid "Display side bar on channel page" -msgstr "Zeige die Seitenleiste auf der Kanal-Seite" +msgstr "Seitenleiste auf der Kanalseite anzeigen" #: ../../view/theme/apw/php/config.php:284 msgid "Colour of the navigation bar" @@ -8583,32 +8894,36 @@ msgstr "Farbe der Navigationsleiste" #: ../../view/theme/apw/php/config.php:285 msgid "Item float" -msgstr "Beitragsfluss" +msgstr "float für Beiträge" #: ../../view/theme/apw/php/config.php:286 msgid "Left offset of the section element" -msgstr "Linker Rand des Section Elements" +msgstr "Linker offset des section-Elements" #: ../../view/theme/apw/php/config.php:287 msgid "Right offset of the section element" -msgstr "Rechter Rand des Section Elements" +msgstr "Rechter offset des section-Elements" #: ../../view/theme/apw/php/config.php:288 msgid "Section width" -msgstr "Breite der Section" +msgstr "Breite der section" #: ../../view/theme/apw/php/config.php:289 msgid "Left offset of the aside" -msgstr "Linker Rand des Aside-Elements" +msgstr "Linker offset der Seitenleiste" #: ../../view/theme/apw/php/config.php:290 msgid "Right offset of the aside element" -msgstr "Rechter Rand des Aside-Elements" +msgstr "Rechter offset der Seitenleiste" -#: ../../view/theme/redbasic/php/config.php:84 +#: ../../view/theme/redbasic/php/config.php:82 msgid "Light (Red Matrix default)" msgstr "Hell (RedMatrix-Voreinstellung)" +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Select scheme" +msgstr "Schema wählen" + #: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" msgstr "Schmale Navigationsleiste" @@ -8655,115 +8970,125 @@ msgstr "Farbe der Schrift des Banners" #: ../../view/theme/redbasic/php/config.php:115 msgid "Set the background color" -msgstr "Hintergrundfarbe" +msgstr "Hintergrundfarbe festlegen" #: ../../view/theme/redbasic/php/config.php:116 msgid "Set the background image" -msgstr "Hintergrundbild" +msgstr "Hintergrundbild festlegen" #: ../../view/theme/redbasic/php/config.php:117 msgid "Set the background color of items" -msgstr "Hintergrundfarbe für Beiträge" +msgstr "Hintergrundfarbe für Beiträge festlegen" #: ../../view/theme/redbasic/php/config.php:118 msgid "Set the background color of comments" -msgstr "Hintergrundfarbe für Kommentare" +msgstr "Hintergrundfarbe für Kommentare festlegen" #: ../../view/theme/redbasic/php/config.php:119 msgid "Set the border color of comments" -msgstr "Farbe des Randes von Kommentaren" +msgstr "Farbe des Randes von Kommentaren festlegen" #: ../../view/theme/redbasic/php/config.php:120 msgid "Set the indent for comments" -msgstr "Einzugsbreite für Kommentare" +msgstr "Einzugsbreite für Kommentare festlegen" #: ../../view/theme/redbasic/php/config.php:121 msgid "Set the basic color for item icons" -msgstr "Grundfarbe für Beitrags-Icons" +msgstr "Grundfarbe für Beitragssymbole festlegen" #: ../../view/theme/redbasic/php/config.php:122 msgid "Set the hover color for item icons" -msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" +msgstr "Farbe für Beitragssymbole unter dem Mauszeiger festlegen" #: ../../view/theme/redbasic/php/config.php:123 msgid "Set font-size for the entire application" -msgstr "Schriftgröße für die gesamte Anwendung" +msgstr "Schriftgröße für die gesamte Anwendung festlegen" + +#: ../../view/theme/redbasic/php/config.php:123 +msgid "Example: 14px" +msgstr "Beispiel: 14px" #: ../../view/theme/redbasic/php/config.php:125 msgid "Set font-color for posts and comments" -msgstr "Schriftfarbe für Beiträge und Kommentare" +msgstr "Schriftfarbe für Beiträge und Kommentare festlegen" #: ../../view/theme/redbasic/php/config.php:126 msgid "Set radius of corners" -msgstr "Ecken-Radius" +msgstr "Eckenradius festlegen" #: ../../view/theme/redbasic/php/config.php:127 msgid "Set shadow depth of photos" -msgstr "Schattentiefe von Fotos" +msgstr "Schattentiefe von Fotos festlegen" #: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of conversation regions" -msgstr "Maximalbreite der Unterhaltungsbereiche" +msgid "Set maximum width of content region in pixel" +msgstr "Maximalbreite des Inhaltsbereichs in Pixel festlegen" + +#: ../../view/theme/redbasic/php/config.php:128 +msgid "Leave empty for default width" +msgstr "Leer lassen für Standardbreite" #: ../../view/theme/redbasic/php/config.php:129 -msgid "Center conversation regions" -msgstr "Konversationsbereich zentrieren" +msgid "Center page content" +msgstr "Seiteninhalt zentrieren" #: ../../view/theme/redbasic/php/config.php:130 msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)" +msgstr "Mindestdeckkraft der Navigationsleiste festlegen - zum Verstecken" #: ../../view/theme/redbasic/php/config.php:131 msgid "Set size of conversation author photo" -msgstr "Größe der Avatare von Themenstartern" +msgstr "Größe der Avatare von Themenstartern festlegen" #: ../../view/theme/redbasic/php/config.php:132 msgid "Set size of followup author photos" -msgstr "Größe der Avatare von Kommentatoren" +msgstr "Größe der Avatare von Kommentatoren festlegen" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Sloppy photo albums" -msgstr "Schräge Fotoalben" - -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Are you a clean desk or a messy desk person?" -msgstr "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?" - -#: ../../boot.php:1357 +#: ../../boot.php:1355 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1360 +#: ../../boot.php:1358 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1527 +#: ../../boot.php:1525 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können." -#: ../../boot.php:1555 +#: ../../boot.php:1553 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1556 +#: ../../boot.php:1554 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1559 +#: ../../boot.php:1557 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:1674 -msgid "permission denied" -msgstr "Zugriff verweigert" - -#: ../../boot.php:1675 -msgid "Got Zot?" -msgstr "Haste schon Zot?" - -#: ../../boot.php:2158 +#: ../../boot.php:2177 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" + +#: ../../boot.php:2312 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." + +#: ../../boot.php:2315 +#, php-format +msgid "[red] Website SSL error for %s" +msgstr "[red] Website-SSL-Fehler für %s" + +#: ../../boot.php:2352 +msgid "Cron/Scheduled tasks not running." +msgstr "Cron-Aufgaben laufen nicht." + +#: ../../boot.php:2356 +#, php-format +msgid "[red] Cron tasks not running on %s" +msgstr "[red] Cron-Aufgaben für %s laufen nicht" diff --git a/view/de/strings.php b/view/de/strings.php index 2679e9eb1..a4a92552a 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -7,17 +7,84 @@ function string_plural_select_de($n){ ; $a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; $a->strings["Profile Photos"] = "Profilfotos"; -$a->strings["Permission denied."] = "Zugang verweigert"; -$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes"; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; -$a->strings["Photo storage failed."] = "Foto speichern schlug fehl"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Upload New Photos"] = "Lade neue Fotos hoch"; +$a->strings["Edit"] = "Bearbeiten"; +$a->strings["Frequently"] = "Häufig"; +$a->strings["Hourly"] = "Stündlich"; +$a->strings["Twice daily"] = "Zwei Mal am Tag"; +$a->strings["Daily"] = "Täglich"; +$a->strings["Weekly"] = "Wöchentlich"; +$a->strings["Monthly"] = "Monatlich"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-Mail"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; $a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; $a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +$a->strings["No username found in import file."] = "Kein Benutzername in der Importdatei gefunden."; +$a->strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; +$a->strings["Import completed."] = "Import abgeschlossen."; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen."; +$a->strings["Default privacy group for new contacts"] = "Standard-Sammlung für neue Kontakte"; +$a->strings["All Channels"] = "Alle Kanäle"; +$a->strings["edit"] = "Bearbeiten"; +$a->strings["Collections"] = "Sammlungen"; +$a->strings["Edit collection"] = "Sammlung bearbeiten"; +$a->strings["Add new collection"] = "Neue Sammlung hinzufügen"; +$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; +$a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt"; +$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; +$a->strings["An invitation is required."] = "Eine Einladung ist erforderlich."; +$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden"; +$a->strings["Please enter the required information."] = "Bitte gib die erforderlichen Informationen ein."; +$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen"; +$a->strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; +$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; +$a->strings["Administrator"] = "Administrator"; +$a->strings["your registration password"] = "Dein Registrierungspasswort"; +$a->strings["Registration details for %s"] = "Registrierungsdetails für %s"; +$a->strings["Account approved."] = "Account bestätigt."; +$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen"; +$a->strings["Account verified. Please login."] = "Konto geprüft. Bitte melde Dich an!"; +$a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; +$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; +$a->strings["Miscellaneous"] = "Verschiedenes"; +$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; +$a->strings["Required"] = "Erforderlich"; +$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["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; +$a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; +$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +$a->strings["Directory Options"] = "Verzeichnisoptionen"; +$a->strings["Safe Mode"] = "Sicherer Modus"; +$a->strings["No"] = "Nein"; +$a->strings["Yes"] = "Ja"; +$a->strings["Public Forums Only"] = "Nur öffentliche Foren"; +$a->strings["This Website Only"] = "Nur diese Website"; $a->strings["New Page"] = "Neue Seite"; -$a->strings["Edit"] = "Bearbeiten"; $a->strings["View"] = "Ansicht"; $a->strings["Preview"] = "Vorschau"; $a->strings["Actions"] = "Aktionen"; @@ -25,97 +92,45 @@ $a->strings["Page Link"] = "Seiten-Link"; $a->strings["Title"] = "Titel"; $a->strings["Created"] = "Erstellt"; $a->strings["Edited"] = "Geändert"; -$a->strings["Categories"] = "Kategorien"; -$a->strings["Apps"] = "Apps"; -$a->strings["System"] = "System"; -$a->strings["Personal"] = "Persönlich"; -$a->strings["Create Personal App"] = "Persönliche App erstellen"; -$a->strings["Edit Personal App"] = "Persönliche App bearbeiten"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken"; -$a->strings["Suggestions"] = "Vorschläge"; -$a->strings["See more..."] = "Mehr anzeigen …"; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; -$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen"; -$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"; -$a->strings["Notes"] = "Notizen"; -$a->strings["Save"] = "Speichern"; -$a->strings["Remove term"] = "Eintrag löschen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchanfragen"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Saved Folders"] = "Gespeicherte Ordner"; -$a->strings["Everything"] = "Alles"; -$a->strings["Archives"] = "Archive"; -$a->strings["Refresh"] = "Aktualisieren"; -$a->strings["Me"] = "Ich"; -$a->strings["Best Friends"] = "Beste Freunde"; -$a->strings["Friends"] = "Freunde"; -$a->strings["Co-workers"] = "Kollegen"; -$a->strings["Former Friends"] = "ehem. Freunde"; -$a->strings["Acquaintances"] = "Bekannte"; -$a->strings["Everybody"] = "Jeder"; -$a->strings["Account settings"] = "Konto-Einstellungen"; -$a->strings["Channel settings"] = "Kanal-Einstellungen"; -$a->strings["Additional features"] = "Zusätzliche Funktionen"; -$a->strings["Feature/Addon settings"] = "Plugin-Einstellungen"; -$a->strings["Display settings"] = "Anzeige-Einstellungen"; -$a->strings["Connected apps"] = "Verbundene Apps"; -$a->strings["Export channel"] = "Kanal exportieren"; -$a->strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; -$a->strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -$a->strings["Channel Sources"] = "Kanal-Quellen"; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Check Mail"] = "E-Mails abrufen"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["Chat Rooms"] = "Chaträume"; -$a->strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -$a->strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -$a->strings["photo/image"] = "Foto/Bild"; -$a->strings["Rate Me"] = "Bewerte mich"; -$a->strings["View Ratings"] = "Bewertungen ansehen"; -$a->strings["Public Hubs"] = "Öffentliche Hubs"; -$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung"; -$a->strings["redmatrix"] = "redmatrix"; -$a->strings["Thank You,"] = "Danke."; -$a->strings["%s Administrator"] = "der Administrator von %s"; -$a->strings["%s "] = "%s "; -$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Benachrichtigung] Neue Mail auf %s empfangen"; -$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; -$a->strings["a private message"] = "eine private Nachricht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]einen %4\$s[/zrl] kommentiert"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; -$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; -$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; -$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."; -$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand"; -$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s hat auf Deine Pinnwand auf %3\$s geschrieben"; -$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s hat auf [zrl=%3\$s]Deine Pinnwand[/zrl] geschrieben"; -$a->strings["[Red:Notify] %s tagged you"] = "[Red:Benachrichtigung] %s hat Dich erwähnt"; -$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s erwähnt"; -$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat Dich erwähnt[/zrl]."; -$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Benachrichtigung] %1\$s hat Dich angestupst"; -$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s angestupst"; -$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]hat Dich angestupst[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat Deinen Beitrag auf %3\$s verschlagwortet"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen Beitrag[/zrl] verschlagwortet"; -$a->strings["[Red:Notify] Introduction received"] = "[Red:Benachrichtigung] Vorstellung erhalten"; -$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, Du hast eine neue Verbindungsanfrage von '%2\$s' auf %3\$s erhalten"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, Du hast [zrl=%2\$s]eine neue Verbindungsanfrage[/zrl] von %3\$s erhalten."; -$a->strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen"; -$a->strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen."; -$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"; -$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, Du hast einen Kontaktvorschlag von „%2\$s“ auf %3\$s erhalten"; -$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, Du hast [zrl=%2\$s]einen Kontaktvorschlag[/zrl] für %3\$s von %4\$s erhalten."; -$a->strings["Name:"] = "Name:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; -$a->strings["[Red:Notify]"] = "[Red:Benachrichtigung]"; +$a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; +$a->strings["Default"] = "Standard"; +$a->strings["Delete this item?"] = "Dieses Element löschen?"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["[+] show all"] = "[+] Alle anzeigen"; +$a->strings["[-] show less"] = "[-] Weniger anzeigen"; +$a->strings["[+] expand"] = "[+] aufklappen"; +$a->strings["[-] collapse"] = "[-] einklappen"; +$a->strings["Password too short"] = "Kennwort zu kurz"; +$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; +$a->strings["everybody"] = "alle"; +$a->strings["Secret Passphrase"] = "geheime Passphrase"; +$a->strings["Passphrase hint"] = "Hinweis zur Passphrase"; +$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; +$a->strings["close all"] = "Alle schließen"; +$a->strings["Nothing new here"] = "Nichts Neues hier"; +$a->strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; +$a->strings["Rating"] = "Bewertung"; +$a->strings["Describe (optional)"] = "Beschreibung (optional)"; +$a->strings["Submit"] = "Bestätigen"; +$a->strings["Please enter a link URL"] = "Bitte geben Sie eine Link-URL ein"; +$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Sind Sie sicher, dass Sie diese Seite verlassen möchten?"; +$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +$a->strings["ago"] = "her"; +$a->strings["from now"] = "von jetzt"; +$a->strings["less than a minute"] = "weniger als eine Minute"; +$a->strings["about a minute"] = "ungefähr eine Minute"; +$a->strings["%d minutes"] = "%d Minuten"; +$a->strings["about an hour"] = "ungefähr eine Stunde"; +$a->strings["about %d hours"] = "ungefähr %d Stunden"; +$a->strings["a day"] = "ein Tag"; +$a->strings["%d days"] = "%d Tage"; +$a->strings["about a month"] = "ungefähr ein Monat"; +$a->strings["%d months"] = "%d Monate"; +$a->strings["about a year"] = "ungefähr ein Jahr"; +$a->strings["%d years"] = "%d Jahre"; +$a->strings[" "] = " "; +$a->strings["timeago.numbers"] = "timeago.numbers"; $a->strings["prev"] = "vorherige"; $a->strings["first"] = "erste"; $a->strings["last"] = "letzte"; @@ -129,6 +144,7 @@ $a->strings["%d Connection"] = array( ); $a->strings["View Connections"] = "Verbindungen anzeigen"; $a->strings["Search"] = "Suche"; +$a->strings["Save"] = "Speichern"; $a->strings["poke"] = "anstupsen"; $a->strings["poked"] = "stupste"; $a->strings["ping"] = "anpingen"; @@ -187,70 +203,22 @@ $a->strings["remove category"] = "Kategorie entfernen"; $a->strings["remove from file"] = "aus der Datei entfernen"; $a->strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; $a->strings["Link to Source"] = "Link zur Quelle"; -$a->strings["Select a page layout: "] = "Ein Seiten-Layout auswählen:"; $a->strings["default"] = "Standard"; -$a->strings["Page content type: "] = "Content-Typ der Seite:"; +$a->strings["Page layout"] = "Seitengestaltung"; +$a->strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Gestaltungen erstellen"; +$a->strings["Page content type"] = "Art des Seiteninhalts"; $a->strings["Select an alternate language"] = "Wähle eine alternative Sprache"; $a->strings["photo"] = "Foto"; $a->strings["event"] = "Termin"; $a->strings["status"] = "Status"; $a->strings["comment"] = "Kommentar"; $a->strings["activity"] = "Aktivität"; -$a->strings["Design"] = "Design"; +$a->strings["Design Tools"] = "Gestaltungswerkzeuge"; $a->strings["Blocks"] = "Blöcke"; $a->strings["Menus"] = "Menüs"; -$a->strings["Layouts"] = "Layouts"; +$a->strings["Layouts"] = "Gestaltungen"; $a->strings["Pages"] = "Seiten"; $a->strings["Collection"] = "Ordner"; -$a->strings["Item was not found."] = "Beitrag wurde nicht gefunden."; -$a->strings["No source file."] = "Keine Quelldatei."; -$a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; -$a->strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; -$a->strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; -$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; -$a->strings["Path not available."] = "Pfad nicht verfügbar."; -$a->strings["Empty pathname"] = "Leere Pfadangabe"; -$a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; -$a->strings["Path not found."] = "Pfad nicht gefunden."; -$a->strings["mkdir failed."] = "mkdir fehlgeschlagen."; -$a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; -$a->strings["Delete this item?"] = "Dieses Element löschen?"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["[+] show all"] = "[+] Alle anzeigen"; -$a->strings["[-] show less"] = "[-] Weniger anzeigen"; -$a->strings["[+] expand"] = "[+] aufklappen"; -$a->strings["[-] collapse"] = "[-] einklappen"; -$a->strings["Password too short"] = "Kennwort zu kurz"; -$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; -$a->strings["everybody"] = "alle"; -$a->strings["Secret Passphrase"] = "geheime Passphrase"; -$a->strings["Passphrase hint"] = "Hinweis zur Passphrase"; -$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; -$a->strings["close all"] = "Alle schließen"; -$a->strings["Nothing new here"] = "Nichts Neues hier"; -$a->strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; -$a->strings["Rating"] = "Bewertung"; -$a->strings["Describe (optional)"] = "Beschreibung (optional)"; -$a->strings["Submit"] = "Bestätigen"; -$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -$a->strings["timeago.prefixFromNow"] = " "; -$a->strings["ago"] = "her"; -$a->strings["from now"] = "von jetzt"; -$a->strings["less than a minute"] = "weniger als eine Minute"; -$a->strings["about a minute"] = "ungefähr eine Minute"; -$a->strings["%d minutes"] = "%d Minuten"; -$a->strings["about an hour"] = "ungefähr eine Stunde"; -$a->strings["about %d hours"] = "ungefähr %d Stunden"; -$a->strings["a day"] = "ein Tag"; -$a->strings["%d days"] = "%d Tage"; -$a->strings["about a month"] = "ungefähr ein Monat"; -$a->strings["%d months"] = "%d Monate"; -$a->strings["about a year"] = "ungefähr ein Jahr"; -$a->strings["%d years"] = "%d Jahre"; -$a->strings[" "] = " "; -$a->strings["timeago.numbers"] = "timeago.numbers"; $a->strings["parent"] = "Übergeordnetes Verzeichnis"; $a->strings["Principal"] = "Prinzipal"; $a->strings["Addressbook"] = "Adressbuch"; @@ -273,20 +241,12 @@ $a->strings["Delete"] = "Löschen"; $a->strings["Create new folder"] = "Neuen Ordner anlegen"; $a->strings["Upload file"] = "Datei hochladen"; $a->strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; -$a->strings["Tags"] = "Schlagwörter"; -$a->strings["Keywords"] = "Schlüsselwörter"; -$a->strings["have"] = "habe"; -$a->strings["has"] = "hat"; -$a->strings["want"] = "will"; -$a->strings["wants"] = "will"; -$a->strings["like"] = "mag"; -$a->strings["likes"] = "gefällt"; -$a->strings["dislike"] = "verurteile"; -$a->strings["dislikes"] = "missfällt"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "Gefällt mir", - 1 => "Gefällt mir", -); +$a->strings["view full size"] = "In Vollbildansicht anschauen"; +$a->strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung"; +$a->strings["\$projectname"] = "\$projectname"; +$a->strings["Thank You,"] = "Danke."; +$a->strings["%s Administrator"] = "der Administrator von %s"; +$a->strings["No Subject"] = "Kein Betreff"; $a->strings["General Features"] = "Allgemeine Funktionen"; $a->strings["Content Expiration"] = "Verfall von Inhalten"; $a->strings["Remove posts/comments and/or private messages at a future time"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."; @@ -299,11 +259,11 @@ $a->strings["Save and load profile details across sites/channels"] = "Speichere $a->strings["Web Pages"] = "Webseiten"; $a->strings["Provide managed web pages on your channel"] = "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"; $a->strings["Private Notes"] = "Private Notizen"; -$a->strings["Enables a tool to store notes and reminders"] = "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren"; +$a->strings["Enables a tool to store notes and reminders"] = "Aktiviert ein Werkzeug zum Speichern von Notizen und Erinnerungen"; $a->strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; $a->strings["Change channels directly from within the navigation dropdown menu"] = "Wechsle direkt über das Navigationsmenü zu anderen Kanälen"; -$a->strings["Extended Identity Sharing"] = "Erweitertes Teilen von Identitäten"; -$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Red-Servern geteilt."; +$a->strings["Photo Location"] = "Aufnahmeort"; +$a->strings["If location data is available on uploaded photos, link this to a map."] = "Aufnahmeort des Fotos auf einer Karte verlinken, falls verfügbar."; $a->strings["Expert Mode"] = "Expertenmodus"; $a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren"; $a->strings["Premium Channel"] = "Premium-Kanal"; @@ -312,33 +272,36 @@ $a->strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; $a->strings["Use Markdown"] = "Markdown benutzen"; $a->strings["Allow use of \"Markdown\" to format posts"] = "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen"; $a->strings["Large Photos"] = "Große Fotos"; -$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist das deaktiviert, werden kleine Vorschaubilder (320px) angezeigt."; +$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist dies deaktiviert, werden kleine Vorschaubilder (320px) angezeigt."; +$a->strings["Channel Sources"] = "Kanal-Quellen"; $a->strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds"; $a->strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)"; $a->strings["Enable voting tools"] = "Umfragewerkzeuge aktivieren"; -$a->strings["Provide a class of post which others can vote on"] = "Aktiviere die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, Deinem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)"; -$a->strings["Flag Adult Photos"] = "Nicht jugendfreie Fotos markieren"; -$a->strings["Provide photo edit option to hide adult photos from default album view"] = "Stellt eine Option zum Verstecken von Fotos mit nicht jugendfreien Inhalten in der Standard-Albumansicht bereit"; +$a->strings["Provide a class of post which others can vote on"] = "Aktiviere die Umfragewerkzeuge, damit andere Benutzer über Deine Beiträge abstimmen können. Muss im Beitrag selbst noch aktiviert werden."; $a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; $a->strings["Search by Date"] = "Suche nach Datum"; $a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; $a->strings["Collections Filter"] = "Filter für Sammlung"; $a->strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchanfragen"; $a->strings["Save search terms for re-use"] = "Suchbegriffe zur Wiederverwendung abspeichern"; $a->strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; $a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast"; $a->strings["Network New Tab"] = "Netzwerkreiter Neu"; $a->strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"; -$a->strings["Affinity Tool"] = "Beziehungs-Tool"; +$a->strings["Affinity Tool"] = "Beziehungswerkzeug"; $a->strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung"; +$a->strings["Connection Filtering"] = "Filter für Sammlungen"; +$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtere eingehende Beiträge von Kontakten auf der Basis von Schlüsselwörtern und dem Inhalt."; $a->strings["Suggest Channels"] = "Kanäle vorschlagen"; $a->strings["Show channel suggestions"] = "Kanalvorschläge anzeigen"; -$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; +$a->strings["Post/Comment Tools"] = "Beitrag-/Kommentarwerkzeuge"; $a->strings["Tagging"] = "Verschlagworten"; $a->strings["Ability to tag existing posts"] = "Möglichkeit, um existierende Beiträge zu verschlagworten"; $a->strings["Post Categories"] = "Beitrags-Kategorien"; $a->strings["Add categories to your posts"] = "Kategorien für Beiträge"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; $a->strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; $a->strings["Dislike Posts"] = "Gefällt-mir-nicht Beiträge"; $a->strings["Ability to dislike posts/comments"] = "„Gefällt mir nicht“ ermöglichen"; @@ -346,137 +309,174 @@ $a->strings["Star Posts"] = "Beiträge mit Sternchen versehen"; $a->strings["Ability to mark special posts with a star indicator"] = "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"; $a->strings["Tag Cloud"] = "Schlagwort-Wolke"; $a->strings["Provide a personal tag cloud on your channel page"] = "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen"; -$a->strings["Logged out."] = "Ausgeloggt."; -$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -$a->strings["Login failed."] = "Login fehlgeschlagen."; -$a->strings["Frequently"] = "Häufig"; -$a->strings["Hourly"] = "Stündlich"; -$a->strings["Twice daily"] = "Zwei Mal am Tag"; -$a->strings["Daily"] = "Täglich"; -$a->strings["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-Mail"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Sammlung mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen."; -$a->strings["Default privacy group for new contacts"] = "Standard-Sammlung für neue Kontakte"; -$a->strings["All Channels"] = "Alle Kanäle"; -$a->strings["edit"] = "Bearbeiten"; -$a->strings["Collections"] = "Sammlungen"; -$a->strings["Edit collection"] = "Sammlung bearbeiten"; -$a->strings["Create a new collection"] = "Neue Sammlung erzeugen"; -$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind"; -$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; -$a->strings["Empty name"] = "Namensfeld leer"; -$a->strings["Name too long"] = "Name ist zu lang"; -$a->strings["No account identifier"] = "Keine Account-Kennung"; -$a->strings["Nickname is required."] = "Spitzname ist erforderlich."; -$a->strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; -$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; -$a->strings["Default Profile"] = "Standard-Profil"; -$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; -$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; -$a->strings["Change profile photo"] = "Profilfoto ändern"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/bearbeiten"; -$a->strings["Create New Profile"] = "Neues Profil erstellen"; -$a->strings["Edit Profile"] = "Profile bearbeiten"; -$a->strings["Profile Image"] = "Profilfoto:"; -$a->strings["visible to everybody"] = "sichtbar für jeden"; -$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +$a->strings["Categories"] = "Kategorien"; +$a->strings["Apps"] = "Apps"; +$a->strings["System"] = "System"; +$a->strings["Personal"] = "Persönlich"; +$a->strings["Create Personal App"] = "Persönliche App erstellen"; +$a->strings["Edit Personal App"] = "Persönliche App bearbeiten"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["Ignore/Hide"] = "Ignorieren/Verstecken"; +$a->strings["Suggestions"] = "Vorschläge"; +$a->strings["See more..."] = "Mehr anzeigen …"; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; +$a->strings["Add New Connection"] = "Neue Verbindung hinzufügen"; +$a->strings["Enter the channel address"] = "Adresse des Kanals eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"; +$a->strings["Notes"] = "Notizen"; +$a->strings["Remove term"] = "Eintrag löschen"; +$a->strings["Everything"] = "Alles"; +$a->strings["Archives"] = "Archive"; +$a->strings["Me"] = "Ich"; +$a->strings["Family"] = "Familie"; +$a->strings["Friends"] = "Freunde"; +$a->strings["Acquaintances"] = "Bekannte"; +$a->strings["All"] = "Alle"; +$a->strings["Refresh"] = "Aktualisieren"; +$a->strings["Account settings"] = "Kontoeinstellungen"; +$a->strings["Channel settings"] = "Kanaleinstellungen"; +$a->strings["Additional features"] = "Zusätzliche Funktionen"; +$a->strings["Feature/Addon settings"] = "Funktion-/Addon-Einstellungen"; +$a->strings["Display settings"] = "Anzeigeeinstellungen"; +$a->strings["Connected apps"] = "Verbundene Apps"; +$a->strings["Export channel"] = "Kanal exportieren"; +$a->strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; +$a->strings["Premium Channel Settings"] = "Premium-Kanaleinstellungen"; +$a->strings["Settings"] = "Einstellungen"; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Check Mail"] = "E-Mails abrufen"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["Chat Rooms"] = "Chaträume"; +$a->strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +$a->strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +$a->strings["photo/image"] = "Foto/Bild"; +$a->strings["Rate Me"] = "Bewerte mich"; +$a->strings["View Ratings"] = "Bewertungen ansehen"; +$a->strings["Public Hubs"] = "Öffentliche Hubs"; +$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; $a->strings["Location:"] = "Ort:"; -$a->strings["Gender:"] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["Online Now"] = "gerade online"; -$a->strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[Heute]"; -$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:"; -$a->strings["[No description]"] = "[Keine Beschreibung]"; -$a->strings["Event Reminders"] = "Termin-Erinnerungen"; -$a->strings["Events this week:"] = "Termine in dieser Woche:"; -$a->strings["Profile"] = "Profil"; -$a->strings["Full Name:"] = "Voller Name:"; -$a->strings["Like this channel"] = "Dieser Kanal gefällt mir"; -$a->strings["j F, Y"] = "j. F Y"; -$a->strings["j F"] = "j. F"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -$a->strings["Hometown:"] = "Heimatstadt:"; -$a->strings["Tags:"] = "Schlagworte:"; -$a->strings["Political Views:"] = "Politische Ansichten:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["About:"] = "Über:"; -$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; -$a->strings["Likes:"] = "Gefällt:"; -$a->strings["Dislikes:"] = "Gefällt nicht:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; -$a->strings["My other channels:"] = "Meine anderen Kanäle:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Bücher, Literatur:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebe/Romantik:"; -$a->strings["Work/employment:"] = "Arbeit/Anstellung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["Like this thing"] = "Gefällt mir"; +$a->strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; +$a->strings["%s "] = "%s "; +$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Benachrichtigung] Neue Mail auf %s empfangen"; +$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; +$a->strings["a private message"] = "eine private Nachricht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]einen %4\$s[/zrl] kommentiert"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; +$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; +$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; +$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."; +$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand"; +$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s hat auf Deine Pinnwand auf %3\$s geschrieben"; +$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s hat auf [zrl=%3\$s]Deine Pinnwand[/zrl] geschrieben"; +$a->strings["[Red:Notify] %s tagged you"] = "[Red:Benachrichtigung] %s hat Dich erwähnt"; +$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s erwähnt"; +$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat Dich erwähnt[/zrl]."; +$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Benachrichtigung] %1\$s hat Dich angestupst"; +$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s angestupst"; +$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]hat Dich angestupst[/zrl]."; +$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat Deinen Beitrag auf %3\$s verschlagwortet"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen Beitrag[/zrl] verschlagwortet"; +$a->strings["[Red:Notify] Introduction received"] = "[Red:Benachrichtigung] Vorstellung erhalten"; +$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, Du hast eine neue Verbindungsanfrage von '%2\$s' auf %3\$s erhalten"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, Du hast [zrl=%2\$s]eine neue Verbindungsanfrage[/zrl] von %3\$s erhalten."; +$a->strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen"; +$a->strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen."; +$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"; +$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, Du hast einen Kontaktvorschlag von „%2\$s“ auf %3\$s erhalten"; +$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, Du hast [zrl=%2\$s]einen Kontaktvorschlag[/zrl] für %3\$s von %4\$s erhalten."; +$a->strings["Name:"] = "Name:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; +$a->strings["[Red:Notify]"] = "[Red:Benachrichtigung]"; $a->strings["No recipient provided."] = "Kein Empfänger angegeben"; -$a->strings["[no subject]"] = "[no subject]"; +$a->strings["[no subject]"] = "[kein Betreff]"; $a->strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; $a->strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; +$a->strings["Please choose"] = "Bitte auswählen"; +$a->strings["Agree"] = "Zustimmen"; +$a->strings["Disagree"] = "Ablehnen"; +$a->strings["Abstain"] = "Enthalten"; $a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; $a->strings["Channel location missing."] = "Adresse des Kanals fehlt."; $a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; $a->strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; $a->strings["Protocol disabled."] = "Protokoll deaktiviert."; +$a->strings["Protocol blocked for this channel."] = "Das Protokoll wurde für diesen Kanal blockiert."; $a->strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; $a->strings["local account not found."] = "Lokales Konto nicht gefunden."; $a->strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -$a->strings["Default"] = "Standard"; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; -$a->strings["Required"] = "Benötigt"; -$a->strings["never"] = "Nie"; -$a->strings["less than a second ago"] = "Vor weniger als einer Sekunde"; -$a->strings["year"] = "Jahr"; -$a->strings["years"] = "Jahre"; -$a->strings["month"] = "Monat"; -$a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; -$a->strings["day"] = "Tag"; -$a->strings["days"] = "Tage"; -$a->strings["hour"] = "Stunde"; -$a->strings["hours"] = "Stunden"; -$a->strings["minute"] = "Minute"; -$a->strings["minutes"] = "Minuten"; -$a->strings["second"] = "Sekunde"; -$a->strings["seconds"] = "Sekunden"; -$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -$a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +$a->strings["Private Message"] = "Private Nachricht"; +$a->strings["Select"] = "Auswählen"; +$a->strings["Save to Folder"] = "In Ordner speichern"; +$a->strings["I will attend"] = "Ich werde teilnehmen"; +$a->strings["I will not attend"] = "Ich werde nicht teilnehmen"; +$a->strings["I might attend"] = "Ich werde vielleicht teilnehmen"; +$a->strings["I agree"] = "Ich stimme zu"; +$a->strings["I disagree"] = "Ich lehne ab"; +$a->strings["I abstain"] = "Ich enthalte mich"; +$a->strings["View all"] = "Alles anzeigen"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "Gefällt mir", + 1 => "Gefällt mir", +); +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "Gefällt nicht", + 1 => "Gefällt nicht", +); +$a->strings["Add Star"] = "Stern hinzufügen"; +$a->strings["Remove Star"] = "Stern entfernen"; +$a->strings["Toggle Star Status"] = "Markierungsstatus (Stern) umschalten"; +$a->strings["starred"] = "markiert"; +$a->strings["Message signature validated"] = "Signatur überprüft"; +$a->strings["Message signature incorrect"] = "Signatur nicht korrekt"; +$a->strings["Add Tag"] = "Tag hinzufügen"; +$a->strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; +$a->strings["like"] = "mag"; +$a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; +$a->strings["dislike"] = "lehne ab"; +$a->strings["Share This"] = "Teilen"; +$a->strings["share"] = "Teilen"; +$a->strings["%d comment"] = array( + 0 => "%d Kommentar", + 1 => "%d Kommentare", +); +$a->strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s"; +$a->strings["to"] = "an"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["from %s"] = "via %s"; +$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s"; +$a->strings["Expires: %s"] = "Verfällt: %s"; +$a->strings["Save Bookmarks"] = "Favoriten speichern"; +$a->strings["Add to Calendar"] = "Zum Kalender hinzufügen"; +$a->strings["Mark all seen"] = "Alle als gelesen markieren"; +$a->strings["__ctx:noun__ Likes"] = "Gefällt mir"; +$a->strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; +$a->strings["Close"] = "Schließen"; +$a->strings["Please wait"] = "Bitte warten"; +$a->strings["This is you"] = "Das bist Du"; +$a->strings["Bold"] = "Fett"; +$a->strings["Italic"] = "Kursiv"; +$a->strings["Underline"] = "Unterstrichen"; +$a->strings["Quote"] = "Zitat"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Bild"; +$a->strings["Insert Link"] = "Link einfügen"; +$a->strings["Video"] = "Video"; +$a->strings["Encrypt text"] = "Text verschlüsseln"; +$a->strings["New window"] = "Neues Fenster"; +$a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"; +$a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; $a->strings["Attachments:"] = "Anhänge:"; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; -$a->strings["Redmatrix event notification:"] = "RedMatrix Termin-Benachrichtigung:"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen"; -$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; -$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; -$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; -$a->strings["Room is full"] = "Der Raum ist voll"; +$a->strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; $a->strings["Logout"] = "Abmelden"; $a->strings["End this session"] = "Beende diese Sitzung"; $a->strings["Home"] = "Home"; @@ -485,6 +485,7 @@ $a->strings["View Profile"] = "Profil ansehen"; $a->strings["Your profile page"] = "Deine Profilseite"; $a->strings["Edit Profiles"] = "Profile bearbeiten"; $a->strings["Manage/Edit profiles"] = "Profile verwalten"; +$a->strings["Edit Profile"] = "Profile bearbeiten"; $a->strings["Edit your profile"] = "Profil bearbeiten"; $a->strings["Photos"] = "Fotos"; $a->strings["Your photos"] = "Deine Bilder"; @@ -532,82 +533,184 @@ $a->strings["See all events"] = "Alle Termine ansehen"; $a->strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; $a->strings["Channel Manager"] = "Kanal-Manager"; $a->strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; -$a->strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; +$a->strings["Account/Channel Settings"] = "Konto-/Kanaleinstellungen"; $a->strings["Admin"] = "Administration"; $a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; $a->strings["Loading..."] = "Lädt ..."; $a->strings["@name, #tag, content"] = "@Name, #Schlagwort, Text"; $a->strings["Please wait..."] = "Bitte warten..."; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; -$a->strings["Private Message"] = "Private Nachricht"; -$a->strings["Select"] = "Auswählen"; -$a->strings["Save to Folder"] = "In Ordner speichern"; -$a->strings["I will attend"] = "Ich werde teilnehmen"; -$a->strings["I will not attend"] = "Ich werde nicht teilnehmen"; -$a->strings["I might attend"] = "Ich werde vielleicht teilnehmen"; -$a->strings["I agree"] = "Ich stimme zu"; -$a->strings["I disagree"] = "Ich lehne ab"; -$a->strings["I abstain"] = "Ich enthalte mich"; -$a->strings["View all"] = "Alles anzeigen"; -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "Gefällt nicht", - 1 => "Gefällt nicht", -); -$a->strings["Add Star"] = "Stern hinzufügen"; -$a->strings["Remove Star"] = "Stern entfernen"; -$a->strings["Toggle Star Status"] = "Markierungsstatus (Stern) umschalten"; -$a->strings["starred"] = "markiert"; -$a->strings["Message signature validated"] = "Signatur überprüft"; -$a->strings["Message signature incorrect"] = "Signatur nicht korrekt"; -$a->strings["Add Tag"] = "Tag hinzufügen"; -$a->strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; -$a->strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; -$a->strings["Share This"] = "Teilen"; -$a->strings["share"] = "Teilen"; -$a->strings["%d comment"] = array( - 0 => "%d Kommentar", - 1 => "%d Kommentare", -); -$a->strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s"; -$a->strings["to"] = "an"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings[" from %s"] = "von %s"; -$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s"; -$a->strings["Expires: %s"] = "Verfällt: %s"; -$a->strings["Save Bookmarks"] = "Favoriten speichern"; -$a->strings["Add to Calendar"] = "Zum Kalender hinzufügen"; -$a->strings["Mark all seen"] = "Alle als gelesen markieren"; -$a->strings["__ctx:noun__ Likes"] = "Gefällt mir"; -$a->strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; -$a->strings["Close"] = "Schließen"; -$a->strings["Please wait"] = "Bitte warten"; -$a->strings["This is you"] = "Das bist Du"; -$a->strings["Bold"] = "Fett"; -$a->strings["Italic"] = "Kursiv"; -$a->strings["Underline"] = "Unterstrichen"; -$a->strings["Quote"] = "Zitat"; -$a->strings["Code"] = "Code"; -$a->strings["Image"] = "Bild"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Encrypt text"] = "Text verschlüsseln"; +$a->strings["Tags"] = "Schlagwörter"; +$a->strings["Keywords"] = "Schlüsselwörter"; +$a->strings["have"] = "habe"; +$a->strings["has"] = "hat"; +$a->strings["want"] = "will"; +$a->strings["wants"] = "will"; +$a->strings["likes"] = "gefällt"; +$a->strings["dislikes"] = "mag nicht"; $a->strings[" and "] = "und"; $a->strings["public profile"] = "öffentliches Profil"; $a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; $a->strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; -$a->strings["Directory Options"] = "Verzeichnisoptionen"; -$a->strings["Alphabetic"] = "alphabetisch"; -$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; -$a->strings["Newest to Oldest"] = "Neueste zuerst"; -$a->strings["Oldest to Newest"] = "Älteste zuerst"; -$a->strings["Public Forums Only"] = "Nur öffentliche Foren"; -$a->strings["Sort"] = "Sortieren"; -$a->strings["Enable Safe Search"] = "Sichere Suche einschalten"; -$a->strings["Disable Safe Search"] = "Sichere Suche ausschalten"; -$a->strings["Safe Mode"] = "Sicherer Modus"; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; +$a->strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; +$a->strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; +$a->strings["Can view my photo albums"] = "Kann meine Fotoalben betrachten"; +$a->strings["Can view my connections"] = "Kann meine Verbindungen sehen"; +$a->strings["Can view my file storage"] = "Kann meine Dateiordner lesen"; +$a->strings["Can view my webpages"] = "Kann meine Webseiten sehen"; +$a->strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; +$a->strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +$a->strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; +$a->strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; +$a->strings["Can post photos to my photo albums"] = "Kann Fotos in meinen Fotoalben veröffentlichen"; +$a->strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; +$a->strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; +$a->strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; +$a->strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; +$a->strings["Can write to my file storage"] = "Kann in meine Dateiordner schreiben"; +$a->strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; +$a->strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; +$a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; +$a->strings["Social Networking"] = "Soziales Netzwerk"; +$a->strings["Mostly Public"] = "Weitgehend öffentlich"; +$a->strings["Restricted"] = "Beschränkt"; +$a->strings["Private"] = "Privat"; +$a->strings["Community Forum"] = "Forum"; +$a->strings["Feed Republish"] = "Teilen von Feeds"; +$a->strings["Special Purpose"] = "Für besondere Zwecke"; +$a->strings["Celebrity/Soapbox"] = "Mitteilungs-Kanal (keine Kommentare)"; +$a->strings["Group Repository"] = "Gruppenarchiv"; +$a->strings["Other"] = "Andere"; +$a->strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +$a->strings["channel"] = "Kanal"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; +$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; +$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; +$a->strings["__ctx:title__ Likes"] = "Gefällt mir"; +$a->strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; +$a->strings["__ctx:title__ Agree"] = "Zustimmungen"; +$a->strings["__ctx:title__ Disagree"] = "Ablehnungen"; +$a->strings["__ctx:title__ Abstain"] = "Enthaltungen"; +$a->strings["__ctx:title__ Attending"] = "Zusagen"; +$a->strings["__ctx:title__ Not attending"] = "Absagen"; +$a->strings["__ctx:title__ Might attend"] = "Vielleicht"; +$a->strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Gespeichert unter:"; +$a->strings["View in context"] = "Im Zusammenhang anschauen"; +$a->strings["remove"] = "lösche"; +$a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; +$a->strings["View Source"] = "Quelle anzeigen"; +$a->strings["Follow Thread"] = "Unterhaltung folgen"; +$a->strings["View Status"] = "Status ansehen"; +$a->strings["View Photos"] = "Fotos ansehen"; +$a->strings["Matrix Activity"] = "Matrix-Aktivität"; +$a->strings["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Send PM"] = "Sende PN"; +$a->strings["Poke"] = "Anstupsen"; +$a->strings["%s likes this."] = "%s gefällt das."; +$a->strings["%s doesn't like this."] = "%s gefällt das nicht."; +$a->strings["%2\$d people like this."] = array( + 0 => "%2\$d Person gefällt das.", + 1 => "%2\$d Leuten gefällt das.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "%2\$d Person gefällt das nicht.", + 1 => "%2\$d Leuten gefällt das nicht.", +); +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => ", und %d andere", +); +$a->strings["%s like this."] = "%s gefällt das."; +$a->strings["%s don't like this."] = "%s gefällt das nicht."; +$a->strings["Visible to everybody"] = "Sichtbar für jeden"; +$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; +$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; +$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; +$a->strings["Tag term:"] = "Schlagwort:"; +$a->strings["Save to Folder:"] = "Speichern in Ordner:"; +$a->strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; +$a->strings["Share"] = "Teilen"; +$a->strings["Page link name"] = "Link zur Seite"; +$a->strings["Post as"] = "Veröffentlichen als"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["upload photo"] = "Foto hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anfügen"; +$a->strings["Insert web link"] = "Link einfügen"; +$a->strings["web link"] = "Web-Link"; +$a->strings["Insert video link"] = "Video-Link einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Link einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Legen Sie Ihren Standort fest"; +$a->strings["set location"] = "Standort festlegen"; +$a->strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; +$a->strings["Clear browser location"] = "Browser-Standort löschen"; +$a->strings["clear location"] = "Standort löschen"; +$a->strings["Title (optional)"] = "Titel (optional)"; +$a->strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +$a->strings["Permission settings"] = "Berechtigungseinstellungen"; +$a->strings["permissions"] = "Berechtigungen"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com"; +$a->strings["Set expiration date"] = "Verfallsdatum festlegen"; +$a->strings["OK"] = "Ok"; +$a->strings["Cancel"] = "Abbrechen"; +$a->strings["Discover"] = "Entdecken"; +$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; +$a->strings["Commented Order"] = "Neueste Kommentare"; +$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; +$a->strings["Posted Order"] = "Neueste Beiträge"; +$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; +$a->strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; +$a->strings["New"] = "Neu"; +$a->strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; +$a->strings["Starred"] = "Markiert"; +$a->strings["Favourite Posts"] = "Markierte Beiträge"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; +$a->strings["Channel"] = "Kanal"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["About"] = "Über"; +$a->strings["Profile Details"] = "Profil-Details"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Files and Storage"] = "Dateien und Speicher"; +$a->strings["Chatrooms"] = "Chaträume"; +$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +$a->strings["Manage Webpages"] = "Webseiten verwalten"; +$a->strings["__ctx:noun__ Attending"] = array( + 0 => "Zusage", + 1 => "Zusagen", +); +$a->strings["__ctx:noun__ Not Attending"] = array( + 0 => "Absage", + 1 => "Absagen", +); +$a->strings["__ctx:noun__ Undecided"] = array( + 0 => " Unentschlossen", + 1 => "Unentschlossene", +); +$a->strings["__ctx:noun__ Agree"] = array( + 0 => "Zustimmung", + 1 => "Zustimmungen", +); +$a->strings["__ctx:noun__ Disagree"] = array( + 0 => "Ablehnung", + 1 => "Ablehnungen", +); +$a->strings["__ctx:noun__ Abstain"] = array( + 0 => "Enthaltung", + 1 => "Enthaltungen", +); $a->strings["Permission denied"] = "Keine Berechtigung"; $a->strings["(Unknown)"] = "(Unbekannt)"; $a->strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; @@ -619,26 +722,20 @@ $a->strings["Visible to all connections."] = "Für alle Verbindungen sichtbar."; $a->strings["Visible to approved connections."] = "Nur für akzeptierte Verbindungen sichtbar."; $a->strings["Visible to specific connections."] = "Sichtbar für bestimmte Verbindungen."; $a->strings["Item not found."] = "Element nicht gefunden."; +$a->strings["Permission denied."] = "Zugang verweigert"; $a->strings["Collection not found."] = "Sammlung nicht gefunden"; $a->strings["Collection is empty."] = "Sammlung ist leer."; $a->strings["Collection: %s"] = "Sammlung: %s"; $a->strings["Connection: %s"] = "Verbindung: %s"; $a->strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; -$a->strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; -$a->strings["New window"] = "Neues Fenster"; -$a->strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"; -$a->strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; -$a->strings["view full size"] = "In Vollbildansicht anschauen"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["Install design element: "] = "Design-Element installieren:"; -$a->strings["QR code"] = "QR-Code"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -$a->strings["post"] = "Beitrag"; -$a->strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; -$a->strings["$1 spoiler"] = "$1 Spoiler"; -$a->strings["$1 wrote:"] = "$1 schrieb:"; +$a->strings["Invalid data packet"] = "Ungültiges Datenpaket"; +$a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; +$a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; +$a->strings["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet"; +$a->strings["Logged out."] = "Ausgeloggt."; +$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +$a->strings["Login failed."] = "Login fehlgeschlagen."; $a->strings["%d invitation available"] = array( 0 => "%d Einladung verfügbar", 1 => "%d Einladungen verfügbar", @@ -662,23 +759,89 @@ $a->strings["Visible to your default audience"] = "Standard-Sichtbarkeit"; $a->strings["Show"] = "Anzeigen"; $a->strings["Don't show"] = "Nicht anzeigen"; $a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Public Timeline"] = "Öffentliche Zeitleiste"; -$a->strings["Invalid data packet"] = "Ungültiges Datenpaket"; -$a->strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; -$a->strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; +$a->strings["Item was not found."] = "Beitrag wurde nicht gefunden."; +$a->strings["No source file."] = "Keine Quelldatei."; +$a->strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; +$a->strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; +$a->strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; +$a->strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; +$a->strings["Path not available."] = "Pfad nicht verfügbar."; +$a->strings["Empty pathname"] = "Leere Pfadangabe"; +$a->strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; +$a->strings["Path not found."] = "Pfad nicht gefunden."; +$a->strings["mkdir failed."] = "mkdir fehlgeschlagen."; +$a->strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; +$a->strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; +$a->strings["Empty name"] = "Namensfeld leer"; +$a->strings["Name too long"] = "Name ist zu lang"; +$a->strings["No account identifier"] = "Keine Account-Kennung"; +$a->strings["Nickname is required."] = "Spitzname ist erforderlich."; +$a->strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; +$a->strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; +$a->strings["Default Profile"] = "Standard-Profil"; +$a->strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +$a->strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; +$a->strings["Change profile photo"] = "Profilfoto ändern"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/bearbeiten"; +$a->strings["Create New Profile"] = "Neues Profil erstellen"; +$a->strings["Profile Image"] = "Profilfoto:"; +$a->strings["visible to everybody"] = "sichtbar für jeden"; +$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +$a->strings["Gender:"] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Online Now"] = "gerade online"; +$a->strings["g A l F d"] = "l, j. F, G:i \\U\\h\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[Heute]"; +$a->strings["Birthday Reminders"] = "Geburtstags Erinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage in dieser Woche:"; +$a->strings["[No description]"] = "[Keine Beschreibung]"; +$a->strings["Event Reminders"] = "Termin-Erinnerungen"; +$a->strings["Events this week:"] = "Termine in dieser Woche:"; +$a->strings["Profile"] = "Profil"; +$a->strings["Full Name:"] = "Voller Name:"; +$a->strings["Like this channel"] = "Dieser Kanal gefällt mir"; +$a->strings["j F, Y"] = "j. F Y"; +$a->strings["j F"] = "j. F"; +$a->strings["Birthday:"] = "Geburtstag:"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Sexuelle Orientierung:"; +$a->strings["Hometown:"] = "Heimatstadt:"; +$a->strings["Tags:"] = "Schlagworte:"; +$a->strings["Political Views:"] = "Politische Ansichten:"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["About:"] = "Über:"; +$a->strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; +$a->strings["Likes:"] = "Gefällt:"; +$a->strings["Dislikes:"] = "Gefällt nicht:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; +$a->strings["My other channels:"] = "Meine anderen Kanäle:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Bücher, Literatur:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebe/Romantik:"; +$a->strings["Work/employment:"] = "Arbeit/Anstellung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["Like this thing"] = "Gefällt mir"; $a->strings["Male"] = "Männlich"; $a->strings["Female"] = "Weiblich"; $a->strings["Currently Male"] = "Momentan männlich"; $a->strings["Currently Female"] = "Momentan weiblich"; $a->strings["Mostly Male"] = "Größtenteils männlich"; $a->strings["Mostly Female"] = "Größtenteils weiblich"; -$a->strings["Transgender"] = "Transsexuell"; +$a->strings["Transgender"] = "Transgender"; $a->strings["Intersex"] = "Zwischengeschlechtlich"; $a->strings["Transsexual"] = "Transsexuell"; $a->strings["Hermaphrodite"] = "Zwitter"; $a->strings["Neuter"] = "Geschlechtslos"; $a->strings["Non-specific"] = "unklar"; -$a->strings["Other"] = "Andere"; $a->strings["Undecided"] = "Unentschieden"; $a->strings["Males"] = "Männer"; $a->strings["Females"] = "Frauen"; @@ -726,7 +889,6 @@ $a->strings["Ask me"] = "Frag mich mal"; $a->strings["Site Admin"] = "Hub-Administration"; $a->strings["Address Book"] = "Adressbuch"; $a->strings["Mood"] = "Laune"; -$a->strings["Poke"] = "Anstupsen"; $a->strings["Probe"] = "Testen"; $a->strings["Suggest"] = "Empfehlen"; $a->strings["Random Channel"] = "Zufälliger Kanal"; @@ -738,189 +900,31 @@ $a->strings["Profile Photo"] = "Profilfoto"; $a->strings["Update"] = "Aktualisieren"; $a->strings["Install"] = "Installieren"; $a->strings["Purchase"] = "Kaufen"; -$a->strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; -$a->strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt"; -$a->strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; -$a->strings["An invitation is required."] = "Eine Einladung wird benötigt"; -$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden"; -$a->strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; -$a->strings["Failed to store account information."] = "Speichern der Account-Informationen fehlgeschlagen"; -$a->strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; -$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; -$a->strings["Administrator"] = "Administrator"; -$a->strings["your registration password"] = "Dein Registrierungspasswort"; -$a->strings["Registration details for %s"] = "Registrierungsdetails für %s"; -$a->strings["Account approved."] = "Account bestätigt."; -$a->strings["Registration revoked for %s"] = "Registrierung für %s widerrufen"; -$a->strings["Account verified. Please login."] = "Konto geprüft. Bitte melde Dich an!"; -$a->strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; -$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; -$a->strings["channel"] = "Kanal"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; -$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; -$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; -$a->strings["__ctx:title__ Likes"] = "Gefällt mir"; -$a->strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; -$a->strings["__ctx:title__ Agree"] = "Zustimmungen"; -$a->strings["__ctx:title__ Disagree"] = "Ablehnungen"; -$a->strings["__ctx:title__ Abstain"] = "Enthaltungen"; -$a->strings["__ctx:title__ Attending"] = "Zusagen"; -$a->strings["__ctx:title__ Not attending"] = "Absagen"; -$a->strings["__ctx:title__ Might attend"] = "Vielleicht"; -$a->strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Gespeichert unter:"; -$a->strings["View in context"] = "Im Zusammenhang anschauen"; -$a->strings["remove"] = "lösche"; -$a->strings["Delete Selected Items"] = "Lösche die ausgewählten Elemente"; -$a->strings["View Source"] = "Quelle anzeigen"; -$a->strings["Follow Thread"] = "Unterhaltung folgen"; -$a->strings["View Status"] = "Status ansehen"; -$a->strings["View Photos"] = "Fotos ansehen"; -$a->strings["Matrix Activity"] = "Matrix-Aktivität"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Send PM"] = "Sende PN"; -$a->strings["%s likes this."] = "%s gefällt das."; -$a->strings["%s doesn't like this."] = "%s gefällt das nicht."; -$a->strings["%2\$d people like this."] = array( - 0 => "%2\$d Person gefällt das.", - 1 => "%2\$d Leuten gefällt das.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "%2\$d Person gefällt das nicht.", - 1 => "%2\$d Leuten gefällt das nicht.", -); -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = array( - 0 => "", - 1 => ", und %d andere", -); -$a->strings["%s like this."] = "%s gefällt das."; -$a->strings["%s don't like this."] = "%s gefällt das nicht."; -$a->strings["Visible to everybody"] = "Sichtbar für jeden"; -$a->strings["Please enter a link URL:"] = "Gib eine URL ein:"; -$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; -$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; -$a->strings["Tag term:"] = "Schlagwort:"; -$a->strings["Save to Folder:"] = "Speichern in Ordner:"; -$a->strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; -$a->strings["Share"] = "Teilen"; -$a->strings["Page link title"] = "Seitentitel-Link"; -$a->strings["Post as"] = "Veröffentlichen als"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["upload photo"] = "Foto hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anfügen"; -$a->strings["Insert web link"] = "Link einfügen"; -$a->strings["web link"] = "Web-Link"; -$a->strings["Insert video link"] = "Video-Link einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Link einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Standort"; -$a->strings["set location"] = "Standort"; -$a->strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; -$a->strings["Clear browser location"] = "Browser-Standort löschen"; -$a->strings["clear location"] = "Standort löschen"; -$a->strings["Title (optional)"] = "Titel (optional)"; -$a->strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -$a->strings["Permission settings"] = "Berechtigungs-Einstellungen"; -$a->strings["permissions"] = "Berechtigungen"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com"; -$a->strings["Set expiration date"] = "Verfallsdatum"; -$a->strings["OK"] = "Ok"; -$a->strings["Cancel"] = "Abbrechen"; -$a->strings["Discover"] = "Entdecken"; -$a->strings["Imported public streams"] = "Importierte öffentliche Beiträge"; -$a->strings["Commented Order"] = "Neueste Kommentare"; -$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortiert"; -$a->strings["Posted Order"] = "Neueste Beiträge"; -$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortiert"; -$a->strings["Posts that mention or involve you"] = "Beiträge mit Beteiligung Deinerseits"; -$a->strings["New"] = "Neu"; -$a->strings["Activity Stream - by date"] = "Activity Stream – nach Datum sortiert"; -$a->strings["Starred"] = "Markiert"; -$a->strings["Favourite Posts"] = "Markierte Beiträge"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wurden"; -$a->strings["Channel"] = "Kanal"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["About"] = "Über"; -$a->strings["Profile Details"] = "Profil-Details"; -$a->strings["Files and Storage"] = "Dateien und Speicher"; -$a->strings["Chatrooms"] = "Chaträume"; -$a->strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; -$a->strings["Manage Webpages"] = "Webseiten verwalten"; -$a->strings["__ctx:noun__ Attending"] = array( - 0 => "Zusage", - 1 => "Zusagen", -); -$a->strings["__ctx:noun__ Not Attending"] = array( - 0 => "Absage", - 1 => "Absagen", -); -$a->strings["__ctx:noun__ Undecided"] = array( - 0 => " Unentschlossen", - 1 => "Unentschlossene", -); -$a->strings["__ctx:noun__ Agree"] = array( - 0 => "Zustimmung", - 1 => "Zustimmungen", -); -$a->strings["__ctx:noun__ Disagree"] = array( - 0 => "Ablehnung", - 1 => "Ablehnungen", -); -$a->strings["__ctx:noun__ Abstain"] = array( - 0 => "Enthaltung", - 1 => "Enthaltungen", -); -$a->strings["Embedded content"] = "Eingebetteter Inhalt"; -$a->strings["Embedding disabled"] = "Einbetten ausgeschaltet"; -$a->strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; -$a->strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; -$a->strings["Can view my photo albums"] = "Kann meine Fotoalben betrachten"; -$a->strings["Can view my connections"] = "Kann meine Verbindungen sehen"; -$a->strings["Can view my file storage"] = "Kann meine Dateiordner lesen"; -$a->strings["Can view my webpages"] = "Kann meine Webseiten sehen"; -$a->strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; -$a->strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -$a->strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; -$a->strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; -$a->strings["Can post photos to my photo albums"] = "Kann Fotos in meinen Fotoalben veröffentlichen"; -$a->strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; -$a->strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; -$a->strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; -$a->strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; -$a->strings["Can write to my file storage"] = "Kann in meine Dateiordner schreiben"; -$a->strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; -$a->strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; -$a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; -$a->strings["Social Networking"] = "Soziales Netzwerk"; -$a->strings["Mostly Public"] = "Weitgehend öffentlich"; -$a->strings["Restricted"] = "Beschränkt"; -$a->strings["Private"] = "Privat"; -$a->strings["Community Forum"] = "Forum"; -$a->strings["Feed Republish"] = "Teilen von Feeds"; -$a->strings["Special Purpose"] = "Für besondere Zwecke"; -$a->strings["Celebrity/Soapbox"] = "Mitteilungs-Kanal (keine Kommentare)"; -$a->strings["Group Repository"] = "Gruppenarchiv"; -$a->strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$a->strings["Install %s element: "] = "Element %s installieren: "; +$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, allerdings fehlen dir die nötigen Rechte es auf dieser Seite zu installieren."; +$a->strings["webpage"] = "Webseite"; +$a->strings["layout"] = "Gestaltung"; +$a->strings["block"] = "Block"; +$a->strings["menu"] = "Menü"; +$a->strings["QR code"] = "QR-Code"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +$a->strings["post"] = "Beitrag"; +$a->strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; +$a->strings["$1 spoiler"] = "$1 Spoiler"; +$a->strings["$1 wrote:"] = "$1 schrieb:"; +$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen"; +$a->strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; +$a->strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; +$a->strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; +$a->strings["Room is full"] = "Der Raum ist voll"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes"; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; +$a->strings["Photo storage failed."] = "Foto speichern schlug fehl"; +$a->strings["Upload New Photos"] = "Lade neue Fotos hoch"; $a->strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; -$a->strings["Item not found"] = "Element nicht gefunden"; -$a->strings["Edit Block"] = "Block bearbeiten"; -$a->strings["Delete block?"] = "Block löschen?"; -$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; -$a->strings["Delete Block"] = "Block löschen"; $a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; $a->strings["Create a new channel"] = "Neuen Kanal anlegen"; $a->strings["Current Channel"] = "Aktueller Kanal"; @@ -929,6 +933,31 @@ $a->strings["Default Channel"] = "Standard Kanal"; $a->strings["Make Default"] = "Zum Standard machen"; $a->strings["%d new messages"] = "%d neue Nachrichten"; $a->strings["%d new introductions"] = "%d neue Vorstellungen"; +$a->strings["Delegated Channels"] = "Delegierte Kanäle"; +$a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; +$a->strings["%d rating"] = array( + 0 => "%d Bewertung", + 1 => "%d Bewertungen", +); +$a->strings["Gender: "] = "Geschlecht:"; +$a->strings["Status: "] = "Status:"; +$a->strings["Homepage: "] = "Webseite:"; +$a->strings["Description:"] = "Beschreibung:"; +$a->strings["Public Forum:"] = "Öffentliches Forum:"; +$a->strings["Keywords: "] = "Schlüsselwörter:"; +$a->strings["Don't suggest"] = "Nicht vorschlagen."; +$a->strings["Common connections:"] = "Gemeinsame Verbindungen:"; +$a->strings["Global Directory"] = "Globales Verzeichnis"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; +$a->strings["Finding:"] = "Ergebnisse:"; +$a->strings["next page"] = "nächste Seite"; +$a->strings["previous page"] = "vorherige Seite"; +$a->strings["Sort options"] = "Sortieroptionen"; +$a->strings["Alphabetic"] = "alphabetisch"; +$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; +$a->strings["Newest to Oldest"] = "Neueste zuerst"; +$a->strings["Oldest to Newest"] = "Älteste zuerst"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; $a->strings["Xchan Lookup"] = "Xchan-Suche"; $a->strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; $a->strings["Not found."] = "Nicht gefunden."; @@ -936,90 +965,12 @@ $a->strings["Authorize application connection"] = "Zugriff für die Anwendung au $a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; $a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["No"] = "Nein"; -$a->strings["Block Name"] = "Block-Name"; -$a->strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; -$a->strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; -$a->strings["Connection updated."] = "Verbindung aktualisiert."; -$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; -$a->strings["is now connected to"] = "ist jetzt verbunden mit"; -$a->strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; -$a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; -$a->strings["Channel has been unblocked"] = "Kanal nicht mehr blockiert"; -$a->strings["Channel has been blocked"] = "Kanal blockiert"; -$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; -$a->strings["Channel has been unignored"] = "Kanal wird nicht mehr ignoriert"; -$a->strings["Channel has been ignored"] = "Kanal wird ignoriert"; -$a->strings["Channel has been unarchived"] = "Kanal wurde aus dem Archiv zurück geholt"; -$a->strings["Channel has been archived"] = "Kanal wurde archiviert"; -$a->strings["Channel has been unhidden"] = "Kanal wird nicht mehr versteckt"; -$a->strings["Channel has been hidden"] = "Kanal wurde versteckt"; -$a->strings["Channel has been approved"] = "Kanal wurde zugelassen"; -$a->strings["Channel has been unapproved"] = "Zulassung des Kanals entfernt"; -$a->strings["Connection has been removed."] = "Verbindung wurde gelöscht."; -$a->strings["View %s's profile"] = "%ss Profil ansehen"; -$a->strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; -$a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; -$a->strings["Recent Activity"] = "Kürzliche Aktivitäten"; -$a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; -$a->strings["Unblock"] = "Freigeben"; -$a->strings["Block"] = "Blockieren"; -$a->strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; -$a->strings["Unignore"] = "Nicht ignorieren"; -$a->strings["Ignore"] = "Ignorieren"; -$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; -$a->strings["Unarchive"] = "Aus Archiv zurückholen"; -$a->strings["Archive"] = "Archivieren"; -$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; -$a->strings["Unhide"] = "Wieder sichtbar machen"; -$a->strings["Hide"] = "Verstecken"; -$a->strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; -$a->strings["Delete this connection"] = "Verbindung löschen"; -$a->strings["Approve this connection"] = "Verbindung genehmigen"; -$a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; -$a->strings["Connections: settings for %s"] = "Verbindungseinstellungen für %s"; -$a->strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; -$a->strings["Apply the permissions indicated on this page to all new connections."] = "Wende die auf dieser Seite gewählten Berechtigungen auf alle neuen Verbindungen an."; -$a->strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; -$a->strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; -$a->strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; -$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert. Bitte sieh Dir die Zugriffsrechte auf dieser Seite an und ändere sie, wenn Du willst. Dieser Kontakt kann evtl. nicht mit Dir kommunizieren, bevor Du nicht auf dieser Seite auf „Senden“ geklickt hast – erst dieser Klick speichert die gewünschten Zugriffsrechte."; -$a->strings["inherited"] = "geerbt"; -$a->strings["Connection has no individual permissions!"] = "Diese Verbindung hat keine individuellen Zugriffsrechte!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Abhängig von Deinen Privatsphäre-Einstellungen könnte das passen, eventuell solltest Du aber die „Zugriffsrechte für Fortgeschrittene“ überprüfen."; -$a->strings["Profile Visibility"] = "Sichtbarkeit des Profils"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; -$a->strings["Contact Information / Notes"] = "Kontaktinformationen / Notizen"; -$a->strings["Edit contact notes"] = "Kontaktnotizen bearbeiten"; -$a->strings["Their Settings"] = "Deren Einstellungen"; -$a->strings["My Settings"] = "Meine Einstellungen"; -$a->strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "Die voreingestellten Zugriffsrechte der Kategorie Deines Kanals sind hier zu sehen, wurden aber noch nicht gespeichert, und Du hast keine Voreinstellungen für die Zugriffsrechte von Verbindungen angelegt. Bitte sieht Dir die Einstellungen an, ändere sie bei Bedarf und klicke [Senden], um den Vorgang abzuschließen."; -$a->strings["Clear/Disable Automatic Permissions"] = "Automatische Berechtigungen abschalten/entfernen"; -$a->strings["Forum Members"] = "Forum Mitglieder"; -$a->strings["Soapbox"] = "Marktschreier"; -$a->strings["Full Sharing (typical social network permissions)"] = "Vollumfängliches Teilen (übliche Berechtigungen in sozialen Netzwerken)"; -$a->strings["Cautious Sharing "] = "Vorsichtiges Teilen"; -$a->strings["Follow Only"] = "Nur folgen"; -$a->strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; -$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Einige Berechtigungen werden von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt, die eine höhere Priorität haben als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat das keine Auswirkungen."; -$a->strings["Advanced Permissions"] = "Zugriffsrechte für Fortgeschrittene"; -$a->strings["Simple Permissions (select one and submit)"] = "Einfache Berechtigungs-Einstellungen (wähle eine aus und klicke auf Senden)"; -$a->strings["Visit %s's profile - %s"] = "%ss Profil besuchen - %s"; -$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freigeben"; -$a->strings["Ignore contact"] = "Kontakt ignorieren"; -$a->strings["Repair URL settings"] = "URL-Einstellungen reparieren"; -$a->strings["View conversations"] = "Unterhaltungen anzeigen"; -$a->strings["Delete contact"] = "Kontakt löschen"; -$a->strings["Last update:"] = "Letzte Aktualisierung:"; -$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; -$a->strings["Update now"] = "Jetzt aktualisieren"; -$a->strings["Currently blocked"] = "Derzeit blockiert"; -$a->strings["Currently ignored"] = "Derzeit ignoriert"; -$a->strings["Currently archived"] = "Derzeit archiviert"; -$a->strings["Currently pending"] = "Derzeit anstehend"; -$a->strings["Red Matrix - "The Network""] = "RedMatrix – "Das Netzwerk""; -$a->strings["Welcome to %s"] = "Willkommen auf %s"; +$a->strings["Page Title"] = "Seitentitel"; +$a->strings["Channel added."] = "Kanal hinzugefügt."; +$a->strings["Tag removed"] = "Schlagwort entfernt"; +$a->strings["Remove Item Tag"] = "Schlagwort entfernen"; +$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; +$a->strings["Remove"] = "Entferne"; $a->strings["Continue"] = "Fortfahren"; $a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; $a->strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; @@ -1029,12 +980,22 @@ $a->strings["Potential connections will then see the following text before proce $a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; $a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; $a->strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; -$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -$a->strings["Edit post"] = "Bearbeite Beitrag"; -$a->strings["Delete item?"] = "Eintrag löschen?"; +$a->strings["Thing updated"] = "Sache aktualisiert"; +$a->strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; +$a->strings["Thing added"] = "Sache hinzugefügt"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Sache anzeigen"; +$a->strings["item not found."] = "Eintrag nicht gefunden"; +$a->strings["Edit Thing"] = "Sache bearbeiten"; +$a->strings["Select a profile"] = "Wähle ein Profil"; +$a->strings["Post an activity"] = "Aktivitätsnachricht senden"; +$a->strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; +$a->strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; +$a->strings["URL of thing (optional)"] = "URL der Sache (optional)"; +$a->strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; +$a->strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; $a->strings["Item not available."] = "Element nicht verfügbar."; $a->strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; -$a->strings["RedMatrix channel"] = "RedMatrix-Kanal"; $a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; $a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; @@ -1056,12 +1017,23 @@ $a->strings["Image size reduction [%s] failed."] = "Reduzierung der Bildgröße $a->strings["Invalid item."] = "Ungültiges Element."; $a->strings["Channel not found."] = "Kanal nicht gefunden."; $a->strings["Page not found."] = "Seite nicht gefunden."; -$a->strings["No such group"] = "Sammlung nicht gefunden"; -$a->strings["Search Results For:"] = "Suchergebnisse für:"; -$a->strings["Collection is empty"] = "Sammlung ist leer"; -$a->strings["Collection: "] = "Sammlung:"; -$a->strings["Connection: "] = "Verbindung:"; -$a->strings["Invalid connection."] = "Ungültige Verbindung."; +$a->strings["Like/Dislike"] = "Mögen/Nicht mögen"; +$a->strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; +$a->strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; +$a->strings["Invalid request."] = "Ungültige Anfrage."; +$a->strings["thing"] = "Sache"; +$a->strings["Channel unavailable."] = "Kanal nicht vorhanden."; +$a->strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; +$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; +$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; +$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; +$a->strings["Action completed."] = "Aktion durchgeführt."; +$a->strings["Thank you."] = "Vielen Dank."; +$a->strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; +$a->strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; $a->strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; $a->strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; $a->strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; @@ -1069,10 +1041,12 @@ $a->strings["Event not found."] = "Termin nicht gefunden."; $a->strings["l, F j"] = "l, j. F"; $a->strings["Edit event"] = "Termin bearbeiten"; $a->strings["Delete event"] = "Termin löschen"; +$a->strings["calendar"] = "Kalender"; $a->strings["Create New Event"] = "Neuen Termin erstellen"; $a->strings["Previous"] = "Voriges"; $a->strings["Next"] = "Nächste"; $a->strings["Export"] = "Exportieren"; +$a->strings["Import"] = "Import"; $a->strings["Event removed"] = "Termin gelöscht"; $a->strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; $a->strings["Event details"] = "Termin-Details"; @@ -1083,12 +1057,11 @@ $a->strings["Finish date/time is not known or not relevant"] = "Ende Datum/Zeit $a->strings["Event Finishes:"] = "Termin endet:"; $a->strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; $a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; -$a->strings["Description:"] = "Beschreibung:"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Den Termin teilen"; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; $a->strings["Public Sites"] = "Öffentliche Server"; -$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen."; +$a->strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Die hier aufgeführten Server sind öffentlich und erlauben die Registrierung bei \$Projectname. Alle Server dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen."; $a->strings["Rate this hub"] = "Bewerte diesen Hub"; $a->strings["Site URL"] = "Server-URL"; $a->strings["Access Type"] = "Zugangstyp"; @@ -1097,151 +1070,8 @@ $a->strings["Location"] = "Ort"; $a->strings["View hub ratings"] = "Bewertungen dieses Hubs ansehen"; $a->strings["Rate"] = "Bewerten"; $a->strings["View ratings"] = "Bewertungen ansehen"; -$a->strings["Name is required"] = "Name ist erforderlich"; -$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; -$a->strings["Diaspora Policy Settings updated."] = "Diaspora-Einstellungen aktualisiert."; -$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; -$a->strings["Password changed."] = "Kennwort geändert."; -$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."; -$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse."; -$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."; -$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; -$a->strings["Settings updated."] = "Einstellungen aktualisiert."; -$a->strings["Add application"] = "Anwendung hinzufügen"; -$a->strings["Name of application"] = "Name der Anwendung"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Umleitung"; -$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; -$a->strings["Icon url"] = "Symbol-URL"; -$a->strings["Optional"] = "Optional"; -$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden."; -$a->strings["Connected Apps"] = "Verbundene Apps"; -$a->strings["Client key starts with"] = "Client Key beginnt mit"; -$a->strings["No name"] = "Kein Name"; -$a->strings["Remove authorization"] = "Authorisierung aufheben"; -$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; -$a->strings["Feature Settings"] = "Funktions-Einstellungen"; -$a->strings["Diaspora Policy Settings"] = "Diaspora-Einstellungen"; -$a->strings["Allow any Diaspora member to comment on your public posts."] = "Allen Diaspora-Mitgliedern erlauben, Deine öffentlichen Beiträge zu kommentieren."; -$a->strings["Submit Diaspora Policy Settings"] = "Diaspora-Einstellungen speichern"; -$a->strings["Account Settings"] = "Konto-Einstellungen"; -$a->strings["Password Settings"] = "Kennwort-Einstellungen"; -$a->strings["New Password:"] = "Neues Passwort:"; -$a->strings["Confirm:"] = "Bestätigen:"; -$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; -$a->strings["Email Address:"] = "Email Adresse:"; -$a->strings["Remove Account"] = "Konto entfernen"; -$a->strings["Remove this account from this server including all its channels"] = "Lösche dieses Konto einschließlich aller zugehörigen Kanäle von diesem Server"; -$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden."; -$a->strings["Off"] = "Aus"; -$a->strings["On"] = "An"; -$a->strings["Additional Features"] = "Zusätzliche Funktionen"; -$a->strings["Connector Settings"] = "Connector-Einstellungen"; -$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; -$a->strings["%s - (Experimental)"] = "%s – (experimentell)"; -$a->strings["mobile"] = "mobil"; -$a->strings["Display Settings"] = "Anzeige-Einstellungen"; -$a->strings["Display Theme:"] = "Anzeige-Theme:"; -$a->strings["Mobile Theme:"] = "Mobile Theme:"; -$a->strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; -$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; -$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; -$a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; -$a->strings["Don't show emoticons"] = "Emoticons nicht anzeigen"; -$a->strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; -$a->strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)"; -$a->strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; -$a->strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; -$a->strings["Use blog/list mode on matrix page"] = "Blog-/Listenmodus auf der Matrixseite verwenden"; -$a->strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; -$a->strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; -$a->strings["Matrix page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)"; -$a->strings["Nobody except yourself"] = "Niemand außer Dir selbst"; -$a->strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst"; -$a->strings["Approved connections"] = "Angenommene Verbindungen"; -$a->strings["Any connections"] = "Beliebige Verbindungen"; -$a->strings["Anybody on this website"] = "Jeder auf dieser Website"; -$a->strings["Anybody in this network"] = "Alle Red-Nutzer"; -$a->strings["Anybody authenticated"] = "Jeder authentifizierte"; -$a->strings["Anybody on the internet"] = "Jeder im Internet"; -$a->strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; -$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet"; -$a->strings["Channel Settings"] = "Kanal-Einstellungen"; -$a->strings["Basic Settings"] = "Grundeinstellungen"; -$a->strings["Your Timezone:"] = "Ihre Zeitzone:"; -$a->strings["Default Post Location:"] = "Standardstandort:"; -$a->strings["Geographical location to display on your posts"] = "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll"; -$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; -$a->strings["Adult Content"] = "Nicht jugendfreie Inhalte"; -$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"; -$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen"; -$a->strings["Your permissions are already configured. Click to view/adjust"] = "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern"; -$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen"; -$a->strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil"; -$a->strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen"; -$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)"; -$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)"; -$a->strings["Private - default private, never open or public"] = "Privat – Standard privat, nie offen oder öffentlich"; -$a->strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle standardmäßig blockiert"; -$a->strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten"; -$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren"; -$a->strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen"; -$a->strings["Expire other channel content after this many days"] = "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen"; -$a->strings["0 or blank prevents expiration"] = "0 oder kein Inhalt verhindern das Verfallen"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; -$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; -$a->strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte"; -$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; -$a->strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; -$a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; -$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen"; -$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:"; -$a->strings["accepting a friend request"] = "Du eine Verbindungsanfrage annimmst"; -$a->strings["joining a forum/community"] = "Du einem Forum beitrittst"; -$a->strings["making an interesting profile change"] = "Du eine interessante Änderung an Deinem Profil vornimmst"; -$a->strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:"; -$a->strings["You receive a connection request"] = "Du eine Verbindungsanfrage erhältst"; -$a->strings["Your connections are confirmed"] = "Eine Verbindung bestätigt wurde"; -$a->strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt"; -$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert"; -$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst"; -$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst"; -$a->strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest"; -$a->strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"; -$a->strings["Show visual notifications including:"] = "Visuelle Benachrichtigungen anzeigen für:"; -$a->strings["Unseen matrix activity"] = "Ungesehene Matrix-Aktivität"; -$a->strings["Unseen channel activity"] = "Ungesehene Kanal-Aktivität"; -$a->strings["Unseen private messages"] = "Ungelesene persönliche Nachrichten"; -$a->strings["Recommended"] = "Empfohlen"; -$a->strings["Upcoming events"] = "Baldige Termine"; -$a->strings["Events today"] = "Heutige Termine"; -$a->strings["Upcoming birthdays"] = "Baldige Geburtstage"; -$a->strings["Not available in all themes"] = "Nicht in allen Themes verfügbar"; -$a->strings["System (personal) notifications"] = "System – (persönliche) Benachrichtigungen"; -$a->strings["System info messages"] = "System – Info-Nachrichten"; -$a->strings["System critical alerts"] = "System – kritische Warnungen"; -$a->strings["New connections"] = "Neue Verbindungen"; -$a->strings["System Registrations"] = "System – Registrierungen"; -$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an"; -$a->strings["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus"; -$a->strings["Must be greater than 0"] = "Muss größer als 0 sein"; -$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen"; -$a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen"; -$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!"; -$a->strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; -$a->strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals"; -$a->strings["Remove this channel"] = "Diesen Kanal löschen"; -$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++"; -$a->strings["Tag removed"] = "Schlagwort entfernt"; -$a->strings["Remove Item Tag"] = "Schlagwort entfernen"; -$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; -$a->strings["Remove"] = "Entferne"; +$a->strings["Edit post"] = "Bearbeite Beitrag"; +$a->strings["\$Projectname channel"] = "\$Projectname-Kanal"; $a->strings["Collection created."] = "Sammlung erstellt."; $a->strings["Could not create collection."] = "Sammlung kann nicht erstellt werden."; $a->strings["Collection updated."] = "Sammlung aktualisiert."; @@ -1257,105 +1087,38 @@ $a->strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hi $a->strings["Version %s"] = "Version %s"; $a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; $a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; -$a->strings["Red"] = "Red"; -$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; +$a->strings["\$Projectname"] = "\$Projectname"; +$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; $a->strings["Tag: "] = "Schlagwort: "; $a->strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; $a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; -$a->strings["Please visit RedMatrix.me to learn more about the Red Matrix."] = "Bitte besuchen Sie RedMatrix.me, um mehr über RedMatrix zu erfahren."; +$a->strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Bitte besuchen Sie redmatrix.me, um mehr über \$Projectname zu erfahren."; $a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["\$projectname issues"] = "\$projectname-Bugtracker"; $a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; $a->strings["Site Administrators"] = "Administratoren"; -$a->strings["Help:"] = "Hilfe:"; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation"; -$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; -$a->strings["Could not create table."] = "Kann Tabelle nicht erstellen."; -$a->strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert."; -$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; -$a->strings["System check"] = "Systemprüfung"; -$a->strings["Check again"] = "Bitte nochmal prüfen"; -$a->strings["Database connection"] = "Datenbank Verbindung"; -$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; -$a->strings["Database Server Name"] = "Datenbank-Servername"; -$a->strings["Default is localhost"] = "Standard ist localhost"; -$a->strings["Database Port"] = "Datenbank-Port"; -$a->strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; -$a->strings["Database Login Name"] = "Datenbank-Benutzername"; -$a->strings["Database Login Password"] = "Datenbank-Kennwort"; -$a->strings["Database Name"] = "Datenbank-Name"; -$a->strings["Database Type"] = "Datenbanktyp"; -$a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; -$a->strings["Website URL"] = "Server-URL"; -$a->strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; -$a->strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; -$a->strings["Site settings"] = "Seiteneinstellungen"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; -$a->strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; -$a->strings["Command line PHP"] = "PHP Befehlszeile"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; -$a->strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; -$a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; -$a->strings["libCurl PHP module"] = "libCurl-PHP-Modul"; -$a->strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; -$a->strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; -$a->strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; -$a->strings["mb_string PHP module"] = "mb_string-PHP-Modul"; -$a->strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; -$a->strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; -$a->strings["proc_open"] = "proc_open"; -$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; -$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; -$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; -$a->strings["%s is writable"] = "%s ist beschreibbar"; -$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; -$a->strings["store is writable"] = "store ist schreibbar"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; -$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; -$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; -$a->strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; -$a->strings["Url rewrite is working"] = "Url rewrite funktioniert"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; -$a->strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; -$a->strings["

What next

"] = "

Was als Nächstes

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; +$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; +$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; +$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; +$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; +$a->strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; +$a->strings["No such group"] = "Sammlung nicht gefunden"; +$a->strings["No such channel"] = "Kanal nicht gefunden"; +$a->strings["Search Results For:"] = "Suchergebnisse für:"; +$a->strings["Collection is empty"] = "Sammlung ist leer"; +$a->strings["Collection: "] = "Sammlung:"; +$a->strings["Connection: "] = "Verbindung:"; +$a->strings["Invalid connection."] = "Ungültige Verbindung."; $a->strings["No channel."] = "Kein Kanal."; $a->strings["Common connections"] = "Gemeinsame Verbindungen"; $a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; +$a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; $a->strings["Blocked"] = "Blockiert"; $a->strings["Ignored"] = "Ignoriert"; $a->strings["Hidden"] = "Versteckt"; $a->strings["Archived"] = "Archiviert"; -$a->strings["All"] = "Alle"; $a->strings["Suggest new connections"] = "Neue Verbindungen vorschlagen"; $a->strings["New Connections"] = "Neue Verbindungen"; $a->strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; @@ -1371,70 +1134,84 @@ $a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; $a->strings["Edit connection"] = "Verbindung bearbeiten"; $a->strings["Search your connections"] = "Verbindungen durchsuchen"; $a->strings["Finding: "] = "Ergebnisse:"; -$a->strings["webpage"] = "Webseite"; -$a->strings["block"] = "Block"; -$a->strings["layout"] = "Layout"; -$a->strings["%s element installed"] = "Element für %s installiert"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; -$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; -$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen."; -$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; -$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; -$a->strings["Public access denied."] = "Öffentlicher Zugang verweigert."; -$a->strings["Thing updated"] = "Sache aktualisiert"; -$a->strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; -$a->strings["Thing added"] = "Sache hinzugefügt"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Sache anzeigen"; -$a->strings["item not found."] = "Eintrag nicht gefunden"; -$a->strings["Edit Thing"] = "Sache bearbeiten"; -$a->strings["Select a profile"] = "Wähle ein Profil"; -$a->strings["Post an activity"] = "Aktivitätsnachricht senden"; -$a->strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; -$a->strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; -$a->strings["URL of thing (optional)"] = "URL der Sache (optional)"; -$a->strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; -$a->strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; +$a->strings["Block Name"] = "Datenblockname"; +$a->strings["Block Title"] = "Titel des Blocks"; +$a->strings["Item not found"] = "Element nicht gefunden"; +$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; +$a->strings["Delete item?"] = "Eintrag löschen?"; +$a->strings["Insert YouTube video"] = "YouTube-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; +$a->strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "\$Projectname-Gäste: Benutzername: {Ihre E-Mail-Adresse}, Passwort: +++"; +$a->strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Delete Album"] = "Album löschen"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["No photos selected"] = "Keine Fotos ausgewählt"; +$a->strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; +$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; +$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; +$a->strings["Upload Photos"] = "Fotos hochladen"; +$a->strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; +$a->strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; +$a->strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; +$a->strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; +$a->strings["Contact Photos"] = "Kontakt-Bilder"; +$a->strings["Show Newest First"] = "Neueste zuerst anzeigen"; +$a->strings["Show Oldest First"] = "Älteste zuerst anzeigen"; +$a->strings["View Photo"] = "Foto ansehen"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; +$a->strings["Photo not available"] = "Foto nicht verfügbar"; +$a->strings["Use as profile photo"] = "Als Profilfoto verwenden"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["View Full Size"] = "In voller Größe anzeigen"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; +$a->strings["Caption"] = "Bildunterschrift"; +$a->strings["Add a Tag"] = "Schlagwort hinzufügen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; +$a->strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; +$a->strings["In This Photo:"] = "Auf diesem Foto:"; +$a->strings["Map"] = "Karte"; +$a->strings["View Album"] = "Album ansehen"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; +$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; +$a->strings["Profile Match"] = "Profil-Übereinstimmungen"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; +$a->strings["is interested in:"] = "interessiert sich für:"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; $a->strings["Away"] = "Abwesend"; $a->strings["Online"] = "Online"; -$a->strings["Channel added."] = "Kanal hinzugefügt."; +$a->strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; +$a->strings["Save Bookmark"] = "Lesezeichen speichern"; +$a->strings["URL of bookmark"] = "URL des Lesezeichens"; +$a->strings["Description"] = "Beschreibung"; +$a->strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; $a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; $a->strings["System Notifications"] = "System-Benachrichtigungen"; $a->strings["network"] = "Netzwerk"; $a->strings["RSS"] = "RSS"; -$a->strings["Layout updated."] = "Layout aktualisiert."; +$a->strings["Layout updated."] = "Gestaltung aktualisiert."; $a->strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -$a->strings["Layout not found."] = "Layout nicht gefunden."; +$a->strings["Layout not found."] = "Gestaltung nicht gefunden."; $a->strings["Module Name:"] = "Modulname:"; -$a->strings["Layout Help"] = "Layout-Hilfe"; -$a->strings["App installed."] = "App installiert."; -$a->strings["Malformed app."] = "Fehlerhafte App."; -$a->strings["Embed code"] = "Code einbetten"; -$a->strings["Edit App"] = "App bearbeiten"; -$a->strings["Create App"] = "App erstellen"; -$a->strings["Name of app"] = "Name der App"; -$a->strings["Location (URL) of app"] = "Ort (URL) der App"; -$a->strings["Description"] = "Beschreibung"; -$a->strings["Photo icon URL"] = "URL zum Icon"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; -$a->strings["Version ID"] = "Versions-ID"; -$a->strings["Price of app"] = "Preis der App"; -$a->strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +$a->strings["Layout Help"] = "Gestaltungshilfe"; $a->strings["- select -"] = "– auswählen –"; $a->strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; $a->strings["Nothing to import."] = "Nichts zu importieren."; $a->strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; $a->strings["Imported file is empty."] = "Die importierte Datei ist leer."; +$a->strings["The data provided is not compatible with this project."] = "Die bereitgestellten Daten sind mit diesem Projekt nicht kompatibel."; +$a->strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; $a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; -$a->strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; $a->strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; $a->strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -$a->strings["Import completed."] = "Import abgeschlossen."; $a->strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; $a->strings["Import Channel"] = "Kanal importieren"; -$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Red-Server zu importieren. Du kannst den Kanal direkt vom bisherigen Red-Server über das Netzwerk importieren oder eine exportierte Sicherheitskopie benutzen. Es werden ausschließlich die Identität und die Verbindungen/Beziehungen importiert. Das Importieren von Inhalten ist derzeit nicht möglich."; +$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen RadMatrix-Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; $a->strings["File to Upload"] = "Hochzuladende Datei:"; $a->strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein"; $a->strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; @@ -1442,10 +1219,12 @@ $a->strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; $a->strings["Your old login password"] = "Dein altes Passwort"; $a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige Red-Server diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; $a->strings["Make this hub my primary location"] = "Dieser Red-Server ist mein primärer Server."; -$a->strings["Import existing posts if possible"] = "Existierende Beiträge importieren, falls möglich"; -$a->strings["Edit Layout"] = "Layout bearbeiten"; -$a->strings["Delete layout?"] = "Layout löschen?"; -$a->strings["Delete Layout"] = "Layout löschen"; +$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; +$a->strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; +$a->strings["Delete layout?"] = "Gestaltung löschen?"; +$a->strings["Layout Description (Optional)"] = "Gestaltungsbeschreibung (Optional)"; +$a->strings["Layout Name"] = "Gestaltungsname"; +$a->strings["Edit Layout"] = "Gestaltung bearbeiten"; $a->strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; $a->strings["Room not found"] = "Chatraum nicht gefunden"; $a->strings["Leave Room"] = "Raum verlassen"; @@ -1456,10 +1235,40 @@ $a->strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; $a->strings["New Chatroom"] = "Neuer Chatraum"; $a->strings["Chatroom Name"] = "Name des Chatraums"; $a->strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -$a->strings["Edit Webpage"] = "Webseite bearbeiten"; +$a->strings["Menu not found."] = "Menü nicht gefunden"; +$a->strings["Unable to create element."] = "Element konnte nicht erstellt werden."; +$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; +$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; +$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; +$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)"; +$a->strings["Link Name"] = "Name des Links"; +$a->strings["Link or Submenu Target"] = "Ziel des Links oder Untermenüs"; +$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen."; +$a->strings["Use magic-auth if available"] = "Magic-Auth verwenden, falls verfügbar"; +$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; +$a->strings["Order in list"] = "Reihenfolge in der Liste"; +$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; +$a->strings["Submit and finish"] = "Absenden und fertigstellen"; +$a->strings["Submit and continue"] = "Absenden und fortfahren"; +$a->strings["Menu:"] = "Menü:"; +$a->strings["Link Target"] = "Ziel des Links"; +$a->strings["Edit menu"] = "Menü bearbeiten"; +$a->strings["Edit element"] = "Bestandteil bearbeiten"; +$a->strings["Drop element"] = "Bestandteil löschen"; +$a->strings["New element"] = "Neues Bestandteil"; +$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; +$a->strings["Add menu element"] = "Menüelement hinzufügen"; +$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; +$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; +$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; +$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; +$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; +$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; +$a->strings["Link text"] = "Link Text"; $a->strings["Delete webpage?"] = "Webseite löschen?"; -$a->strings["Delete Webpage"] = "Webseite löschen"; -$a->strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; +$a->strings["Page link title"] = "Seitentitel-Link"; +$a->strings["Edit Webpage"] = "Webseite bearbeiten"; +$a->strings["This directory server requires an access token"] = "Dieser Verzeichnis-Server benötigt ein Zugangstoken"; $a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; $a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; $a->strings["Site Member (%s)"] = "Nutzer (%s)"; @@ -1470,14 +1279,18 @@ $a->strings["Your password has been reset as requested."] = "Dein Passwort wurde $a->strings["Your new password is"] = "Dein neues Passwort lautet"; $a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; $a->strings["click here to login"] = "Klicke hier, um dich anzumelden"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Ihr Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; $a->strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; $a->strings["Forgot your Password?"] = "Kennwort vergessen?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; $a->strings["Email Address"] = "E-Mail Adresse"; $a->strings["Reset"] = "Zurücksetzen"; $a->strings["Website:"] = "Webseite:"; -$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; +$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Entfernter Kanal [%s] (auf diesem Server noch unbekannt)"; +$a->strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; +$a->strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; +$a->strings["Delete block?"] = "Block löschen?"; +$a->strings["Edit Block"] = "Block bearbeiten"; $a->strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; $a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; $a->strings["Please join us on Red"] = "Schließe Dich uns an und werde Teil der Red-Matrix"; @@ -1491,10 +1304,10 @@ $a->strings["You have no more invitations available"] = "Du hast keine weiteren $a->strings["Send invitations"] = "Einladungen senden"; $a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; $a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Please join my community on RedMatrix."] = "Schließe Dich uns in der RedMatrix an!"; +$a->strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; $a->strings["You will need to supply this invitation code: "] = "Gib folgenden Einladungs-Code ein:"; -$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)"; -$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Gib meine RedMatrix-Adresse im Suchfeld ein."; +$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Server (sie sind alle miteinander verbunden)"; +$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; $a->strings["or visit "] = "oder besuche"; $a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; $a->strings["Location not found."] = "Klon nicht gefunden."; @@ -1510,7 +1323,7 @@ $a->strings["Source updated."] = "Quelle aktualisiert."; $a->strings["*"] = "*"; $a->strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; $a->strings["New Source"] = "Neue Quelle"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importieren Sie alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteilen Sie sie gemäß der Ihrer Kanaleinstellungen."; $a->strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; $a->strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; $a->strings["Channel Name"] = "Name des Kanals"; @@ -1519,30 +1332,28 @@ $a->strings["Edit Source"] = "Quelle bearbeiten"; $a->strings["Delete Source"] = "Quelle löschen"; $a->strings["Source removed"] = "Quelle gelöscht"; $a->strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; -$a->strings["Menu updated."] = "Menü aktualisiert."; $a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; -$a->strings["Menu created."] = "Menü erstellt."; $a->strings["Unable to create menu."] = "Kann Menü nicht erstellen."; -$a->strings["Manage Menus"] = "Menüs verwalten"; +$a->strings["Menu Name"] = "Name des Menüs"; +$a->strings["Unique name (not visible on webpage) - required"] = "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich"; +$a->strings["Menu Title"] = "Menütitel"; +$a->strings["Visible on webpage - leave empty for no title"] = "Sichtbar auf der Webseite – für keinen Titel leer lassen"; +$a->strings["Allow Bookmarks"] = "Lesezeichen erlauben"; +$a->strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; +$a->strings["Submit and proceed"] = "Absenden und fortfahren"; $a->strings["Drop"] = "Löschen"; $a->strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; -$a->strings["Create a new menu"] = "Neues Menü erstellen"; $a->strings["Delete this menu"] = "Lösche dieses Menü"; $a->strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; $a->strings["Edit this menu"] = "Dieses Menü bearbeiten"; -$a->strings["New Menu"] = "Neues Menü"; +$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; +$a->strings["Edit Menu"] = "Menü bearbeiten"; +$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; $a->strings["Menu name"] = "Menü Name"; $a->strings["Must be unique, only seen by you"] = "Muss eindeutig sein, ist aber nur für Dich sichtbar"; $a->strings["Menu title"] = "Menü Titel"; $a->strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; $a->strings["Allow bookmarks"] = "Erlaube Lesezeichen"; -$a->strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; -$a->strings["Menu not found."] = "Menü nicht gefunden"; -$a->strings["Menu deleted."] = "Menü gelöscht."; -$a->strings["Menu could not be deleted."] = "Menü konnte nicht gelöscht werden."; -$a->strings["Edit Menu"] = "Menü bearbeiten"; -$a->strings["Add or remove entries to this menu"] = "Einträge zu diesem Menü hinzufügen oder entfernen"; -$a->strings["Modify"] = "Ändern"; $a->strings["Permission Denied."] = "Zugriff verweigert."; $a->strings["File not found."] = "Datei nicht gefunden."; $a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; @@ -1551,9 +1362,9 @@ $a->strings["Include all files and sub folders"] = "Alle Dateien und Unterverzei $a->strings["Return to file list"] = "Zurück zur Dateiliste"; $a->strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; $a->strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; -$a->strings["Attach this file to a new post"] = "Diese Datei an einen neuen Beitrag anhängen"; +$a->strings["Share this file"] = "Diese Datei freigeben"; $a->strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; -$a->strings["Do not show in shared with me folder of your connections"] = "Nicht im Ordner „Dateien, die mit mir geteilt wurden“ meiner Verbindungen anzeigen"; +$a->strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; $a->strings["Contact not found."] = "Kontakt nicht gefunden"; $a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden."; $a->strings["Suggest Friends"] = "Kontakte vorschlagen"; @@ -1568,15 +1379,15 @@ $a->strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; $a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; $a->strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; $a->strings["Visible To"] = "Sichtbar für"; -$a->strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["%s element installed"] = "Element für %s installiert"; +$a->strings["%s element installation failed"] = "Installation des Elements %s ist fehlgeschlagen"; $a->strings["Profile not found."] = "Profil nicht gefunden."; $a->strings["Profile deleted."] = "Profil gelöscht."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Neues Profil erstellt."; $a->strings["Profile unavailable to clone."] = "Profil kann nicht geklont werden."; $a->strings["Profile unavailable to export."] = "Dieses Profil kann nicht exportiert werden."; -$a->strings["Profile Name is required."] = "Profil-Name erforderlich."; +$a->strings["Profile Name is required."] = "Profilname ist erforderlich."; $a->strings["Marital Status"] = "Familienstand"; $a->strings["Romantic Partner"] = "Romantische Partner"; $a->strings["Likes"] = "Gefällt"; @@ -1639,33 +1450,94 @@ $a->strings["Ratings"] = "Bewertungen"; $a->strings["Rating: "] = "Bewertung: "; $a->strings["Website: "] = "Webseite: "; $a->strings["Description: "] = "Beschreibung: "; -$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; -$a->strings["Delegate Page Management"] = "Delegiere das Management für diese Seite"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; -$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; -$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; -$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; -$a->strings["Add"] = "Hinzufügen"; -$a->strings["No entries."] = "Keine Einträge."; -$a->strings["%d rating"] = array( - 0 => "%d Bewertung", - 1 => "%d Bewertungen", -); -$a->strings["Gender: "] = "Geschlecht:"; -$a->strings["Status: "] = "Status:"; -$a->strings["Homepage: "] = "Webseite:"; -$a->strings["Hometown: "] = "Wohnort:"; -$a->strings["About: "] = "Über:"; -$a->strings["Public Forum:"] = "Öffentliches Forum:"; -$a->strings["Keywords: "] = "Schlüsselwörter:"; -$a->strings["Finding:"] = "Ergebnisse:"; -$a->strings["next page"] = "nächste Seite"; -$a->strings["previous page"] = "vorherige Seite"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; -$a->strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; -$a->strings["Save Bookmark"] = "Lesezeichen speichern"; -$a->strings["URL of bookmark"] = "URL des Lesezeichens"; -$a->strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; +$a->strings["Source of Item"] = "Quelle des Elements"; +$a->strings["\$Projectname Server - Setup"] = "\$Projectname Server-Einrichtung"; +$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; +$a->strings["Could not create table."] = "Kann Tabelle nicht erstellen."; +$a->strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; +$a->strings["System check"] = "Systemprüfung"; +$a->strings["Check again"] = "Bitte nochmal prüfen"; +$a->strings["Database connection"] = "Datenbank Verbindung"; +$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktieren Sie Ihren Hosting-Provider oder Administrator, falls Sie Fragen zu diesen Einstellungen haben."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; +$a->strings["Database Server Name"] = "Datenbank-Servername"; +$a->strings["Default is localhost"] = "Standard ist localhost"; +$a->strings["Database Port"] = "Datenbank-Port"; +$a->strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; +$a->strings["Database Login Name"] = "Datenbank-Benutzername"; +$a->strings["Database Login Password"] = "Datenbank-Kennwort"; +$a->strings["Database Name"] = "Datenbank-Name"; +$a->strings["Database Type"] = "Datenbanktyp"; +$a->strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; +$a->strings["Website URL"] = "URL der Webseite"; +$a->strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; +$a->strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; +$a->strings["Site settings"] = "Seiteneinstellungen"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; +$a->strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; +$a->strings["Command line PHP"] = "PHP Befehlszeile"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; +$a->strings["This is required for message delivery to work."] = "Das ist für die funktionierende Auslieferung von Nachrichten erforderlich."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden."; +$a->strings["You can adjust these settings in the servers php.ini."] = "Du kannst diese Einstellungen in der php.ini des Servers ändern."; +$a->strings["PHP upload limits"] = "PHP-Hochladebeschränkungen"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; +$a->strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; +$a->strings["libCurl PHP module"] = "libCurl-PHP-Modul"; +$a->strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; +$a->strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; +$a->strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; +$a->strings["mb_string PHP module"] = "mb_string-PHP-Modul"; +$a->strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; +$a->strings["xml PHP module"] = "xml-PHP-Modul"; +$a->strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite ist erforderlich, aber nicht installiert."; +$a->strings["proc_open"] = "proc_open"; +$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL ist erforderlich, aber nicht installiert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung ist erforderlich, aber nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl ist erforderlich, aber nicht installiert."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string ist erforderlich, aber nicht installiert."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt ist erforderlich, aber nicht installiert."; +$a->strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; +$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; +$a->strings["%s is writable"] = "%s ist beschreibbar"; +$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; +$a->strings["store is writable"] = "store ist schreibbar"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; +$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; +$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer Red-Server (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; +$a->strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; +$a->strings["Url rewrite is working"] = "Url rewrite funktioniert"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; +$a->strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; +$a->strings["

What next

"] = "

Was als Nächstes

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; $a->strings["Export Channel"] = "Kanal exportieren"; $a->strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; $a->strings["Export Content"] = "Kanal und Inhalte exportieren"; @@ -1679,20 +1551,29 @@ $a->strings["Accounts"] = "Konten"; $a->strings["Channels"] = "Kanäle"; $a->strings["Plugins"] = "Plug-Ins"; $a->strings["Themes"] = "Themes"; -$a->strings["Server"] = "Server"; +$a->strings["Inspect queue"] = "Warteschlange kontrollieren"; $a->strings["Profile Config"] = "Profilkonfiguration"; $a->strings["DB updates"] = "DB-Aktualisierungen"; $a->strings["Logs"] = "Protokolle"; $a->strings["Plugin Features"] = "Plug-In Funktionen"; $a->strings["User registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; +$a->strings["# Accounts"] = "Anzahl der Konten"; +$a->strings["# blocked accounts"] = "Anzahl der blockierten Konten"; +$a->strings["# expired accounts"] = "Anzahl der abgelaufenen Konten"; +$a->strings["# expiring accounts"] = "Anzahl der ablaufenden Konten"; +$a->strings["# Channels"] = "Anzahl der Kanäle"; +$a->strings["# primary"] = "Anzahl der primären Kanäle"; +$a->strings["# clones"] = "Anzahl der Klone"; $a->strings["Message queues"] = "Nachrichten-Warteschlangen"; $a->strings["Administration"] = "Administration"; $a->strings["Summary"] = "Zusammenfassung"; -$a->strings["Registered users"] = "Registrierte Benutzer"; +$a->strings["Registered accounts"] = "Registrierte Konten"; $a->strings["Pending registrations"] = "Ausstehende Registrierungen"; -$a->strings["Version"] = "Version"; +$a->strings["Registered channels"] = "Registrierte Kanäle"; $a->strings["Active plugins"] = "Aktive Plug-Ins"; -$a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; +$a->strings["Version"] = "Version"; +$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert."; +$a->strings["mobile"] = "mobil"; $a->strings["experimental"] = "experimentell"; $a->strings["unsupported"] = "nicht unterstützt"; $a->strings["Yes - with approval"] = "Ja - mit Zustimmung"; @@ -1722,6 +1603,10 @@ $a->strings["Does this site allow new member registration?"] = "Erlaubt dieser S $a->strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; $a->strings["Register text"] = "Registrierungstext"; $a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; +$a->strings["Site homepage to show visitors (default: login box)"] = "Homepage des Servers, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)"; +$a->strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen."; +$a->strings["Preserve site homepage URL"] = "Homepage-URL schützen"; +$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten."; $a->strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; $a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; @@ -1738,8 +1623,8 @@ $a->strings["Force publish"] = "Veröffentlichung erzwingen"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; $a->strings["Disable discovery tab"] = "Den „Entdecken“-Reiter ausblenden"; $a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden."; -$a->strings["No login on Homepage"] = "Kein Login auf der Homepage"; -$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört)."; +$a->strings["login on Homepage"] = "Anmeldemaske auf der Homepage"; +$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden."; $a->strings["Proxy user"] = "Proxy Benutzer"; $a->strings["Proxy URL"] = "Proxy URL"; $a->strings["Network timeout"] = "Netzwerk-Timeout"; @@ -1750,11 +1635,14 @@ $a->strings["Poll interval"] = "Abfrageintervall"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; $a->strings["Maximum Load Average"] = "Maximales Load Average"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; +$a->strings["Expiration period in days for imported (matrix/network) content"] = "Setze den Zeitraum (in Tagen), ab wann importierte Inhalte aus der RedMatrix (dem Netzwerk) ablaufen sollen"; +$a->strings["0 for no expiration of imported content"] = "Setze 0, damit importierte Inhalte niemals ablaufen (entfernt werden)"; $a->strings["No server found"] = "Kein Server gefunden"; $a->strings["ID"] = "ID"; $a->strings["for channel"] = "für Kanal"; $a->strings["on server"] = "auf Server"; $a->strings["Status"] = "Status"; +$a->strings["Server"] = "Server"; $a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; $a->strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; $a->strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; @@ -1764,17 +1652,25 @@ $a->strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; $a->strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; $a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; $a->strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s Nutzer blockiert/freigegeben", - 1 => "%s Nutzer blockiert/freigegeben", +$a->strings["Queue Statistics"] = "Warteschlangenstatistiken"; +$a->strings["Total Entries"] = "Einträge insgesamt"; +$a->strings["Priority"] = "Priorität"; +$a->strings["Destination URL"] = "Ziel-URL"; +$a->strings["Mark hub permanently offline"] = "Hub als permanent offline markieren"; +$a->strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren"; +$a->strings["Last known contact"] = "Letzter bekannter Kontakt"; +$a->strings["%s account blocked/unblocked"] = array( + 0 => "%s Konto blockiert/freigegeben", + 1 => "%s Konten blockiert/freigegeben", ); -$a->strings["%s user deleted"] = array( - 0 => "%s Nutzer gelöscht", - 1 => "%s Nutzer gelöscht", +$a->strings["%s account deleted"] = array( + 0 => "%s Konto gelöscht", + 1 => "%s Konten gelöscht", ); $a->strings["Account not found"] = "Konto nicht gefunden"; -$a->strings["User '%s' unblocked"] = "Benutzer '%s' freigegeben"; -$a->strings["User '%s' blocked"] = "Benutzer '%s' blockiert"; +$a->strings["Account '%s' deleted"] = "Konte '%s' gelöscht"; +$a->strings["Account '%s' blocked"] = "Konto '%s' blockiert"; +$a->strings["Account '%s' unblocked"] = "Konto '%s' freigegeben"; $a->strings["Users"] = "Benutzer"; $a->strings["select all"] = "Alle auswählen"; $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; @@ -1782,26 +1678,36 @@ $a->strings["Request date"] = "Antragsdatum"; $a->strings["No registrations."] = "Keine Registrierungen."; $a->strings["Approve"] = "Genehmigen"; $a->strings["Deny"] = "Verweigern"; +$a->strings["Block"] = "Blockieren"; +$a->strings["Unblock"] = "Freigeben"; $a->strings["Register date"] = "Registrierungs-Datum"; $a->strings["Last login"] = "Letzte Anmeldung"; $a->strings["Expires"] = "Verfällt"; $a->strings["Service Class"] = "Service-Klasse"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; +$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Ausgewählte Konten werden gelöscht.\\n\\nAlles was diese Konten auf dieser Seite veröffentlicht haben wird permanent gelöscht werden!\\n\\nBist du dir sicher?"; +$a->strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; $a->strings["%s channel censored/uncensored"] = array( 0 => "%s Kanal gesperrt/freigegeben", 1 => "%s Kanäle gesperrt/freigegeben", ); +$a->strings["%s channel code allowed/disallowed"] = array( + 0 => "Code für %s Kanal gesperrt/freigegeben.", + 1 => "Code für %s Kanäle gesperrt/freigegeben", +); $a->strings["%s channel deleted"] = array( 0 => "%s Kanal gelöscht", 1 => "%s Kanäle gelöscht", ); $a->strings["Channel not found"] = "Kanal nicht gefunden"; $a->strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; -$a->strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; $a->strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; +$a->strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; +$a->strings["Channel '%s' code allowed"] = "Code für Kanal '%s' freigegeben"; +$a->strings["Channel '%s' code disallowed"] = "Code für Kanal '%s' gesperrt."; $a->strings["Censor"] = "Sperren"; $a->strings["Uncensor"] = "Freigeben"; +$a->strings["Allow Code"] = "Code erlauben"; +$a->strings["Disallow Code"] = "Code nicht erlauben"; $a->strings["UID"] = "UID"; $a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; $a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; @@ -1816,7 +1722,7 @@ $a->strings["No themes found."] = "Keine Theme gefunden."; $a->strings["Screenshot"] = "Bildschirmfoto"; $a->strings["[Experimental]"] = "[Experimentell]"; $a->strings["[Unsupported]"] = "[Nicht unterstützt]"; -$a->strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; +$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert."; $a->strings["Clear"] = "Leeren"; $a->strings["Debugging"] = "Debugging"; $a->strings["Log file"] = "Protokolldatei"; @@ -1834,76 +1740,270 @@ $a->strings["Field definition not found"] = "Feld-Definition nicht gefunden"; $a->strings["Edit Profile Field"] = "Profilfeld bearbeiten"; $a->strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; $a->strings["Post successful."] = "Veröffentlichung erfolgreich."; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; -$a->strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -$a->strings["Please login."] = "Bitte melde dich an."; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; +$a->strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; +$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["Terms of Service"] = "Nutzungsbedingungen"; +$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; +$a->strings["Your email address"] = "Ihre E-Mail Adresse"; +$a->strings["Choose a password"] = "Passwort"; +$a->strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; $a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; $a->strings["Remove This Account"] = "Dieses Konto löschen"; -$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden."; +$a->strings["WARNING: "] = "WARNUNG: "; +$a->strings["This account and all its channels will be completely removed from the network. "] = "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht."; +$a->strings["This action is permanent and can not be undone!"] = "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!"; $a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; $a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; $a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"; +$a->strings["Remove Account"] = "Konto entfernen"; +$a->strings["Help:"] = "Hilfe:"; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["\$Projectname Documentation"] = "\$Projectname Dokkumentation"; $a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"; -$a->strings["Wall Photos"] = "Wall Fotos"; -$a->strings["Profile Match"] = "Profil-Übereinstimmungen"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; -$a->strings["is interested in:"] = "interessiert sich für:"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; +$a->strings["Remote privacy information not available."] = "Privatsphäreeinstellungen anderer Nutzer sind nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["Name is required"] = "Name ist erforderlich"; +$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis sind erforderlich"; +$a->strings["Diaspora Policy Settings updated."] = "Diaspora-Richtlinieneinstellungen aktualisiert."; +$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; +$a->strings["Password changed."] = "Kennwort geändert."; +$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."; +$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse."; +$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."; +$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; +$a->strings["Settings updated."] = "Einstellungen aktualisiert."; +$a->strings["Add application"] = "Anwendung hinzufügen"; +$a->strings["Name of application"] = "Name der Anwendung"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Umleitung"; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; +$a->strings["Icon url"] = "Symbol-URL"; +$a->strings["Optional"] = "Optional"; +$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden."; +$a->strings["Connected Apps"] = "Verbundene Apps"; +$a->strings["Client key starts with"] = "Client Key beginnt mit"; +$a->strings["No name"] = "Kein Name"; +$a->strings["Remove authorization"] = "Authorisierung aufheben"; +$a->strings["No feature settings configured"] = "Keine Funktionseinstellungen konfiguriert"; +$a->strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; +$a->strings["Settings for the built-in Diaspora emulator"] = "Einstellungen für den eingebauten Diaspora-Emulator"; +$a->strings["Allow any Diaspora member to comment on your public posts"] = "Jedem Diaspora-Mitglied erlauben, Deine öffentlichen Beiträge zu kommentieren"; +$a->strings["Enable the Diaspora protocol for this channel"] = "Diaspora-Protokoll für diesen Kanal aktivieren"; +$a->strings["Diaspora Policy Settings"] = "Diaspora-Richtlinieneinstellungen"; +$a->strings["Prevent your hashtags from being redirected to other sites"] = "Verhindern, dass Deine hashtags zu anderen Seiten umgeleitet werden"; +$a->strings["Account Settings"] = "Kontoeinstellungen"; +$a->strings["Enter New Password:"] = "Neues Passwort eingeben:"; +$a->strings["Confirm New Password:"] = "Neues Passwort bestätigen:"; +$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; +$a->strings["Email Address:"] = "Email Adresse:"; +$a->strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; +$a->strings["Off"] = "Aus"; +$a->strings["On"] = "An"; +$a->strings["Additional Features"] = "Zusätzliche Funktionen"; +$a->strings["Connector Settings"] = "Verbindereinstellungen"; +$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; +$a->strings["%s - (Experimental)"] = "%s – (experimentell)"; +$a->strings["Display Settings"] = "Anzeigeeinstellungen"; +$a->strings["Theme Settings"] = "Theme-Einstellungen"; +$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme-Einstellungen"; +$a->strings["Content Settings"] = "Inhaltseinstellungen"; +$a->strings["Display Theme:"] = "Anzeige-Theme:"; +$a->strings["Mobile Theme:"] = "Mobile Theme:"; +$a->strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; +$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; +$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; +$a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; +$a->strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen"; +$a->strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; +$a->strings["System Page Layout Editor - (advanced)"] = "Systemseitengestaltungseditor - (erweitert)"; +$a->strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; +$a->strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; +$a->strings["Use blog/list mode on matrix page"] = "Blog-/Listenmodus auf der Matrixseite verwenden"; +$a->strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; +$a->strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; +$a->strings["Matrix page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)"; +$a->strings["Nobody except yourself"] = "Niemand außer Dir selbst"; +$a->strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst"; +$a->strings["Approved connections"] = "Angenommene Verbindungen"; +$a->strings["Any connections"] = "Beliebige Verbindungen"; +$a->strings["Anybody on this website"] = "Jeder auf dieser Website"; +$a->strings["Anybody in this network"] = "Alle Red-Nutzer"; +$a->strings["Anybody authenticated"] = "Jeder authentifizierte"; +$a->strings["Anybody on the internet"] = "Jeder im Internet"; +$a->strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; +$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet"; +$a->strings["Channel Settings"] = "Kanaleinstellungen"; +$a->strings["Basic Settings"] = "Grundeinstellungen"; +$a->strings["Your Timezone:"] = "Ihre Zeitzone:"; +$a->strings["Default Post Location:"] = "Standardstandort:"; +$a->strings["Geographical location to display on your posts"] = "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll"; +$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; +$a->strings["Adult Content"] = "Nicht jugendfreie Inhalte"; +$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"; +$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutzeinstellungen"; +$a->strings["Your permissions are already configured. Click to view/adjust"] = "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern"; +$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen"; +$a->strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil"; +$a->strings["Simple Privacy Settings:"] = "Einfache Privatsphäreeinstellungen:"; +$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)"; +$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)"; +$a->strings["Private - default private, never open or public"] = "Privat – Standard privat, nie offen oder öffentlich"; +$a->strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle standardmäßig blockiert"; +$a->strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten"; +$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren"; +$a->strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäreeinstellungen"; +$a->strings["Expire other channel content after this many days"] = "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen"; +$a->strings["0 or blank prevents expiration"] = "0 oder kein Inhalt verhindern das Verfallen"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; +$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; +$a->strings["Default Post Permissions"] = "Standardmäßige Beitragsberechtigungen"; +$a->strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; +$a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; +$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; +$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:"; +$a->strings["accepting a friend request"] = "Du eine Verbindungsanfrage annimmst"; +$a->strings["joining a forum/community"] = "Du einem Forum beitrittst"; +$a->strings["making an interesting profile change"] = "Du eine interessante Änderung an Deinem Profil vornimmst"; +$a->strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:"; +$a->strings["You receive a connection request"] = "Du eine Verbindungsanfrage erhältst"; +$a->strings["Your connections are confirmed"] = "Eine Verbindung bestätigt wurde"; +$a->strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt"; +$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert"; +$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst"; +$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst"; +$a->strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest"; +$a->strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"; +$a->strings["Show visual notifications including:"] = "Visuelle Benachrichtigungen anzeigen für:"; +$a->strings["Unseen matrix activity"] = "Ungesehene Matrix-Aktivität"; +$a->strings["Unseen channel activity"] = "Ungesehene Kanal-Aktivität"; +$a->strings["Unseen private messages"] = "Ungelesene persönliche Nachrichten"; +$a->strings["Recommended"] = "Empfohlen"; +$a->strings["Upcoming events"] = "Baldige Termine"; +$a->strings["Events today"] = "Heutige Termine"; +$a->strings["Upcoming birthdays"] = "Baldige Geburtstage"; +$a->strings["Not available in all themes"] = "Nicht in allen Themes verfügbar"; +$a->strings["System (personal) notifications"] = "System – (persönliche) Benachrichtigungen"; +$a->strings["System info messages"] = "System – Info-Nachrichten"; +$a->strings["System critical alerts"] = "System – kritische Warnungen"; +$a->strings["New connections"] = "Neue Verbindungen"; +$a->strings["System Registrations"] = "System – Registrierungen"; +$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an"; +$a->strings["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus"; +$a->strings["Must be greater than 0"] = "Muss größer als 0 sein"; +$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentypeinstellungen"; +$a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen"; +$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Bitte aktivieren Sie den Expertenmodus (unter Einstellungen > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!"; +$a->strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; +$a->strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals"; +$a->strings["Remove Channel"] = "Kanal löschen"; +$a->strings["Remove this channel."] = "Diesen Kanal löschen"; +$a->strings["First Name"] = "Vorname"; +$a->strings["Last Name"] = "Nachname"; +$a->strings["Nickname"] = "Spitzname"; +$a->strings["Full Name"] = "Voller Name"; +$a->strings["Profile Photo 16px"] = "Profilfoto 16 px"; +$a->strings["Profile Photo 32px"] = "Profilfoto 32 px"; +$a->strings["Profile Photo 48px"] = "Profilfoto 48 px"; +$a->strings["Profile Photo 64px"] = "Profilfoto 64 px"; +$a->strings["Profile Photo 80px"] = "Profilfoto 80 px"; +$a->strings["Profile Photo 128px"] = "Profilfoto 128 px"; +$a->strings["Timezone"] = "Zeitzone"; +$a->strings["Homepage URL"] = "Homepage-URL"; +$a->strings["Birth Year"] = "Geburtsjahr"; +$a->strings["Birth Month"] = "Geburtsmonat"; +$a->strings["Birth Day"] = "Geburtstag"; +$a->strings["Birthdate"] = "Geburtsdatum"; $a->strings["Conversation removed."] = "Unterhaltung gelöscht."; $a->strings["No messages."] = "Keine Nachrichten."; $a->strings["Delete conversation"] = "Unterhaltung löschen"; $a->strings["D, d M Y - g:i A"] = "D, d. M Y - G:i"; -$a->strings["Menu element updated."] = "Menü-Element aktualisiert."; -$a->strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; -$a->strings["Menu element added."] = "Menü-Bestandteil hinzugefügt."; -$a->strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; -$a->strings["Manage Menu Elements"] = "Menü-Bestandteile verwalten"; -$a->strings["Edit menu"] = "Menü bearbeiten"; -$a->strings["Edit element"] = "Bestandteil bearbeiten"; -$a->strings["Drop element"] = "Bestandteil löschen"; -$a->strings["New element"] = "Neues Bestandteil"; -$a->strings["Edit this menu container"] = "Diesen Menü-Container bearbeiten"; -$a->strings["Add menu element"] = "Menüelement hinzufügen"; -$a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil"; -$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil"; -$a->strings["New Menu Element"] = "Neues Menü-Bestandteil"; -$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements"; -$a->strings["Link text"] = "Link Text"; -$a->strings["URL of link"] = "URL des Links"; -$a->strings["Use RedMatrix magic-auth if available"] = "Verwende die automatische RedMatrix-Authentifizierung (magic-auth), wenn verfügbar"; -$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster"; -$a->strings["Order in list"] = "Reihenfolge in der Liste"; -$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert"; -$a->strings["Menu item not found."] = "Menü-Bestandteil nicht gefunden."; -$a->strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; -$a->strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; -$a->strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; $a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -$a->strings["Total votes"] = "Stimmen gesamt"; +$a->strings["Total votes"] = "Stimmen insgesamt"; $a->strings["Average Rating"] = "Durchschnittliche Bewertung"; $a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; $a->strings["Remove This Channel"] = "Diesen Kanal löschen"; -$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieser Kanal komplett aus dem Netzwerk gelöscht. Einmal eingeleitet, kann dieser Prozess nicht wieder rückgängig gemacht werden."; +$a->strings["This channel will be completely removed from the network. "] = "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht."; $a->strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; $a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; -$a->strings["Remove Channel"] = "Kanal löschen"; -$a->strings["Help with this feature"] = "Hilfe zu dieser Funktion"; -$a->strings["Layout Name"] = "Layout-Name"; -$a->strings["Like/Dislike"] = "Mögen/Nicht mögen"; -$a->strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; -$a->strings["Please login with your RedMatrix ID or register as a new RedMatrix member to continue."] = "Bitte melde Dich mit Deiner RedMatrix-ID an oder registriere Dich als neues Mitglied der RedMatrix, um fortzufahren."; -$a->strings["Invalid request."] = "Ungültige Anfrage."; -$a->strings["thing"] = "Sache"; -$a->strings["Channel unavailable."] = "Kanal nicht vorhanden."; -$a->strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; -$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; -$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; -$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; -$a->strings["Action completed."] = "Aktion durchgeführt."; -$a->strings["Thank you."] = "Vielen Dank."; +$a->strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; +$a->strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; +$a->strings["Connection updated."] = "Verbindung aktualisiert."; +$a->strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; +$a->strings["is now connected to"] = "ist jetzt verbunden mit"; +$a->strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; +$a->strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; +$a->strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; +$a->strings["Connection has been removed."] = "Verbindung wurde gelöscht."; +$a->strings["View %s's profile"] = "%ss Profil ansehen"; +$a->strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; +$a->strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; +$a->strings["Recent Activity"] = "Kürzliche Aktivitäten"; +$a->strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; +$a->strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; +$a->strings["This connection is blocked!"] = "Die Verbindung ist geblockt!"; +$a->strings["Unignore"] = "Nicht ignorieren"; +$a->strings["Ignore"] = "Ignorieren"; +$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; +$a->strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; +$a->strings["This connection is archived!"] = "Die Verbindung ist archiviert."; +$a->strings["Unhide"] = "Wieder sichtbar machen"; +$a->strings["Hide"] = "Verstecken"; +$a->strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; +$a->strings["This connection is hidden!"] = "Die Verbindung ist versteckt!"; +$a->strings["Delete this connection"] = "Verbindung löschen"; +$a->strings["Approve this connection"] = "Verbindung genehmigen"; +$a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; +$a->strings["Set Affinity"] = "Beziehung festlegen"; +$a->strings["Set Profile"] = "Profil festlegen"; +$a->strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen"; +$a->strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; +$a->strings["This connection's address is"] = "Die Adresse des Kontakts lautet"; +$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen verwendet."; +$a->strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; +$a->strings["Slide to adjust your rating"] = "Verschieben, um deine Bewertung festzulegen"; +$a->strings["Optionally explain your rating"] = "Optional kannst du deine Bewertung beschreiben"; +$a->strings["Custom Filter"] = "Benutzerdefinierter Filter"; +$a->strings["Only import posts with this text"] = "Importiere nur Beiträge mit diesem Text"; +$a->strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "Einzelne Worte pro Zeile, #Tags oder /Muster/. Frei lassen, um alle Posts zu importieren."; +$a->strings["Do not import posts with this text"] = "Importiere keine Einträge mit diesem Text"; +$a->strings["This information is public!"] = "Diese Information ist öffentlich!"; +$a->strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; +$a->strings["Connection Request"] = "Verbindungs Anfrage"; +$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) möchte sich mit dir verbinden. Bitte genehmige die Verbindung um eine Kommunikation zu ermöglichen."; +$a->strings["Approve Later"] = "Bestätige später"; +$a->strings["inherited"] = "geerbt"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; +$a->strings["Their Settings"] = "Deren Einstellungen"; +$a->strings["My Settings"] = "Meine Einstellungen"; +$a->strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität, als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität, als die Einstellungen bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; +$a->strings["Last update:"] = "Letzte Aktualisierung:"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; +$a->strings["The error message was:"] = "Die Fehlermeldung war:"; +$a->strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; +$a->strings["Remote Authentication"] = "Entfernte Authentifizierung"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; +$a->strings["Authenticate"] = "Authentifizieren"; $a->strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; $a->strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; $a->strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; @@ -1923,6 +2023,8 @@ $a->strings["No secure communications available. You may be abl $a->strings["Send Reply"] = "Antwort senden"; $a->strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; $a->strings["Discard"] = "Verwerfen"; +$a->strings["Please login."] = "Bitte melde dich an."; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; $a->strings["Add a Channel"] = "Kanal hinzufügen"; $a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist Deine eigene Sammlung von zusammengehörigen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deines Hubs zulässt."; $a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; @@ -1932,112 +2034,78 @@ $a->strings["Or import an existing channel from another l $a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können"; $a->strings["Channel Type"] = "Kanaltyp"; $a->strings["Read more about roles"] = "Mehr Informationen über Rollen"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -$a->strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Delete Album"] = "Album löschen"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["No photos selected"] = "Keine Fotos ausgewählt"; -$a->strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; -$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; -$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; -$a->strings["Upload Photos"] = "Fotos hochladen"; -$a->strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; -$a->strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; -$a->strings["Do not show a status post for this upload"] = "Keine Statusnachricht für diesen Upload anzeigen"; -$a->strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; -$a->strings["Contact Photos"] = "Kontakt-Bilder"; -$a->strings["Show Newest First"] = "Neueste zuerst anzeigen"; -$a->strings["Show Oldest First"] = "Älteste zuerst anzeigen"; -$a->strings["View Photo"] = "Foto ansehen"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; -$a->strings["Photo not available"] = "Foto nicht verfügbar"; -$a->strings["Use as profile photo"] = "Als Profilfoto verwenden"; -$a->strings["Private Photo"] = "Privates Foto"; -$a->strings["View Full Size"] = "In voller Größe anzeigen"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; -$a->strings["Caption"] = "Bildunterschrift"; -$a->strings["Add a Tag"] = "Schlagwort hinzufügen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; -$a->strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; -$a->strings["In This Photo:"] = "Auf diesem Foto:"; -$a->strings["View Album"] = "Album ansehen"; -$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["App installed."] = "App installiert."; +$a->strings["Malformed app."] = "Fehlerhafte App."; +$a->strings["Embed code"] = "Code einbetten"; +$a->strings["Edit App"] = "App bearbeiten"; +$a->strings["Create App"] = "App erstellen"; +$a->strings["Name of app"] = "Name der App"; +$a->strings["Location (URL) of app"] = "Ort (URL) der App"; +$a->strings["Photo icon URL"] = "URL zum Icon"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; +$a->strings["Version ID"] = "Versions-ID"; +$a->strings["Price of app"] = "Preis der App"; +$a->strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; $a->strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; $a->strings["added your channel"] = "hat deinen Kanal hinzugefügt"; $a->strings["posted an event"] = "hat einen Termin veröffentlicht"; +$a->strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; +$a->strings["Layout Description"] = "Gestaltungsbeschreibung"; +$a->strings["Download PDL file"] = "PDL-Datei herunterladen"; +$a->strings["Welcome to %s"] = "Willkommen auf %s"; +$a->strings["Lorem Ipsum"] = "Lorem Ipsum"; $a->strings["Bookmark added"] = "Lesezeichen hinzugefügt"; $a->strings["My Bookmarks"] = "Meine Lesezeichen"; $a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; $a->strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; -$a->strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; -$a->strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["Terms of Service"] = "Nutzungsbedingungen"; -$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; -$a->strings["Your email address"] = "Ihre E-Mail Adresse"; -$a->strings["Choose a password"] = "Passwort"; -$a->strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; -$a->strings["The error message was:"] = "Die Fehlermeldung war:"; -$a->strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; -$a->strings["Remote Authentication"] = "Entfernte Authentifizierung"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; -$a->strings["Authenticate"] = "Authentifizieren"; +$a->strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert spezielles Vorgehen, die Bearbeitung wurde blockiert."; +$a->strings["Configuration Editor"] = "Konfigurationseditor"; +$a->strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlass diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; $a->strings["Poll"] = "Umfrage"; -$a->strings["View Results"] = "Ergebnisse"; +$a->strings["View Results"] = "Ergebnisse ansehen"; $a->strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; $a->strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; +$a->strings["NEW"] = "NEU"; $a->strings["Remove all files"] = "Alle Dateien löschen"; $a->strings["Remove this file"] = "Diese Datei löschen"; -$a->strings["Schema Default"] = "Standard-Schema"; -$a->strings["Sans-Serif"] = "Sans-Serif"; -$a->strings["Monospace"] = "Monospace"; +$a->strings["Schema Default"] = "Schemastandard"; +$a->strings["Sans-Serif"] = "Sans Serif"; +$a->strings["Monospace"] = "Monospace (dicktengleich)"; $a->strings["Theme settings"] = "Theme-Einstellungen"; -$a->strings["Set scheme"] = "Schema"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare"; +$a->strings["Set scheme"] = "Schema festlegen"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; $a->strings["Set font face"] = "Schriftart"; -$a->strings["Set iconset"] = "Icon-Set"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ausmaß der großen Schatten (Voreinstellung 15px 15px 15px)"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ausmaß der kleinen Schatten (Voreinstellung 5px 5px 5px)"; -$a->strings["Set shadow color, default #000"] = "Farbe der Schatten (Voreinstellung #000)"; -$a->strings["Set radius size, default 5px"] = "Ecken-Radius (Voreinstellung 5px)"; -$a->strings["Set line-height for posts and comments"] = "Zeilenhöhe in Beiträgen und Kommentaren"; -$a->strings["Set background image"] = "Hintergrundbild"; +$a->strings["Set iconset"] = "Symbolsatz festlegen"; +$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ausmaß der großen Schatten (Default 15px 15px 15px)"; +$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ausmaß der kleinen Schatten festlegen (Voreinstellung 5px 5px 5px)"; +$a->strings["Set shadow color, default #000"] = "Schattenfarbe (Voreinstellung #000)"; +$a->strings["Set radius size, default 5px"] = "Eckenradius (Voreinstellung 5px)"; +$a->strings["Set line-height for posts and comments"] = "Zeilenhöhe für Beiträge und Kommentare"; +$a->strings["Set background image"] = "Hintergrundbild festlegen"; $a->strings["Set background attachment"] = "Hintergrunddatei"; -$a->strings["Set background color"] = "Hintergrundfarbe"; -$a->strings["Set section background image"] = "Hintergrundbild für die Section"; -$a->strings["Set section background color"] = "Hintergrundfarbe für die Section"; +$a->strings["Set background color"] = "Hintergrundfarbe festlegen"; +$a->strings["Set section background image"] = "Hintergrundbild für die section"; +$a->strings["Set section background color"] = "Hintergrundfarbe für die section"; $a->strings["Set color of items - use hex"] = "Farbe für Beiträge – Hex benutzen"; $a->strings["Set color of links - use hex"] = "Farbe für Links – Hex benutzen"; -$a->strings["Set max-width for items. Default 400px"] = "Maximale Breite von Beiträgen (Voreinstellung 400px)"; -$a->strings["Set min-width for items. Default 240px"] = "Minimale Breite von Beiträgen (Voreinstellung 240px)"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Breite des \"generic content wrapper\" (Voreinstellung 48%)"; +$a->strings["Set max-width for items. Default 400px"] = "Maximalbreite von Beiträgen (Voreinstellung 400px)"; +$a->strings["Set min-width for items. Default 240px"] = "Minimalbreite von Beiträgen (Voreinstellung 240px)"; +$a->strings["Set the generic content wrapper width. Default 48%"] = "Breite des „generic content wrapper“ (Voreinstellung 48%)"; $a->strings["Set color of fonts - use hex"] = "Schriftfarbe – Hex benutzen"; -$a->strings["Set background-size element"] = "Größe des Hintergrund-Elements"; -$a->strings["Item opacity"] = "Deckkraft der Beiträge"; +$a->strings["Set background-size element"] = "size-Element für den Hintergrund"; +$a->strings["Item opacity"] = "Deckkraft für Beiträge"; $a->strings["Display post previews only"] = "Nur Beitragsvorschau anzeigen"; -$a->strings["Display side bar on channel page"] = "Zeige die Seitenleiste auf der Kanal-Seite"; +$a->strings["Display side bar on channel page"] = "Seitenleiste auf der Kanalseite anzeigen"; $a->strings["Colour of the navigation bar"] = "Farbe der Navigationsleiste"; -$a->strings["Item float"] = "Beitragsfluss"; -$a->strings["Left offset of the section element"] = "Linker Rand des Section Elements"; -$a->strings["Right offset of the section element"] = "Rechter Rand des Section Elements"; -$a->strings["Section width"] = "Breite der Section"; -$a->strings["Left offset of the aside"] = "Linker Rand des Aside-Elements"; -$a->strings["Right offset of the aside element"] = "Rechter Rand des Aside-Elements"; +$a->strings["Item float"] = "float für Beiträge"; +$a->strings["Left offset of the section element"] = "Linker offset des section-Elements"; +$a->strings["Right offset of the section element"] = "Rechter offset des section-Elements"; +$a->strings["Section width"] = "Breite der section"; +$a->strings["Left offset of the aside"] = "Linker offset der Seitenleiste"; +$a->strings["Right offset of the aside element"] = "Rechter offset der Seitenleiste"; $a->strings["Light (Red Matrix default)"] = "Hell (RedMatrix-Voreinstellung)"; +$a->strings["Select scheme"] = "Schema wählen"; $a->strings["Narrow navbar"] = "Schmale Navigationsleiste"; $a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; $a->strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben"; @@ -2049,31 +2117,33 @@ $a->strings["Navigation bar icon color "] = "Farbe für die Icons der Navigation $a->strings["Navigation bar active icon color "] = "Farbe für aktive Icons der Navigationsleiste"; $a->strings["link color"] = "Farbe für Links"; $a->strings["Set font-color for banner"] = "Farbe der Schrift des Banners"; -$a->strings["Set the background color"] = "Hintergrundfarbe"; -$a->strings["Set the background image"] = "Hintergrundbild"; -$a->strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge"; -$a->strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare"; -$a->strings["Set the border color of comments"] = "Farbe des Randes von Kommentaren"; -$a->strings["Set the indent for comments"] = "Einzugsbreite für Kommentare"; -$a->strings["Set the basic color for item icons"] = "Grundfarbe für Beitrags-Icons"; -$a->strings["Set the hover color for item icons"] = "Farbe für Beitrags-Icons unter dem Mauszeiger"; -$a->strings["Set font-size for the entire application"] = "Schriftgröße für die gesamte Anwendung"; -$a->strings["Set font-color for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare"; -$a->strings["Set radius of corners"] = "Ecken-Radius"; -$a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos"; -$a->strings["Set maximum width of conversation regions"] = "Maximalbreite der Unterhaltungsbereiche"; -$a->strings["Center conversation regions"] = "Konversationsbereich zentrieren"; -$a->strings["Set minimum opacity of nav bar - to hide it"] = "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)"; -$a->strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern"; -$a->strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren"; -$a->strings["Sloppy photo albums"] = "Schräge Fotoalben"; -$a->strings["Are you a clean desk or a messy desk person?"] = "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?"; +$a->strings["Set the background color"] = "Hintergrundfarbe festlegen"; +$a->strings["Set the background image"] = "Hintergrundbild festlegen"; +$a->strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge festlegen"; +$a->strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare festlegen"; +$a->strings["Set the border color of comments"] = "Farbe des Randes von Kommentaren festlegen"; +$a->strings["Set the indent for comments"] = "Einzugsbreite für Kommentare festlegen"; +$a->strings["Set the basic color for item icons"] = "Grundfarbe für Beitragssymbole festlegen"; +$a->strings["Set the hover color for item icons"] = "Farbe für Beitragssymbole unter dem Mauszeiger festlegen"; +$a->strings["Set font-size for the entire application"] = "Schriftgröße für die gesamte Anwendung festlegen"; +$a->strings["Example: 14px"] = "Beispiel: 14px"; +$a->strings["Set font-color for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare festlegen"; +$a->strings["Set radius of corners"] = "Eckenradius festlegen"; +$a->strings["Set shadow depth of photos"] = "Schattentiefe von Fotos festlegen"; +$a->strings["Set maximum width of content region in pixel"] = "Maximalbreite des Inhaltsbereichs in Pixel festlegen"; +$a->strings["Leave empty for default width"] = "Leer lassen für Standardbreite"; +$a->strings["Center page content"] = "Seiteninhalt zentrieren"; +$a->strings["Set minimum opacity of nav bar - to hide it"] = "Mindestdeckkraft der Navigationsleiste festlegen - zum Verstecken"; +$a->strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern festlegen"; +$a->strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren festlegen"; $a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; $a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; $a->strings["Create an account to access services and applications within the Red Matrix"] = "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."; $a->strings["Password"] = "Kennwort"; $a->strings["Remember me"] = "Angaben speichern"; $a->strings["Forgot your password?"] = "Passwort vergessen?"; -$a->strings["permission denied"] = "Zugriff verweigert"; -$a->strings["Got Zot?"] = "Haste schon Zot?"; $a->strings["toggle mobile"] = "auf/von mobile Ansicht wechseln"; +$a->strings["Website SSL certificate is not valid. Please correct."] = "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben."; +$a->strings["[red] Website SSL error for %s"] = "[red] Website-SSL-Fehler für %s"; +$a->strings["Cron/Scheduled tasks not running."] = "Cron-Aufgaben laufen nicht."; +$a->strings["[red] Cron tasks not running on %s"] = "[red] Cron-Aufgaben für %s laufen nicht"; diff --git a/view/it/hmessages.po b/view/it/hmessages.po index b3f40c0ab..6f37f3518 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -3,167 +3,347 @@ # This file is distributed under the same license as the Red package. # # Translators: -# fabrixxm , 2011 -# fabrixxm , 2011-2012 -# Francesco Apruzzese , 2012-2013 -# ufic , 2012 -# tuscanhobbit , 2012 -# tuscanhobbit , 2013-2015 +# Davide Pesenti , 2015 +# tuscanhobbit , 2015 msgid "" msgstr "" -"Project-Id-Version: Hubzilla\n" +"Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-24 00:03-0700\n" -"PO-Revision-Date: 2015-05-04 14:29+0000\n" +"POT-Creation-Date: 2015-09-26 22:48-0700\n" +"PO-Revision-Date: 2015-10-01 15:20+0000\n" "Last-Translator: tuscanhobbit \n" -"Language-Team: Italian (http://www.transifex.com/projects/p/red-matrix/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:141 +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." +msgstr "Impossibile trovare il nome utente nel file da importare." + +#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." + +#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:480 +msgid "Import completed." +msgstr "L'importazione è terminata con successo." + +#: ../../include/RedDAV/RedBrowser.php:107 +#: ../../include/RedDAV/RedBrowser.php:265 +msgid "parent" +msgstr "cartella superiore" + +#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2497 +msgid "Collection" +msgstr "Cartella" + +#: ../../include/RedDAV/RedBrowser.php:134 +msgid "Principal" +msgstr "Principale" + +#: ../../include/RedDAV/RedBrowser.php:137 +msgid "Addressbook" +msgstr "Rubrica" + +#: ../../include/RedDAV/RedBrowser.php:140 +msgid "Calendar" +msgstr "Calendario" + +#: ../../include/RedDAV/RedBrowser.php:143 +msgid "Schedule Inbox" +msgstr "Appuntamenti ricevuti" + +#: ../../include/RedDAV/RedBrowser.php:146 +msgid "Schedule Outbox" +msgstr "Appuntamenti inviati" + +#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1021 +#: ../../include/apps.php:355 ../../include/apps.php:410 +#: ../../mod/photos.php:720 ../../mod/photos.php:1159 +msgid "Unknown" +msgstr "Sconosciuto" + +#: ../../include/RedDAV/RedBrowser.php:227 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +msgid "%1$s used" +msgstr "%1$s occupati" -#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -#: ../../mod/photos.php:91 ../../mod/photos.php:625 -msgid "Profile Photos" -msgstr "Foto del profilo" +#: ../../include/RedDAV/RedBrowser.php:232 +#, php-format +msgid "%1$s used of %2$s (%3$s%)" +msgstr "%1$s occupati di %2$s (%3$s%)" -#: ../../include/security.php:349 +#: ../../include/RedDAV/RedBrowser.php:251 ../../include/conversation.php:1611 +#: ../../include/apps.php:135 ../../include/nav.php:93 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Archivio file" + +#: ../../include/RedDAV/RedBrowser.php:253 +msgid "Total" +msgstr "Totale" + +#: ../../include/RedDAV/RedBrowser.php:255 +msgid "Shared" +msgstr "Condiviso" + +#: ../../include/RedDAV/RedBrowser.php:256 +#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/layouts.php:175 +#: ../../mod/menu.php:114 ../../mod/new_channel.php:121 +#: ../../mod/webpages.php:180 ../../mod/blocks.php:152 +msgid "Create" +msgstr "Crea" + +#: ../../include/RedDAV/RedBrowser.php:257 +#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:745 +#: ../../mod/photos.php:1278 ../../mod/profile_photo.php:450 +msgid "Upload" +msgstr "Carica" + +#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:948 +#: ../../mod/settings.php:585 ../../mod/settings.php:611 +#: ../../mod/sharedwithme.php:95 +msgid "Name" +msgstr "Nome" + +#: ../../include/RedDAV/RedBrowser.php:262 +msgid "Type" +msgstr "Tipo" + +#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 +msgid "Size" +msgstr "Dimensione" + +#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 +msgid "Last Modified" +msgstr "Ultima modifica" + +#: ../../include/RedDAV/RedBrowser.php:266 ../../include/menu.php:108 +#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 +#: ../../include/apps.php:254 ../../include/ItemObject.php:100 +#: ../../mod/layouts.php:183 ../../mod/editpost.php:113 +#: ../../mod/editblock.php:135 ../../mod/menu.php:108 +#: ../../mod/webpages.php:181 ../../mod/blocks.php:153 ../../mod/thing.php:257 +#: ../../mod/settings.php:645 ../../mod/connections.php:235 +#: ../../mod/connections.php:248 ../../mod/connections.php:267 +#: ../../mod/editlayout.php:134 ../../mod/editwebpage.php:176 +msgid "Edit" +msgstr "Modifica" + +#: ../../include/RedDAV/RedBrowser.php:267 ../../include/conversation.php:662 +#: ../../include/apps.php:255 ../../include/ItemObject.php:120 +#: ../../mod/connedit.php:547 ../../mod/editblock.php:181 +#: ../../mod/admin.php:783 ../../mod/admin.php:942 ../../mod/photos.php:1090 +#: ../../mod/webpages.php:183 ../../mod/blocks.php:155 ../../mod/thing.php:258 +#: ../../mod/settings.php:646 ../../mod/editlayout.php:179 +#: ../../mod/editwebpage.php:223 ../../mod/group.php:173 +msgid "Delete" +msgstr "Elimina" + +#: ../../include/RedDAV/RedBrowser.php:302 +msgid "Create new folder" +msgstr "Nuova cartella" + +#: ../../include/RedDAV/RedBrowser.php:304 +msgid "Upload file" +msgstr "Carica un file" + +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Può vedere i miei contenuti e i post normali" + +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Può vedere il profilo predefinito del canale" + +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Può vedere i miei contatti" + +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Può vedere il mio archivio file e foto" + +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Può vedere le mie pagine web" + +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "È tra i canali che seguo" + +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Può scrivere sulla bacheca del mio canale" + +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Può commentare o aggiungere \"mi piace\" ai miei post" + +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Può inviarmi messaggi privati" + +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Può aggiungere \"mi piace\" a tutto il resto" + +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo" + +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione" + +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" + +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" + +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Può modificare il mio archivio file e foto" + +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Può modificare le mie pagine web" + +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Può usare i miei post pubblici per creare canali derivati" + +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" + +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" + +#: ../../include/permissions.php:46 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 "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "Ha creato un nuovo articolo" +#: ../../include/permissions.php:867 +msgid "Social Networking" +msgstr "Social network" -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "ha commentato l'articolo di %s" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Mostly Public" +msgstr "Prevalentemente pubblico" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +#: ../../include/permissions.php:869 +msgid "Restricted" +msgstr "Con restrizioni" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Insieme predefinito per i canali che inizi a seguire" +#: ../../include/permissions.php:867 ../../include/permissions.php:868 +msgid "Private" +msgstr "Privato" -#: ../../include/group.php:254 ../../mod/admin.php:822 -msgid "All Channels" -msgstr "Tutti i canali" +#: ../../include/permissions.php:868 +msgid "Community Forum" +msgstr "Forum di discussione" -#: ../../include/group.php:276 -msgid "edit" -msgstr "modifica" +#: ../../include/permissions.php:869 +msgid "Feed Republish" +msgstr "Aggregatore di feed esterni" -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Insiemi di canali" +#: ../../include/permissions.php:870 +msgid "Special Purpose" +msgstr "Per finalità speciali" -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Modifica l'insieme di canali" +#: ../../include/permissions.php:870 +msgid "Celebrity/Soapbox" +msgstr "Pagina per fan" -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "Nuovo insieme" +#: ../../include/permissions.php:870 +msgid "Group Repository" +msgstr "Repository di gruppo" -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Canali che non sono in un insieme" +#: ../../include/permissions.php:871 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 +msgid "Other" +msgstr "Altro" -#: ../../include/group.php:303 ../../include/widgets.php:275 -msgid "add" -msgstr "aggiungi" +#: ../../include/permissions.php:871 +msgid "Custom/Expert Mode" +msgstr "Personalizzazione per esperti" -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "Email non valida" +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Chat senza nome" -#: ../../include/account.php:29 -msgid "Your email domain is not among those allowed on this site" -msgstr "Il dominio della tua email attualmente non è permesso su questo sito" +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Il nome della chat è duplicato" -#: ../../include/account.php:35 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Il nome della chat non è valido." -#: ../../include/account.php:67 -msgid "An invitation is required." -msgstr "È necessario un invito." +#: ../../include/chat.php:122 +msgid "Room not found." +msgstr "Chat non trovata." -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." +#: ../../include/chat.php:133 ../../include/photos.php:26 +#: ../../include/attach.php:137 ../../include/attach.php:185 +#: ../../include/attach.php:248 ../../include/attach.php:262 +#: ../../include/attach.php:269 ../../include/attach.php:334 +#: ../../include/attach.php:348 ../../include/attach.php:355 +#: ../../include/attach.php:433 ../../include/attach.php:840 +#: ../../include/attach.php:911 ../../include/attach.php:1064 +#: ../../include/items.php:4342 ../../mod/achievements.php:30 +#: ../../mod/fsuggest.php:78 ../../mod/authtest.php:13 +#: ../../mod/bookmarks.php:48 ../../mod/block.php:22 ../../mod/block.php:72 +#: ../../mod/id.php:71 ../../mod/like.php:177 ../../mod/common.php:35 +#: ../../mod/mitem.php:111 ../../mod/connedit.php:348 ../../mod/mood.php:112 +#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 +#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 +#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 +#: ../../mod/poke.php:133 ../../mod/network.php:12 ../../mod/chat.php:91 +#: ../../mod/chat.php:96 ../../mod/message.php:16 ../../mod/channel.php:100 +#: ../../mod/channel.php:215 ../../mod/channel.php:255 +#: ../../mod/editpost.php:13 ../../mod/editblock.php:65 ../../mod/item.php:206 +#: ../../mod/item.php:214 ../../mod/item.php:992 ../../mod/appman.php:66 +#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/menu.php:74 +#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/new_channel.php:68 +#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 +#: ../../mod/pdledit.php:21 ../../mod/photos.php:70 ../../mod/rate.php:110 +#: ../../mod/events.php:256 ../../mod/profile_photo.php:338 +#: ../../mod/profile_photo.php:351 ../../mod/mail.php:114 +#: ../../mod/webpages.php:69 ../../mod/register.php:72 ../../mod/blocks.php:69 +#: ../../mod/blocks.php:76 ../../mod/service_limits.php:7 +#: ../../mod/sources.php:66 ../../mod/regmod.php:17 ../../mod/thing.php:271 +#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/viewsrc.php:14 +#: ../../mod/settings.php:565 ../../mod/manage.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/connections.php:29 +#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 +#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 +#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 +#: ../../mod/group.php:9 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/locs.php:82 +#: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7 +#: ../../mod/suggest.php:26 ../../mod/profiles.php:188 +#: ../../mod/profiles.php:576 ../../index.php:178 ../../index.php:361 +msgid "Permission denied." +msgstr "Permesso negato." -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." - -#: ../../include/account.php:246 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" - -#: ../../include/account.php:312 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" - -#: ../../include/account.php:314 ../../include/account.php:341 -#: ../../include/account.php:401 -msgid "Administrator" -msgstr "Amministratore" - -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "la password di registrazione" - -#: ../../include/account.php:339 ../../include/account.php:399 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "Account approvato." - -#: ../../include/account.php:447 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" - -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "Registrazione verificata. Adesso puoi effettuare login." - -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: ../../include/account.php:713 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." - -#: ../../include/account.php:718 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." +#: ../../include/chat.php:143 +msgid "Room is full" +msgstr "La chat è al completo" #: ../../include/datetime.php:48 msgid "Miscellaneous" @@ -173,12 +353,12 @@ msgstr "Altro" msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-GG oppure MM-GG" -#: ../../include/datetime.php:235 ../../mod/events.php:635 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 +#: ../../include/datetime.php:235 ../../mod/appman.php:91 +#: ../../mod/appman.php:92 ../../mod/events.php:689 msgid "Required" msgstr "Obbligatorio" -#: ../../include/datetime.php:262 ../../boot.php:2342 +#: ../../include/datetime.php:262 ../../boot.php:2306 msgid "never" msgstr "mai" @@ -258,135 +438,275 @@ msgstr "Compleanno di %1$s" msgid "Happy Birthday %1$s" msgstr "Buon compleanno %1$s" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nuova pagina web" +#: ../../include/features.php:38 +msgid "General Features" +msgstr "Funzionalità di base" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:269 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:43 -#: ../../mod/settings.php:644 ../../mod/thing.php:227 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/editlayout.php:139 -#: ../../mod/editwebpage.php:178 ../../mod/editpost.php:113 -#: ../../mod/menu.php:100 ../../mod/webpages.php:179 -#: ../../mod/editblock.php:140 ../../mod/blocks.php:148 -#: ../../mod/layouts.php:174 -msgid "Edit" -msgstr "Modifica" +#: ../../include/features.php:40 +msgid "Content Expiration" +msgstr "Scadenza" -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:185 -#: ../../mod/blocks.php:154 ../../mod/layouts.php:178 -msgid "View" -msgstr "Guarda" +#: ../../include/features.php:40 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 -#: ../../include/conversation.php:1153 ../../mod/events.php:653 -#: ../../mod/photos.php:970 ../../mod/editwebpage.php:214 -#: ../../mod/editpost.php:149 ../../mod/webpages.php:186 -#: ../../mod/editblock.php:176 -msgid "Preview" -msgstr "Anteprima" +#: ../../include/features.php:41 +msgid "Multiple Profiles" +msgstr "Profili multipli" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:187 -msgid "Actions" -msgstr "Azioni" +#: ../../include/features.php:41 +msgid "Ability to create multiple profiles" +msgstr "Abilitazione a creare profili multipli" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:188 -msgid "Page Link" -msgstr "Link alla pagina" +#: ../../include/features.php:42 +msgid "Advanced Profiles" +msgstr "Profili avanzati" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titolo" +#: ../../include/features.php:42 +msgid "Additional profile sections and selections" +msgstr "Informazioni aggiuntive del profilo" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:190 -#: ../../mod/blocks.php:145 -msgid "Created" -msgstr "Creato" +#: ../../include/features.php:43 +msgid "Profile Import/Export" +msgstr "Importa/esporta il profilo" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:191 -#: ../../mod/blocks.php:146 -msgid "Edited" -msgstr "Modificato" +#: ../../include/features.php:43 +msgid "Save and load profile details across sites/channels" +msgstr "Salva o ripristina le informazioni del profilo su siti diversi" -#: ../../include/api.php:1158 -msgid "Public Timeline" -msgstr "Diario pubblico" +#: ../../include/features.php:44 +msgid "Web Pages" +msgstr "Pagine web" -#: ../../include/comanche.php:34 ../../mod/admin.php:386 -#: ../../view/theme/apw/php/config.php:185 +#: ../../include/features.php:44 +msgid "Provide managed web pages on your channel" +msgstr "Attiva la creazione di pagine web sul tuo canale" + +#: ../../include/features.php:45 +msgid "Private Notes" +msgstr "Note private" + +#: ../../include/features.php:45 +msgid "Enables a tool to store notes and reminders" +msgstr "Abilita il riquadro per scrivere le tue annotazioni" + +#: ../../include/features.php:46 +msgid "Navigation Channel Select" +msgstr "Scegli il canale attivo dal menu" + +#: ../../include/features.php:46 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Scegli il canale attivo direttamente dal menu di navigazione" + +#: ../../include/features.php:47 +msgid "Photo Location" +msgstr "Posizione geografica" + +#: ../../include/features.php:47 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." + +#: ../../include/features.php:49 +msgid "Expert Mode" +msgstr "Modalità esperto" + +#: ../../include/features.php:49 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" + +#: ../../include/features.php:50 +msgid "Premium Channel" +msgstr "Canale premium" + +#: ../../include/features.php:50 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" + +#: ../../include/features.php:55 +msgid "Post Composition Features" +msgstr "Modalità di scrittura post" + +#: ../../include/features.php:57 +msgid "Use Markdown" +msgstr "Usa il markdown" + +#: ../../include/features.php:57 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "Consenti l'uso del markdown per formattare i post" + +#: ../../include/features.php:58 +msgid "Large Photos" +msgstr "Foto grandi" + +#: ../../include/features.php:58 +msgid "" +"Include large (640px) photo thumbnails in posts. If not enabled, use small " +"(320px) photo thumbnails" +msgstr "Includi anteprime grandi delle foto nei post (640px). Se disabilitato le anteprime saranno piccole (320px)" + +#: ../../include/features.php:59 ../../include/widgets.php:545 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "Sorgenti del canale" + +#: ../../include/features.php:59 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" + +#: ../../include/features.php:60 +msgid "Even More Encryption" +msgstr "Cifratura addizionale" + +#: ../../include/features.php:60 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" + +#: ../../include/features.php:61 +msgid "Enable voting tools" +msgstr "Permetti i post con votazione" + +#: ../../include/features.php:61 +msgid "Provide a class of post which others can vote on" +msgstr "Rende possibile la creazione di post in cui sarà possibile votare" + +#: ../../include/features.php:67 +msgid "Network and Stream Filtering" +msgstr "Filtraggio dei contenuti" + +#: ../../include/features.php:68 +msgid "Search by Date" +msgstr "Ricerca per data" + +#: ../../include/features.php:68 +msgid "Ability to select posts by date ranges" +msgstr "Per selezionare i post in un intervallo tra date" + +#: ../../include/features.php:69 +msgid "Collections Filter" +msgstr "Filtra per insiemi di canali" + +#: ../../include/features.php:69 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "Mostra il riquadro per filtrare i post di certi insiemi di canali" + +#: ../../include/features.php:70 ../../include/widgets.php:273 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../include/features.php:70 +msgid "Save search terms for re-use" +msgstr "Salva i termini delle ricerche per poterle ripetere" + +#: ../../include/features.php:71 +msgid "Network Personal Tab" +msgstr "Attività personale" + +#: ../../include/features.php:71 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" + +#: ../../include/features.php:72 +msgid "Network New Tab" +msgstr "Contenuti nuovi" + +#: ../../include/features.php:72 +msgid "Enable tab to display all new Network activity" +msgstr "Abilita il link per visualizzare solo i nuovi contenuti" + +#: ../../include/features.php:73 +msgid "Affinity Tool" +msgstr "Filtro per affinità" + +#: ../../include/features.php:73 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" + +#: ../../include/features.php:74 +msgid "Connection Filtering" +msgstr "Filtro sui contatti" + +#: ../../include/features.php:74 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtra i post che ricevi con parole chiave" + +#: ../../include/features.php:75 +msgid "Suggest Channels" +msgstr "Suggerisci canali" + +#: ../../include/features.php:75 +msgid "Show channel suggestions" +msgstr "Mostra alcuni canali che potrebbero interessarti" + +#: ../../include/features.php:80 +msgid "Post/Comment Tools" +msgstr "Gestione post e commenti" + +#: ../../include/features.php:81 +msgid "Tagging" +msgstr "Tag" + +#: ../../include/features.php:81 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su post già esistenti" + +#: ../../include/features.php:82 +msgid "Post Categories" +msgstr "Categorie dei post" + +#: ../../include/features.php:82 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi post" + +#: ../../include/features.php:83 ../../include/contact_widgets.php:57 +#: ../../include/widgets.php:303 +msgid "Saved Folders" +msgstr "Cartelle salvate" + +#: ../../include/features.php:83 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" + +#: ../../include/features.php:84 +msgid "Dislike Posts" +msgstr "Non mi piace" + +#: ../../include/features.php:84 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" + +#: ../../include/features.php:85 +msgid "Star Posts" +msgstr "Post con stella" + +#: ../../include/features.php:85 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per segnare i post preferiti" + +#: ../../include/features.php:86 +msgid "Tag Cloud" +msgstr "Nuvola di tag" + +#: ../../include/features.php:86 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" + +#: ../../include/comanche.php:34 ../../mod/admin.php:348 msgid "Default" msgstr "Predefinito" -#: ../../include/dir_fns.php:143 -msgid "Directory Options" -msgstr "Opzioni elenco pubblico" - -#: ../../include/dir_fns.php:144 -msgid "Alphabetic" -msgstr "Alfabetico" - -#: ../../include/dir_fns.php:145 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" - -#: ../../include/dir_fns.php:146 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" - -#: ../../include/dir_fns.php:147 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" - -#: ../../include/dir_fns.php:148 -msgid "Sort" -msgstr "Ordinamento" - -#: ../../include/dir_fns.php:152 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" - -#: ../../include/dir_fns.php:154 -msgid "Public Forums Only" -msgstr "Solo forum pubblici" - -#: ../../include/dir_fns.php:155 -msgid "This Website Only" -msgstr "Solo in questo sito" - -#: ../../include/event.php:19 ../../include/bb2diaspora.php:451 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/event.php:27 ../../include/bb2diaspora.php:457 -msgid "Starts:" -msgstr "Inizio:" - -#: ../../include/event.php:37 ../../include/bb2diaspora.php:465 -msgid "Finishes:" -msgstr "Fine:" - -#: ../../include/event.php:47 ../../include/bb2diaspora.php:473 -#: ../../include/identity.php:874 ../../mod/events.php:647 -#: ../../mod/directory.php:234 -msgid "Location:" -msgstr "Luogo:" - -#: ../../include/event.php:391 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Eliminare questo elemento?" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:968 ../../mod/photos.php:1086 +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:673 +#: ../../mod/photos.php:1008 ../../mod/photos.php:1126 msgid "Comment" msgstr "Commento" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:390 msgid "[+] show all" msgstr "[+] mostra tutto" @@ -410,17 +730,17 @@ msgstr "Password troppo corta" msgid "Passwords do not match" msgstr "Le password non corrispondono" -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +#: ../../include/js_strings.php:13 ../../mod/photos.php:41 msgid "everybody" msgstr "tutti" #: ../../include/js_strings.php:14 msgid "Secret Passphrase" -msgstr "Chiave segreta" +msgstr "Parola chiave per decifrare" #: ../../include/js_strings.php:15 msgid "Passphrase hint" -msgstr "Suggerimento per la chiave segreta" +msgstr "Suggerimento per la parola chiave" #: ../../include/js_strings.php:16 msgid "Notice: Permissions have changed but have not yet been submitted." @@ -438,7 +758,8 @@ msgstr "Niente di nuovo qui" msgid "Rate This Channel (this is public)" msgstr "Valuta questo canale (visibile a tutti)" -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 +#: ../../include/js_strings.php:20 ../../mod/connedit.php:667 +#: ../../mod/rate.php:156 msgid "Rating" msgstr "Valutazioni" @@ -446,26 +767,24 @@ msgstr "Valutazioni" msgid "Describe (optional)" msgstr "Descrizione (facoltativa)" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/settings.php:582 ../../mod/settings.php:684 -#: ../../mod/settings.php:710 ../../mod/settings.php:738 -#: ../../mod/settings.php:761 ../../mod/settings.php:843 -#: ../../mod/settings.php:1039 ../../mod/xchan.php:11 ../../mod/connect.php:93 -#: ../../mod/thing.php:275 ../../mod/thing.php:318 ../../mod/events.php:656 -#: ../../mod/group.php:81 ../../mod/setup.php:313 ../../mod/setup.php:358 -#: ../../mod/photos.php:565 ../../mod/photos.php:642 ../../mod/photos.php:929 -#: ../../mod/photos.php:969 ../../mod/photos.php:1087 ../../mod/pdledit.php:58 -#: ../../mod/import.php:504 ../../mod/chat.php:177 ../../mod/chat.php:211 -#: ../../mod/rate.php:167 ../../mod/invite.php:142 ../../mod/locs.php:105 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 -#: ../../mod/poke.php:166 ../../mod/profiles.php:667 ../../mod/mitem.php:229 -#: ../../mod/admin.php:446 ../../mod/admin.php:810 ../../mod/admin.php:946 -#: ../../mod/admin.php:1077 ../../mod/admin.php:1271 ../../mod/admin.php:1356 -#: ../../mod/mood.php:134 ../../mod/connedit.php:679 ../../mod/mail.php:355 -#: ../../mod/appman.php:99 ../../mod/poll.php:68 ../../mod/bulksetclose.php:24 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:97 +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:674 +#: ../../mod/fsuggest.php:108 ../../mod/mitem.php:231 +#: ../../mod/connedit.php:688 ../../mod/mood.php:135 ../../mod/pconfig.php:108 +#: ../../mod/filestorage.php:156 ../../mod/poke.php:171 ../../mod/chat.php:181 +#: ../../mod/chat.php:209 ../../mod/admin.php:411 ../../mod/admin.php:776 +#: ../../mod/admin.php:940 ../../mod/admin.php:1072 ../../mod/admin.php:1266 +#: ../../mod/admin.php:1351 ../../mod/appman.php:99 ../../mod/pdledit.php:58 +#: ../../mod/photos.php:598 ../../mod/photos.php:969 ../../mod/photos.php:1009 +#: ../../mod/photos.php:1127 ../../mod/rate.php:167 ../../mod/events.php:534 +#: ../../mod/events.php:710 ../../mod/mail.php:364 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/import.php:511 ../../mod/thing.php:313 +#: ../../mod/thing.php:359 ../../mod/invite.php:142 ../../mod/settings.php:583 +#: ../../mod/settings.php:695 ../../mod/settings.php:723 +#: ../../mod/settings.php:746 ../../mod/settings.php:831 +#: ../../mod/settings.php:1020 ../../mod/xchan.php:11 ../../mod/group.php:81 +#: ../../mod/connect.php:93 ../../mod/locs.php:108 ../../mod/setup.php:331 +#: ../../mod/setup.php:371 ../../mod/profiles.php:667 +#: ../../mod/import_items.php:122 ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "Salva" @@ -550,581 +869,969 @@ msgstr " " msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:268 -msgid "parent" -msgstr "cartella superiore" +#: ../../include/js_strings.php:44 ../../include/text.php:1144 +msgid "January" +msgstr "gennaio" -#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2479 -msgid "Collection" -msgstr "Cartella" +#: ../../include/js_strings.php:45 ../../include/text.php:1144 +msgid "February" +msgstr "febbraio" -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" -msgstr "Principale" +#: ../../include/js_strings.php:46 ../../include/text.php:1144 +msgid "March" +msgstr "marzo" -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" -msgstr "Rubrica" +#: ../../include/js_strings.php:47 ../../include/text.php:1144 +msgid "April" +msgstr "aprile" -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" -msgstr "Calendario" +#: ../../include/js_strings.php:48 +msgctxt "long" +msgid "May" +msgstr "maggio" -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" -msgstr "Appuntamenti ricevuti" +#: ../../include/js_strings.php:49 ../../include/text.php:1144 +msgid "June" +msgstr "giugno" -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" -msgstr "Appuntamenti inviati" +#: ../../include/js_strings.php:50 ../../include/text.php:1144 +msgid "July" +msgstr "luglio" -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1019 -#: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/photos.php:681 ../../mod/photos.php:1119 -msgid "Unknown" -msgstr "Sconosciuto" +#: ../../include/js_strings.php:51 ../../include/text.php:1144 +msgid "August" +msgstr "agosto" -#: ../../include/RedDAV/RedBrowser.php:227 +#: ../../include/js_strings.php:52 ../../include/text.php:1144 +msgid "September" +msgstr "settembre" + +#: ../../include/js_strings.php:53 ../../include/text.php:1144 +msgid "October" +msgstr "ottobre" + +#: ../../include/js_strings.php:54 ../../include/text.php:1144 +msgid "November" +msgstr "novembre" + +#: ../../include/js_strings.php:55 ../../include/text.php:1144 +msgid "December" +msgstr "dicembre" + +#: ../../include/js_strings.php:56 +msgid "Jan" +msgstr "Gen" + +#: ../../include/js_strings.php:57 +msgid "Feb" +msgstr "Feb" + +#: ../../include/js_strings.php:58 +msgid "Mar" +msgstr "Mar" + +#: ../../include/js_strings.php:59 +msgid "Apr" +msgstr "Apr" + +#: ../../include/js_strings.php:60 +msgctxt "short" +msgid "May" +msgstr "maggio" + +#: ../../include/js_strings.php:61 +msgid "Jun" +msgstr "Mag" + +#: ../../include/js_strings.php:62 +msgid "Jul" +msgstr "Giu" + +#: ../../include/js_strings.php:63 +msgid "Aug" +msgstr "Ago" + +#: ../../include/js_strings.php:64 +msgid "Sep" +msgstr "Set" + +#: ../../include/js_strings.php:65 +msgid "Oct" +msgstr "Ott" + +#: ../../include/js_strings.php:66 +msgid "Nov" +msgstr "Nov" + +#: ../../include/js_strings.php:67 +msgid "Dec" +msgstr "Dic" + +#: ../../include/js_strings.php:68 ../../include/text.php:1140 +msgid "Sunday" +msgstr "domenica" + +#: ../../include/js_strings.php:69 ../../include/text.php:1140 +msgid "Monday" +msgstr "lunedì" + +#: ../../include/js_strings.php:70 ../../include/text.php:1140 +msgid "Tuesday" +msgstr "martedì" + +#: ../../include/js_strings.php:71 ../../include/text.php:1140 +msgid "Wednesday" +msgstr "mercoledì" + +#: ../../include/js_strings.php:72 ../../include/text.php:1140 +msgid "Thursday" +msgstr "giovedì" + +#: ../../include/js_strings.php:73 ../../include/text.php:1140 +msgid "Friday" +msgstr "venerdì" + +#: ../../include/js_strings.php:74 ../../include/text.php:1140 +msgid "Saturday" +msgstr "sabato" + +#: ../../include/js_strings.php:75 +msgid "Sun" +msgstr "Dom" + +#: ../../include/js_strings.php:76 +msgid "Mon" +msgstr "Lun" + +#: ../../include/js_strings.php:77 +msgid "Tue" +msgstr "Mar" + +#: ../../include/js_strings.php:78 +msgid "Wed" +msgstr "Mer" + +#: ../../include/js_strings.php:79 +msgid "Thu" +msgstr "Gio" + +#: ../../include/js_strings.php:80 +msgid "Fri" +msgstr "Ven" + +#: ../../include/js_strings.php:81 +msgid "Sat" +msgstr "Sab" + +#: ../../include/js_strings.php:82 +msgctxt "calendar" +msgid "today" +msgstr "oggi" + +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "month" +msgstr "mese" + +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "week" +msgstr "settimana" + +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "day" +msgstr "giorno" + +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "All day" +msgstr "Tutto il giorno" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequentemente" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Ogni ora" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Due volte al giorno" + +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Ogni giorno" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Ogni settimana" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Ogni mese" + +#: ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:79 ../../mod/id.php:15 +#: ../../mod/id.php:16 ../../mod/admin.php:779 ../../mod/admin.php:788 +#: ../../boot.php:1499 +msgid "Email" +msgstr "Email" + +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/activities.php:42 +msgid " and " +msgstr "e" + +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "profilo pubblico" + +#: ../../include/activities.php:59 #, php-format -msgid "%1$s used" -msgstr "%1$s occupati" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" -#: ../../include/RedDAV/RedBrowser.php:232 +#: ../../include/activities.php:60 #, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s occupati di %2$s (%3$s%)" +msgid "Visit %1$s's %2$s" +msgstr "Guarda %2$s di %1$s " -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/conversation.php:1606 ../../include/apps.php:135 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Archivio file" - -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Total" -msgstr "Totale" - -#: ../../include/RedDAV/RedBrowser.php:255 -msgid "Shared" -msgstr "Condiviso" - -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/menu.php:104 -#: ../../mod/webpages.php:178 ../../mod/blocks.php:147 -#: ../../mod/layouts.php:170 ../../mod/new_channel.php:121 -msgid "Create" -msgstr "Crea" - -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1236 -msgid "Upload" -msgstr "Carica" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/settings.php:584 -#: ../../mod/settings.php:610 ../../mod/admin.php:953 -#: ../../mod/sharedwithme.php:95 -msgid "Name" -msgstr "Nome" - -#: ../../include/RedDAV/RedBrowser.php:265 -msgid "Type" -msgstr "Tipo" - -#: ../../include/RedDAV/RedBrowser.php:266 ../../mod/sharedwithme.php:97 -msgid "Size" -msgstr "Dimensione" - -#: ../../include/RedDAV/RedBrowser.php:267 ../../mod/sharedwithme.php:98 -msgid "Last Modified" -msgstr "Ultima modifica" - -#: ../../include/RedDAV/RedBrowser.php:270 ../../include/ItemObject.php:120 -#: ../../include/conversation.php:660 ../../include/apps.php:255 -#: ../../mod/settings.php:645 ../../mod/thing.php:228 ../../mod/group.php:176 -#: ../../mod/photos.php:1050 ../../mod/editwebpage.php:225 -#: ../../mod/webpages.php:181 ../../mod/admin.php:817 ../../mod/admin.php:948 -#: ../../mod/editblock.php:113 ../../mod/blocks.php:150 -#: ../../mod/connedit.php:543 -msgid "Delete" -msgstr "Elimina" - -#: ../../include/RedDAV/RedBrowser.php:305 -msgid "Create new folder" -msgstr "Crea una nuova cartella" - -#: ../../include/RedDAV/RedBrowser.php:307 -msgid "Upload file" -msgstr "Carica un file" - -#: ../../include/bookmarks.php:35 +#: ../../include/activities.php:63 #, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha aggiornato %2$s cambiando %3$s." -#: ../../include/network.php:632 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" - -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Funzionalità di base" - -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Scadenza" - -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Elimina gli articoli, i commenti o i messaggi privati dopo un lasso di tempo" - -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Profili multipli" - -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Abilitazione a creare profili multipli" - -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Profili avanzati" - -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Informazioni aggiuntive del profilo" - -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Importa/esporta il profilo" - -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Salva o ripristina le informazioni del profilo su canali o siti diversi" - -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Pagine web" - -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Attiva la creazione di pagine web sul tuo canale" - -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Note private" - -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Abilita il riquadro per scrivere annotazioni" - -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Scegli il canale attivo dal menu" - -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Scegli il canale attivo direttamente dal menu di navigazione" - -#: ../../include/features.php:47 -msgid "Photo Location" -msgstr "Posizione geografica" - -#: ../../include/features.php:47 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." - -#: ../../include/features.php:49 -msgid "Expert Mode" -msgstr "Modalità esperto" - -#: ../../include/features.php:49 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" - -#: ../../include/features.php:50 -msgid "Premium Channel" -msgstr "Canale premium" - -#: ../../include/features.php:50 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ti permette di impostare delle restrizioni e dei termini d'uso a chi segue il canale" - -#: ../../include/features.php:55 -msgid "Post Composition Features" -msgstr "Modalità di scrittura articoli" - -#: ../../include/features.php:57 -msgid "Use Markdown" -msgstr "Usa il markdown" - -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Consenti l'uso del markdown per formattare gli articoli" - -#: ../../include/features.php:58 -msgid "Large Photos" -msgstr "Foto grandi" - -#: ../../include/features.php:58 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Includi anteprime grandi delle foto nei post (640px). Se disabilitato le anteprime saranno piccole (320px)" - -#: ../../include/features.php:59 ../../include/widgets.php:546 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Sorgenti del canale" - -#: ../../include/features.php:59 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" - -#: ../../include/features.php:60 -msgid "Even More Encryption" -msgstr "Crittografia addizionale" - -#: ../../include/features.php:60 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Rendi possibile la crittografia tra mittente e destinatario che condividono una chiave segreta" - -#: ../../include/features.php:61 -msgid "Enable voting tools" -msgstr "Permetti i post con votazione" - -#: ../../include/features.php:61 -msgid "Provide a class of post which others can vote on" -msgstr "Rende possibile la creazione di articoli in cui sarà possibile votare" - -#: ../../include/features.php:67 -msgid "Network and Stream Filtering" -msgstr "Filtraggio dei contenuti" - -#: ../../include/features.php:68 -msgid "Search by Date" -msgstr "Ricerca per data" - -#: ../../include/features.php:68 -msgid "Ability to select posts by date ranges" -msgstr "Per selezionare gli articoli in un intervallo tra date" - -#: ../../include/features.php:69 -msgid "Collections Filter" -msgstr "Filtra per insiemi di canali" - -#: ../../include/features.php:69 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Mostra il riquadro per filtrare gli articoli di certi insiemi di canali" - -#: ../../include/features.php:70 ../../include/widgets.php:274 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: ../../include/features.php:70 -msgid "Save search terms for re-use" -msgstr "Salva i termini delle ricerche per poterle ripetere" - -#: ../../include/features.php:71 -msgid "Network Personal Tab" -msgstr "Attività personale" - -#: ../../include/features.php:71 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" - -#: ../../include/features.php:72 -msgid "Network New Tab" -msgstr "Contenuti nuovi" - -#: ../../include/features.php:72 -msgid "Enable tab to display all new Network activity" -msgstr "Abilita il link per visualizzare solo i nuovi contenuti" - -#: ../../include/features.php:73 -msgid "Affinity Tool" -msgstr "Filtro per affinità" - -#: ../../include/features.php:73 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" - -#: ../../include/features.php:74 -msgid "Suggest Channels" -msgstr "Suggerisci canali" - -#: ../../include/features.php:74 -msgid "Show channel suggestions" -msgstr "Mostra alcuni canali che potrebbero interessarti" - -#: ../../include/features.php:79 -msgid "Post/Comment Tools" -msgstr "Gestione articoli e commenti" - -#: ../../include/features.php:80 -msgid "Tagging" -msgstr "Tag" - -#: ../../include/features.php:80 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su articoli già esistenti" - -#: ../../include/features.php:81 -msgid "Post Categories" -msgstr "Categorie degli articoli" - -#: ../../include/features.php:81 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi articoli" - -#: ../../include/features.php:82 ../../include/widgets.php:304 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Cartelle salvate" - -#: ../../include/features.php:82 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" - -#: ../../include/features.php:83 -msgid "Dislike Posts" -msgstr "Non mi piace" - -#: ../../include/features.php:83 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi articoli" - -#: ../../include/features.php:84 -msgid "Star Posts" -msgstr "Articoli stella (preferiti)" - -#: ../../include/features.php:84 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per scegliere gli articoli preferiti" - -#: ../../include/features.php:85 -msgid "Tag Cloud" -msgstr "Nuvola di tag" - -#: ../../include/features.php:85 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" - -#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Categorie" - -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apps" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1501 -msgid "Personal" -msgstr "Personali" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Crea una app personale" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Modifica una app personale" - -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:945 -#: ../../include/identity.php:823 ../../mod/match.php:64 -#: ../../mod/directory.php:302 ../../mod/suggest.php:52 +#: ../../include/Contact.php:101 ../../include/conversation.php:947 +#: ../../include/identity.php:941 ../../include/widgets.php:136 +#: ../../include/widgets.php:174 ../../mod/directory.php:316 +#: ../../mod/match.php:64 ../../mod/suggest.php:52 msgid "Connect" msgstr "Aggiungi" -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" +#: ../../include/Contact.php:118 +msgid "New window" +msgstr "Nuova finestra" -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Suggerimenti" +#: ../../include/Contact.php:119 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Altro..." - -#: ../../include/widgets.php:166 +#: ../../include/Contact.php:237 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." +msgid "User '%s' deleted" +msgstr "Utente '%s' eliminato" -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" +#: ../../include/dba/dba_driver.php:141 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Scrivi l'indirizzo del canale" +#: ../../include/conversation.php:120 ../../include/text.php:1832 +#: ../../mod/like.php:361 ../../mod/tagger.php:43 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "photo" +msgstr "la foto" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" +#: ../../include/conversation.php:123 ../../include/text.php:1835 +#: ../../include/event.php:896 ../../mod/like.php:363 ../../mod/tagger.php:47 +#: ../../mod/events.php:245 +msgid "event" +msgstr "l'evento" -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Note" +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "il canale" -#: ../../include/widgets.php:192 ../../include/text.php:853 -#: ../../include/text.php:865 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 ../../mod/admin.php:1416 ../../mod/admin.php:1436 -msgid "Save" -msgstr "Salva" +#: ../../include/conversation.php:148 ../../include/text.php:1838 +#: ../../mod/like.php:361 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:172 +msgid "status" +msgstr "il messaggio di stato" -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "Rimuovi termine" +#: ../../include/conversation.php:150 ../../include/text.php:1840 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "il commento" -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Tutto" +#: ../../include/conversation.php:164 ../../mod/like.php:410 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "Archivi" +#: ../../include/conversation.php:167 ../../mod/like.php:412 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: ../../include/widgets.php:427 ../../mod/connedit.php:572 -msgid "Me" -msgstr "Io" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" -#: ../../include/widgets.php:428 ../../mod/connedit.php:573 -msgid "Family" -msgstr "Famiglia" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" -#: ../../include/widgets.php:429 ../../include/identity.php:394 -#: ../../include/identity.php:395 ../../include/identity.php:402 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:339 -#: ../../mod/settings.php:343 ../../mod/settings.php:344 -#: ../../mod/settings.php:347 ../../mod/settings.php:358 -#: ../../mod/connedit.php:574 -msgid "Friends" -msgstr "Amici" +#: ../../include/conversation.php:243 ../../include/text.php:933 +msgid "poked" +msgstr "ha ricevuto un poke" -#: ../../include/widgets.php:430 ../../mod/connedit.php:575 -msgid "Acquaintances" -msgstr "Conoscenti" +#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s è %2$s" -#: ../../include/widgets.php:431 ../../mod/connections.php:231 -#: ../../mod/connections.php:246 ../../mod/connedit.php:576 -msgid "All" -msgstr "Tutti" +#: ../../include/conversation.php:574 ../../mod/photos.php:1024 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" -#: ../../include/widgets.php:450 -msgid "Refresh" -msgstr "Aggiorna" +#: ../../include/conversation.php:574 ../../mod/photos.php:1024 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../include/widgets.php:485 -msgid "Account settings" -msgstr "Il tuo account" +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" -#: ../../include/widgets.php:491 -msgid "Channel settings" -msgstr "Impostazioni del canale" +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" -#: ../../include/widgets.php:497 -msgid "Additional features" -msgstr "Funzionalità opzionali" +#: ../../include/conversation.php:575 ../../mod/photos.php:1025 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" -#: ../../include/widgets.php:503 -msgid "Feature/Addon settings" -msgstr "Impostazioni dei componenti aggiuntivi" +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" -#: ../../include/widgets.php:509 -msgid "Display settings" -msgstr "Aspetto" +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" -#: ../../include/widgets.php:515 -msgid "Connected apps" -msgstr "App connesse" +#: ../../include/conversation.php:576 ../../mod/photos.php:1026 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" -#: ../../include/widgets.php:521 -msgid "Export channel" -msgstr "Esporta il canale" +#: ../../include/conversation.php:661 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Scegli" -#: ../../include/widgets.php:530 ../../mod/connedit.php:653 -msgid "Connection Default Permissions" -msgstr "Permessi predefiniti dei nuovi contatti" +#: ../../include/conversation.php:669 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Messaggio privato" -#: ../../include/widgets.php:538 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" +#: ../../include/conversation.php:676 ../../include/ItemObject.php:227 +msgid "Message signature validated" +msgstr "Messaggio con firma verificata" -#: ../../include/widgets.php:554 ../../include/nav.php:208 -#: ../../include/apps.php:134 ../../mod/admin.php:1038 -#: ../../mod/admin.php:1238 -msgid "Settings" -msgstr "Impostazioni" +#: ../../include/conversation.php:677 ../../include/ItemObject.php:228 +msgid "Message signature incorrect" +msgstr "Massaggio con firma non corretta" -#: ../../include/widgets.php:567 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Messaggi" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../include/widgets.php:570 -msgid "Check Mail" -msgstr "Controlla i messaggi" +#: ../../include/conversation.php:709 +msgid "Categories:" +msgstr "Categorie:" -#: ../../include/widgets.php:575 ../../include/nav.php:199 -msgid "New Message" -msgstr "Nuovo messaggio" +#: ../../include/conversation.php:710 +msgid "Filed under:" +msgstr "Classificato come:" -#: ../../include/widgets.php:650 -msgid "Chat Rooms" -msgstr "Aree chat attive" +#: ../../include/conversation.php:718 ../../include/ItemObject.php:314 +#, php-format +msgid "from %s" +msgstr "da %s" -#: ../../include/widgets.php:670 -msgid "Bookmarked Chatrooms" -msgstr "Aree chat nei segnalibri" +#: ../../include/conversation.php:721 ../../include/ItemObject.php:317 +#, php-format +msgid "last edited: %s" +msgstr "ultima modifica: %s" -#: ../../include/widgets.php:690 -msgid "Suggested Chatrooms" -msgstr "Aree chat suggerite" +#: ../../include/conversation.php:722 ../../include/ItemObject.php:318 +#, php-format +msgid "Expires: %s" +msgstr "Scadenza: %s" -#: ../../include/widgets.php:817 ../../include/widgets.php:875 -msgid "photo/image" -msgstr "foto/immagine" +#: ../../include/conversation.php:737 +msgid "View in context" +msgstr "Vedi nel contesto" -#: ../../include/widgets.php:970 ../../include/widgets.php:972 -msgid "Rate Me" -msgstr "Valutami" +#: ../../include/conversation.php:739 ../../include/conversation.php:1212 +#: ../../include/ItemObject.php:366 ../../mod/editpost.php:130 +#: ../../mod/editblock.php:150 ../../mod/photos.php:990 ../../mod/mail.php:237 +#: ../../mod/mail.php:365 ../../mod/editlayout.php:148 +#: ../../mod/editwebpage.php:190 +msgid "Please wait" +msgstr "Attendere" -#: ../../include/widgets.php:976 -msgid "View Ratings" -msgstr "Vedi le valutazioni ricevute" +#: ../../include/conversation.php:848 +msgid "remove" +msgstr "rimuovi" -#: ../../include/widgets.php:987 -msgid "Public Hubs" -msgstr "Hub pubblici" +#: ../../include/conversation.php:852 ../../include/nav.php:241 +msgid "Loading..." +msgstr "Caricamento in corso..." -#: ../../include/enotify.php:58 -msgid "Hubzilla Notification" -msgstr "Notifica di Hubzilla" +#: ../../include/conversation.php:853 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" -#: ../../include/enotify.php:59 -msgid "hubzilla" -msgstr "Hubzilla" +#: ../../include/conversation.php:941 +msgid "View Source" +msgstr "Vedi il sorgente" -#: ../../include/enotify.php:61 +#: ../../include/conversation.php:942 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: ../../include/conversation.php:943 +msgid "View Status" +msgstr "Guarda il messaggio di stato" + +#: ../../include/conversation.php:944 ../../include/nav.php:86 +#: ../../mod/connedit.php:494 +msgid "View Profile" +msgstr "Profilo" + +#: ../../include/conversation.php:945 +msgid "View Photos" +msgstr "Foto" + +#: ../../include/conversation.php:946 +msgid "Activity/Posts" +msgstr "Attività e Post" + +#: ../../include/conversation.php:948 +msgid "Edit Connection" +msgstr "Modifica il contatto" + +#: ../../include/conversation.php:949 +msgid "Send PM" +msgstr "Messaggio privato" + +#: ../../include/conversation.php:950 ../../include/apps.php:145 +msgid "Poke" +msgstr "Poke" + +#: ../../include/conversation.php:1064 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1064 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1068 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "Piace a %2$d persone." + +#: ../../include/conversation.php:1070 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "Non piace a %2$d persone." + +#: ../../include/conversation.php:1076 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:1079 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "e altre %d persone" + +#: ../../include/conversation.php:1080 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1080 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1143 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/conversation.php:1144 ../../mod/mail.php:170 +#: ../../mod/mail.php:299 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: ../../include/conversation.php:1145 +msgid "Please enter a video link/URL:" +msgstr "Inserisci l'indirizzo del video:" + +#: ../../include/conversation.php:1146 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci l'indirizzo dell'audio:" + +#: ../../include/conversation.php:1147 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1148 ../../mod/filer.php:48 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" + +#: ../../include/conversation.php:1149 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: ../../include/conversation.php:1150 ../../mod/editpost.php:54 +#: ../../mod/mail.php:171 ../../mod/mail.php:300 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" + +#: ../../include/conversation.php:1158 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:683 ../../mod/editpost.php:150 +#: ../../mod/editblock.php:171 ../../mod/photos.php:1010 +#: ../../mod/events.php:707 ../../mod/webpages.php:188 +#: ../../mod/editwebpage.php:212 +msgid "Preview" +msgstr "Anteprima" + +#: ../../include/conversation.php:1177 ../../mod/layouts.php:184 +#: ../../mod/photos.php:989 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 +msgid "Share" +msgstr "Condividi" + +#: ../../include/conversation.php:1179 +msgid "Page link name" +msgstr "Nome del link alla pagina" + +#: ../../include/conversation.php:1182 +msgid "Post as" +msgstr "Pubblica come " + +#: ../../include/conversation.php:1184 ../../include/ItemObject.php:675 +#: ../../mod/editpost.php:114 ../../mod/editblock.php:136 +#: ../../mod/editlayout.php:135 ../../mod/editwebpage.php:177 +msgid "Bold" +msgstr "Grassetto" + +#: ../../include/conversation.php:1185 ../../include/ItemObject.php:676 +#: ../../mod/editpost.php:115 ../../mod/editblock.php:137 +#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 +msgid "Italic" +msgstr "Corsivo" + +#: ../../include/conversation.php:1186 ../../include/ItemObject.php:677 +#: ../../mod/editpost.php:116 ../../mod/editblock.php:138 +#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../include/conversation.php:1187 ../../include/ItemObject.php:678 +#: ../../mod/editpost.php:117 ../../mod/editblock.php:139 +#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 +msgid "Quote" +msgstr "Citazione" + +#: ../../include/conversation.php:1188 ../../include/ItemObject.php:679 +#: ../../mod/editpost.php:118 ../../mod/editblock.php:140 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 +msgid "Code" +msgstr "Codice" + +#: ../../include/conversation.php:1189 ../../mod/editpost.php:119 +#: ../../mod/editblock.php:142 ../../mod/mail.php:234 ../../mod/mail.php:361 +#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:182 +msgid "Upload photo" +msgstr "Carica foto" + +#: ../../include/conversation.php:1190 +msgid "upload photo" +msgstr "carica foto" + +#: ../../include/conversation.php:1191 ../../mod/editpost.php:120 +#: ../../mod/editblock.php:143 ../../mod/mail.php:235 ../../mod/mail.php:362 +#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:183 +msgid "Attach file" +msgstr "Allega file" + +#: ../../include/conversation.php:1192 +msgid "attach file" +msgstr "allega file" + +#: ../../include/conversation.php:1193 ../../mod/editpost.php:121 +#: ../../mod/editblock.php:144 ../../mod/mail.php:236 ../../mod/mail.php:363 +#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:184 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" + +#: ../../include/conversation.php:1194 +msgid "web link" +msgstr "link web" + +#: ../../include/conversation.php:1195 +msgid "Insert video link" +msgstr "Inserisci l'indirizzo del video" + +#: ../../include/conversation.php:1196 +msgid "video link" +msgstr "link video" + +#: ../../include/conversation.php:1197 +msgid "Insert audio link" +msgstr "Inserisci l'indirizzo dell'audio" + +#: ../../include/conversation.php:1198 +msgid "audio link" +msgstr "link audio" + +#: ../../include/conversation.php:1199 ../../mod/editpost.php:125 +#: ../../mod/editblock.php:148 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:188 +msgid "Set your location" +msgstr "La tua località" + +#: ../../include/conversation.php:1200 +msgid "set location" +msgstr "la tua località" + +#: ../../include/conversation.php:1201 ../../mod/editpost.php:127 +msgid "Toggle voting" +msgstr "Abilita/disabilita il voto" + +#: ../../include/conversation.php:1204 ../../mod/editpost.php:126 +#: ../../mod/editblock.php:149 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:189 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" + +#: ../../include/conversation.php:1205 +msgid "clear location" +msgstr "rimuovi la località" + +#: ../../include/conversation.php:1207 ../../mod/editpost.php:142 +#: ../../mod/editblock.php:162 ../../mod/editwebpage.php:205 +msgid "Title (optional)" +msgstr "Titolo (opzionale)" + +#: ../../include/conversation.php:1211 ../../mod/editpost.php:144 +#: ../../mod/editblock.php:165 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:207 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorie (lista separata da virgole)" + +#: ../../include/conversation.php:1213 ../../mod/editpost.php:131 +#: ../../mod/editblock.php:151 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:191 +msgid "Permission settings" +msgstr "Permessi dei tuoi contatti" + +#: ../../include/conversation.php:1214 +msgid "permissions" +msgstr "permessi" + +#: ../../include/conversation.php:1222 ../../mod/editpost.php:139 +#: ../../mod/editblock.php:159 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:200 +msgid "Public post" +msgstr "Post pubblico" + +#: ../../include/conversation.php:1224 ../../mod/editpost.php:145 +#: ../../mod/editblock.php:166 ../../mod/editlayout.php:164 +#: ../../mod/editwebpage.php:208 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Per esempio: mario@esempio.com, simona@esempio.com" + +#: ../../include/conversation.php:1237 ../../mod/editpost.php:156 +#: ../../mod/editblock.php:176 ../../mod/mail.php:241 ../../mod/mail.php:368 +#: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:217 +msgid "Set expiration date" +msgstr "Data di scadenza" + +#: ../../include/conversation.php:1239 ../../include/ItemObject.php:686 +#: ../../mod/editpost.php:158 ../../mod/mail.php:243 ../../mod/mail.php:370 +msgid "Encrypt text" +msgstr "Cifratura del messaggio" + +#: ../../include/conversation.php:1241 ../../mod/editpost.php:160 +#: ../../mod/events.php:691 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1242 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:161 +#: ../../mod/events.php:690 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +#: ../../mod/settings.php:584 ../../mod/settings.php:610 +msgid "Cancel" +msgstr "Annulla" + +#: ../../include/conversation.php:1485 +msgid "Discover" +msgstr "Scopri" + +#: ../../include/conversation.php:1488 +msgid "Imported public streams" +msgstr "Contenuti pubblici importati" + +#: ../../include/conversation.php:1493 +msgid "Commented Order" +msgstr "Ultimi commenti" + +#: ../../include/conversation.php:1496 +msgid "Sort by Comment Date" +msgstr "Per data del commento" + +#: ../../include/conversation.php:1500 +msgid "Posted Order" +msgstr "Ultimi post" + +#: ../../include/conversation.php:1503 +msgid "Sort by Post Date" +msgstr "Per data di creazione" + +#: ../../include/conversation.php:1508 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Personali" + +#: ../../include/conversation.php:1511 +msgid "Posts that mention or involve you" +msgstr "Post che ti riguardano" + +#: ../../include/conversation.php:1517 ../../mod/menu.php:112 +#: ../../mod/connections.php:72 ../../mod/connections.php:82 +msgid "New" +msgstr "Novità" + +#: ../../include/conversation.php:1520 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" + +#: ../../include/conversation.php:1526 +msgid "Starred" +msgstr "Preferiti" + +#: ../../include/conversation.php:1529 +msgid "Favourite Posts" +msgstr "Post preferiti" + +#: ../../include/conversation.php:1536 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1539 +msgid "Posts flagged as SPAM" +msgstr "Post marcati come spam" + +#: ../../include/conversation.php:1583 ../../mod/admin.php:947 +msgid "Channel" +msgstr "Canale" + +#: ../../include/conversation.php:1586 +msgid "Status Messages and Posts" +msgstr "Post e messaggi di stato" + +#: ../../include/conversation.php:1595 +msgid "About" +msgstr "Informazioni" + +#: ../../include/conversation.php:1598 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: ../../include/conversation.php:1604 ../../include/apps.php:139 +#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto" + +#: ../../include/conversation.php:1607 ../../include/photos.php:422 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../include/conversation.php:1614 +msgid "Files and Storage" +msgstr "Archivio file" + +#: ../../include/conversation.php:1624 ../../include/conversation.php:1627 +msgid "Chatrooms" +msgstr "Chat" + +#: ../../include/conversation.php:1637 ../../include/apps.php:129 +#: ../../include/nav.php:103 +msgid "Bookmarks" +msgstr "Segnalibri" + +#: ../../include/conversation.php:1640 +msgid "Saved Bookmarks" +msgstr "Segnalibri salvati" + +#: ../../include/conversation.php:1647 ../../include/apps.php:136 +#: ../../include/nav.php:107 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Pagine web" + +#: ../../include/conversation.php:1650 +msgid "Manage Webpages" +msgstr "Gestisci le pagine web" + +#: ../../include/conversation.php:1679 ../../include/ItemObject.php:175 +#: ../../include/ItemObject.php:187 ../../mod/photos.php:1043 +#: ../../mod/photos.php:1055 +msgid "View all" +msgstr "Vedi tutto" + +#: ../../include/conversation.php:1703 ../../include/taxonomy.php:403 +#: ../../include/identity.php:1252 ../../include/ItemObject.php:179 +#: ../../mod/photos.php:1047 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" + +#: ../../include/conversation.php:1706 ../../include/ItemObject.php:184 +#: ../../mod/photos.php:1052 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" + +#: ../../include/conversation.php:1709 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" + +#: ../../include/conversation.php:1712 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" + +#: ../../include/conversation.php:1715 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indecisi" + +#: ../../include/conversation.php:1718 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "D'accordo" +msgstr[1] "D'accordo" + +#: ../../include/conversation.php:1721 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Non d'accordo" +msgstr[1] "Non d'accordo" + +#: ../../include/conversation.php:1724 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Astenuto" +msgstr[1] "Astenuti" + +#: ../../include/api.php:1290 +msgid "Public Timeline" +msgstr "Diario pubblico" + +#: ../../include/photos.php:109 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" + +#: ../../include/photos.php:116 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: ../../include/photos.php:143 ../../mod/profile_photo.php:222 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" + +#: ../../include/photos.php:219 +msgid "Photo storage failed." +msgstr "Impossibile salvare la foto." + +#: ../../include/photos.php:426 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: ../../include/enotify.php:57 ../../include/network.php:1613 +msgid "$Projectname Notification" +msgstr "Notifica $Projectname" + +#: ../../include/enotify.php:58 ../../include/network.php:1614 +msgid "$projectname" +msgstr "$projectname" + +#: ../../include/enotify.php:60 ../../include/network.php:1616 msgid "Thank You," msgstr "Grazie," -#: ../../include/enotify.php:63 +#: ../../include/enotify.php:62 ../../include/network.php:1618 #, php-format msgid "%s Administrator" msgstr "L'amministratore di %s" @@ -1238,17 +1945,17 @@ msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." #: ../../include/enotify.php:256 #, php-format msgid "[Red:Notify] %s tagged your post" -msgstr "[Hubzilla] %s ha taggato il tuo articolo" +msgstr "[Hubzilla] %s ha taggato il tuo post" #: ../../include/enotify.php:257 #, php-format msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha taggato il tuo articolo su %3$s" +msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" #: ../../include/enotify.php:258 #, php-format msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo articolo[/zrl]" +msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" #: ../../include/enotify.php:270 msgid "[Red:Notify] Introduction received" @@ -1308,2238 +2015,419 @@ msgstr "Visita %s per approvare o rifiutare il suggerimento." msgid "[Red:Notify]" msgstr "[Hubzilla]" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" +#: ../../include/network.php:635 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ogni ora" +#: ../../include/network.php:1660 ../../include/account.php:314 +#: ../../include/account.php:341 ../../include/account.php:401 +msgid "Administrator" +msgstr "Amministratore" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Due volte al giorno" +#: ../../include/network.php:1674 +msgid "No Subject" +msgstr "Nessun titolo" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Ogni giorno" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Ogni settimana" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Ogni mese" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:813 -#: ../../mod/admin.php:822 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1542 -msgid "Email" -msgstr "Email" - -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[nessun titolo]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare l'articolo inserito." - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." - -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." - -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." - -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "l'account locale non è stato trovato." - -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Messaggio privato" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:659 -msgid "Select" -msgstr "Seleziona" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Salva nella cartella" - -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Parteciperò" - -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Non parteciperò" - -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Forse parteciperò" - -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Sono d'accordo" - -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Non sono d'accordo" - -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Mi astengo" - -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1674 ../../mod/photos.php:1003 -#: ../../mod/photos.php:1015 -msgid "View all" -msgstr "Vedi tutto" - -#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 -#: ../../include/conversation.php:1698 ../../include/identity.php:1133 -#: ../../mod/photos.php:1007 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" - -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1701 -#: ../../mod/photos.php:1012 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Aggiungi ai preferiti" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Rimuovi dai preferiti" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Attiva/disattiva preferito" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "preferito" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Messaggio con firma verificata" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Massaggio con firma non corretta" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Aggiungi un tag" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:947 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 -msgid "like" -msgstr "mi piace" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:948 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 -msgid "dislike" -msgstr "non mi piace" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Condividi" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "condividi" - -#: ../../include/ItemObject.php:276 +#: ../../include/bookmarks.php:35 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" - -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "a" - -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca:" - -#: ../../include/ItemObject.php:312 ../../include/conversation.php:716 -#, php-format -msgid "from %s" -msgstr "da %s" - -#: ../../include/ItemObject.php:315 ../../include/conversation.php:719 -#, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:720 -#, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" - -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Salva segnalibro" - -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Aggiungi al calendario" - -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Marca tutto come letto" - -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1133 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1134 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1139 -msgid "Close" -msgstr "Chiudi" - -#: ../../include/ItemObject.php:364 ../../include/conversation.php:737 -#: ../../include/conversation.php:1206 ../../mod/photos.php:950 -#: ../../mod/editlayout.php:153 ../../mod/editwebpage.php:192 -#: ../../mod/editpost.php:130 ../../mod/editblock.php:155 -#: ../../mod/mail.php:241 ../../mod/mail.php:356 -msgid "Please wait" -msgstr "Attendere" - -#: ../../include/ItemObject.php:665 ../../mod/photos.php:966 -#: ../../mod/photos.php:1084 -msgid "This is you" -msgstr "Questo sei tu" - -#: ../../include/ItemObject.php:669 ../../include/conversation.php:1179 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:179 -#: ../../mod/editpost.php:114 ../../mod/editblock.php:141 -msgid "Bold" -msgstr "Grassetto" - -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1180 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:180 -#: ../../mod/editpost.php:115 ../../mod/editblock.php:142 -msgid "Italic" -msgstr "Corsivo" - -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1181 -#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:181 -#: ../../mod/editpost.php:116 ../../mod/editblock.php:143 -msgid "Underline" -msgstr "Sottolineato" - -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1182 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:182 -#: ../../mod/editpost.php:117 ../../mod/editblock.php:144 -msgid "Quote" -msgstr "Citazione" - -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1183 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:183 -#: ../../mod/editpost.php:118 ../../mod/editblock.php:145 -msgid "Code" -msgstr "Codice" - -#: ../../include/ItemObject.php:674 -msgid "Image" -msgstr "Immagine" - -#: ../../include/ItemObject.php:675 -msgid "Insert Link" -msgstr "Collegamento" - -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Video" - -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1233 -#: ../../mod/editpost.php:157 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Crittografia del testo" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nuova finestra" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" - -#: ../../include/Contact.php:215 ../../mod/admin.php:730 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" - -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "Allegati:" - -#: ../../include/bb2diaspora.php:453 -msgid "Hubzilla event notification:" -msgstr "Notifica eventi Hubzilla:" - -#: ../../include/text.php:329 +#: ../../include/text.php:391 msgid "prev" msgstr "prec" -#: ../../include/text.php:331 +#: ../../include/text.php:393 msgid "first" msgstr "inizio" -#: ../../include/text.php:360 +#: ../../include/text.php:422 msgid "last" msgstr "fine" -#: ../../include/text.php:363 +#: ../../include/text.php:425 msgid "next" msgstr "succ" -#: ../../include/text.php:373 +#: ../../include/text.php:435 msgid "older" msgstr "più recenti" -#: ../../include/text.php:375 +#: ../../include/text.php:437 msgid "newer" msgstr "più nuovi" -#: ../../include/text.php:768 +#: ../../include/text.php:775 msgid "No connections" msgstr "Nessun contatto" -#: ../../include/text.php:782 +#: ../../include/text.php:787 #, php-format msgid "%d Connection" msgid_plural "%d Connections" msgstr[0] "%d contatto" msgstr[1] "%d contatti" -#: ../../include/text.php:795 ../../mod/viewconnections.php:104 +#: ../../include/text.php:800 ../../mod/viewconnections.php:101 msgid "View Connections" msgstr "Elenco contatti" -#: ../../include/text.php:852 ../../include/text.php:864 -#: ../../include/nav.php:165 ../../include/apps.php:147 +#: ../../include/text.php:857 ../../include/text.php:869 +#: ../../include/apps.php:147 ../../include/nav.php:159 #: ../../mod/search.php:38 msgid "Search" msgstr "Cerca" -#: ../../include/text.php:928 +#: ../../include/text.php:858 ../../include/text.php:870 +#: ../../include/widgets.php:191 ../../mod/filer.php:49 +#: ../../mod/admin.php:1411 ../../mod/admin.php:1431 ../../mod/rbmark.php:28 +#: ../../mod/rbmark.php:98 +msgid "Save" +msgstr "Salva" + +#: ../../include/text.php:933 msgid "poke" msgstr "poke" -#: ../../include/text.php:928 ../../include/conversation.php:243 -msgid "poked" -msgstr "ha ricevuto un poke" - -#: ../../include/text.php:929 +#: ../../include/text.php:934 msgid "ping" msgstr "ping" -#: ../../include/text.php:929 +#: ../../include/text.php:934 msgid "pinged" msgstr "ha ricevuto un ping" -#: ../../include/text.php:930 +#: ../../include/text.php:935 msgid "prod" msgstr "spintone" -#: ../../include/text.php:930 +#: ../../include/text.php:935 msgid "prodded" msgstr "ha ricevuto uno spintone" -#: ../../include/text.php:931 +#: ../../include/text.php:936 msgid "slap" msgstr "schiaffo" -#: ../../include/text.php:931 +#: ../../include/text.php:936 msgid "slapped" msgstr "ha ricevuto uno schiaffo" -#: ../../include/text.php:932 +#: ../../include/text.php:937 msgid "finger" msgstr "finger" -#: ../../include/text.php:932 +#: ../../include/text.php:937 msgid "fingered" msgstr "ha ricevuto un finger" -#: ../../include/text.php:933 +#: ../../include/text.php:938 msgid "rebuff" msgstr "rifiuto" -#: ../../include/text.php:933 +#: ../../include/text.php:938 msgid "rebuffed" msgstr "ha ricevuto un rifiuto" -#: ../../include/text.php:943 +#: ../../include/text.php:948 msgid "happy" msgstr "felice" -#: ../../include/text.php:944 +#: ../../include/text.php:949 msgid "sad" msgstr "triste" -#: ../../include/text.php:945 +#: ../../include/text.php:950 msgid "mellow" msgstr "calmo" -#: ../../include/text.php:946 +#: ../../include/text.php:951 msgid "tired" msgstr "stanco" -#: ../../include/text.php:947 +#: ../../include/text.php:952 msgid "perky" msgstr "vivace" -#: ../../include/text.php:948 +#: ../../include/text.php:953 msgid "angry" msgstr "arrabbiato" -#: ../../include/text.php:949 +#: ../../include/text.php:954 msgid "stupified" msgstr "stordito" -#: ../../include/text.php:950 +#: ../../include/text.php:955 msgid "puzzled" msgstr "confuso" -#: ../../include/text.php:951 +#: ../../include/text.php:956 msgid "interested" msgstr "attento" -#: ../../include/text.php:952 +#: ../../include/text.php:957 msgid "bitter" msgstr "amaro" -#: ../../include/text.php:953 +#: ../../include/text.php:958 msgid "cheerful" msgstr "allegro" -#: ../../include/text.php:954 +#: ../../include/text.php:959 msgid "alive" msgstr "vivace" -#: ../../include/text.php:955 +#: ../../include/text.php:960 msgid "annoyed" msgstr "seccato" -#: ../../include/text.php:956 +#: ../../include/text.php:961 msgid "anxious" msgstr "ansioso" -#: ../../include/text.php:957 +#: ../../include/text.php:962 msgid "cranky" msgstr "irritabile" -#: ../../include/text.php:958 +#: ../../include/text.php:963 msgid "disturbed" msgstr "turbato" -#: ../../include/text.php:959 +#: ../../include/text.php:964 msgid "frustrated" msgstr "frustrato" -#: ../../include/text.php:960 +#: ../../include/text.php:965 msgid "depressed" msgstr "in depressione" -#: ../../include/text.php:961 +#: ../../include/text.php:966 msgid "motivated" msgstr "motivato" -#: ../../include/text.php:962 +#: ../../include/text.php:967 msgid "relaxed" msgstr "rilassato" -#: ../../include/text.php:963 +#: ../../include/text.php:968 msgid "surprised" msgstr "sorpreso" -#: ../../include/text.php:1135 -msgid "Monday" -msgstr "lunedì" - -#: ../../include/text.php:1135 -msgid "Tuesday" -msgstr "martedì" - -#: ../../include/text.php:1135 -msgid "Wednesday" -msgstr "mercoledì" - -#: ../../include/text.php:1135 -msgid "Thursday" -msgstr "giovedì" - -#: ../../include/text.php:1135 -msgid "Friday" -msgstr "venerdì" - -#: ../../include/text.php:1135 -msgid "Saturday" -msgstr "sabato" - -#: ../../include/text.php:1135 -msgid "Sunday" -msgstr "domenica" - -#: ../../include/text.php:1139 -msgid "January" -msgstr "gennaio" - -#: ../../include/text.php:1139 -msgid "February" -msgstr "febbraio" - -#: ../../include/text.php:1139 -msgid "March" -msgstr "marzo" - -#: ../../include/text.php:1139 -msgid "April" -msgstr "aprile" - -#: ../../include/text.php:1139 +#: ../../include/text.php:1144 msgid "May" msgstr "maggio" -#: ../../include/text.php:1139 -msgid "June" -msgstr "giugno" - -#: ../../include/text.php:1139 -msgid "July" -msgstr "luglio" - -#: ../../include/text.php:1139 -msgid "August" -msgstr "agosto" - -#: ../../include/text.php:1139 -msgid "September" -msgstr "settembre" - -#: ../../include/text.php:1139 -msgid "October" -msgstr "ottobre" - -#: ../../include/text.php:1139 -msgid "November" -msgstr "novembre" - -#: ../../include/text.php:1139 -msgid "December" -msgstr "dicembre" - -#: ../../include/text.php:1236 +#: ../../include/text.php:1247 msgid "unknown.???" msgstr "sconosciuto???" -#: ../../include/text.php:1237 +#: ../../include/text.php:1248 msgid "bytes" msgstr "byte" -#: ../../include/text.php:1273 +#: ../../include/text.php:1284 msgid "remove category" msgstr "rimuovi la categoria" -#: ../../include/text.php:1348 +#: ../../include/text.php:1359 msgid "remove from file" msgstr "rimuovi dal file" -#: ../../include/text.php:1424 ../../include/text.php:1435 -#: ../../mod/connedit.php:661 +#: ../../include/text.php:1443 ../../include/text.php:1454 msgid "Click to open/close" msgstr "Clicca per aprire/chiudere" -#: ../../include/text.php:1591 ../../mod/events.php:444 +#: ../../include/text.php:1609 ../../mod/events.php:497 msgid "Link to Source" msgstr "Link al sito d'origine" -#: ../../include/text.php:1612 ../../include/text.php:1683 +#: ../../include/text.php:1630 ../../include/text.php:1701 msgid "default" msgstr "predefinito" -#: ../../include/text.php:1620 +#: ../../include/text.php:1638 msgid "Page layout" msgstr "Layout della pagina" -#: ../../include/text.php:1620 +#: ../../include/text.php:1638 msgid "You can create your own with the layouts tool" -msgstr "Con gli strumenti di design puoi creare il tuo" +msgstr "Con la configurazione del layout puoi crearne uno tuo" -#: ../../include/text.php:1661 +#: ../../include/text.php:1679 msgid "Page content type" msgstr "Tipo di contenuto della pagina" -#: ../../include/text.php:1695 +#: ../../include/text.php:1713 msgid "Select an alternate language" msgstr "Seleziona una lingua diversa" -#: ../../include/text.php:1814 ../../include/conversation.php:120 -#: ../../include/diaspora.php:2081 ../../mod/like.php:346 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "la foto" - -#: ../../include/text.php:1817 ../../include/conversation.php:123 -#: ../../mod/like.php:348 ../../mod/tagger.php:47 -msgid "event" -msgstr "l'evento" - -#: ../../include/text.php:1820 ../../include/conversation.php:148 -#: ../../include/diaspora.php:2081 ../../mod/like.php:346 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:51 -msgid "status" -msgstr "il messaggio di stato" - -#: ../../include/text.php:1822 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "il commento" - -#: ../../include/text.php:1827 +#: ../../include/text.php:1845 msgid "activity" msgstr "l'attività" -#: ../../include/text.php:2122 +#: ../../include/text.php:2140 msgid "Design Tools" msgstr "Strumenti di design" -#: ../../include/text.php:2125 ../../mod/blocks.php:143 +#: ../../include/text.php:2143 ../../mod/blocks.php:147 msgid "Blocks" msgstr "Riquadri" -#: ../../include/text.php:2126 ../../mod/menu.php:95 +#: ../../include/text.php:2144 ../../mod/menu.php:103 msgid "Menus" msgstr "Menù" -#: ../../include/text.php:2127 ../../mod/layouts.php:169 +#: ../../include/text.php:2145 ../../mod/layouts.php:174 msgid "Layouts" msgstr "Layout" -#: ../../include/text.php:2128 +#: ../../include/text.php:2146 msgid "Pages" msgstr "Pagine" -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1539 -msgid "Logout" -msgstr "Esci" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Chiudi questa sessione" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Bacheca" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "I tuoi articoli e conversazioni" - -#: ../../include/nav.php:91 ../../include/conversation.php:942 -#: ../../mod/connedit.php:494 ../../mod/connedit.php:660 -msgid "View Profile" -msgstr "Profilo" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Il tuo profilo" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Modifica i profili" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Gestisci/modifica i profili" - -#: ../../include/nav.php:95 ../../include/identity.php:846 -msgid "Edit Profile" -msgstr "Modifica il profilo" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Modifica il profilo" - -#: ../../include/nav.php:97 ../../include/conversation.php:1597 -#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Le tue foto" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "I tuoi file" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Area chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Le tue aree chat" - -#: ../../include/nav.php:109 ../../include/conversation.php:1632 -#: ../../include/apps.php:129 -msgid "Bookmarks" -msgstr "Segnalibri" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" - -#: ../../include/nav.php:113 ../../include/conversation.php:1642 -#: ../../include/apps.php:136 ../../mod/webpages.php:176 -msgid "Webpages" -msgstr "Pagine web" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Le tue pagine web" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1540 -msgid "Login" -msgstr "Accedi" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Accedi" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Autenticazione magica dal tuo server" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per autenticarti sul tuo server principale" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Bacheca" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1516 -msgid "Register" -msgstr "Iscriviti" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Crea un account" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:171 -msgid "Help" -msgstr "Guida" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Applicazioni, utilità, link, giochi" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Cerca nel sito" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:366 -msgid "Directory" -msgstr "Elenco pubblico" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Elenco pubblico canali" - -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Hubzilla" - -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "La tua rete" - -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "Segna come lette le notifiche della tua rete" - -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Bacheca del canale" - -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "Bacheca del canale" - -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche del canale" - -#: ../../include/nav.php:187 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Contatti" - -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "Avvisi" - -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "Notifiche" - -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" - -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "Messaggi" - -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "Messaggi privati" - -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" - -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" - -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "Inviati" - -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:472 -msgid "Events" -msgstr "Eventi" - -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "Calendario" - -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "Guarda tutti gli eventi" - -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" - -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:166 -msgid "Channel Manager" -msgstr "Gestione canali" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" - -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" - -#: ../../include/nav.php:247 ../../include/conversation.php:850 -msgid "Loading..." -msgstr "Caricamento in corso..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@nome, #tag, testo" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Attendere..." - -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "Tag" - -#: ../../include/taxonomy.php:287 -msgid "Keywords" -msgstr "Parole chiave" - -#: ../../include/taxonomy.php:308 -msgid "have" -msgstr "ho" - -#: ../../include/taxonomy.php:308 -msgid "has" -msgstr "ha" - -#: ../../include/taxonomy.php:309 -msgid "want" -msgstr "voglio" - -#: ../../include/taxonomy.php:309 -msgid "wants" -msgstr "vuole" - -#: ../../include/taxonomy.php:310 -msgid "likes" -msgstr "gli piace" - -#: ../../include/taxonomy.php:311 -msgid "dislikes" -msgstr "non gli piace" - -#: ../../include/activities.php:39 -msgid " and " -msgstr "e" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "profilo pubblico" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Guarda %2$s di %1$s " - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha aggiornato %2$s cambiando %3$s." - -#: ../../include/bbcode.php:122 ../../include/bbcode.php:735 -#: ../../include/bbcode.php:738 ../../include/bbcode.php:743 -#: ../../include/bbcode.php:746 ../../include/bbcode.php:749 -#: ../../include/bbcode.php:752 ../../include/bbcode.php:757 -#: ../../include/bbcode.php:760 ../../include/bbcode.php:765 -#: ../../include/bbcode.php:768 ../../include/bbcode.php:771 -#: ../../include/bbcode.php:774 -msgid "Image/photo" -msgstr "Immagine" - -#: ../../include/bbcode.php:161 ../../include/bbcode.php:785 -msgid "Encrypted content" -msgstr "Contenuto crittografato" - -#: ../../include/bbcode.php:177 -msgid "Install design element: " -msgstr "Installa il componente di design:" - -#: ../../include/bbcode.php:190 -msgid "QR code" -msgstr "QR code" - -#: ../../include/bbcode.php:241 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" - -#: ../../include/bbcode.php:243 -msgid "post" -msgstr "l'articolo" - -#: ../../include/bbcode.php:485 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" - -#: ../../include/bbcode.php:696 -msgid "$1 spoiler" -msgstr "$1 spoiler" - -#: ../../include/bbcode.php:723 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: ../../include/items.php:399 ../../mod/like.php:270 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 -#: ../../mod/bulksetclose.php:11 ../../index.php:392 -msgid "Permission denied" -msgstr "Permesso negato" - -#: ../../include/items.php:1012 ../../include/items.php:1058 -msgid "(Unknown)" -msgstr "(Sconosciuto)" - -#: ../../include/items.php:1226 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." - -#: ../../include/items.php:1228 -msgid "Visible to you only." -msgstr "Visibile solo a te." - -#: ../../include/items.php:1230 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." - -#: ../../include/items.php:1232 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." - -#: ../../include/items.php:1234 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti in %s." - -#: ../../include/items.php:1236 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." - -#: ../../include/items.php:1238 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." - -#: ../../include/items.php:1240 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." - -#: ../../include/items.php:4051 ../../mod/thing.php:74 -#: ../../mod/display.php:36 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:167 ../../mod/admin.php:984 -#: ../../mod/admin.php:1184 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../include/items.php:4124 ../../include/photos.php:26 -#: ../../include/attach.php:136 ../../include/attach.php:183 -#: ../../include/attach.php:246 ../../include/attach.php:260 -#: ../../include/attach.php:304 ../../include/attach.php:318 -#: ../../include/attach.php:343 ../../include/attach.php:539 -#: ../../include/attach.php:611 ../../include/chat.php:131 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/manage.php:6 -#: ../../mod/settings.php:564 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/thing.php:241 ../../mod/thing.php:256 ../../mod/thing.php:290 -#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 -#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 -#: ../../mod/events.php:219 ../../mod/group.php:9 ../../mod/setup.php:207 -#: ../../mod/common.php:35 ../../mod/connections.php:169 -#: ../../mod/photos.php:68 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 -#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 -#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/editwebpage.php:64 -#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101 -#: ../../mod/editwebpage.php:125 ../../mod/rate.php:110 -#: ../../mod/editpost.php:13 ../../mod/invite.php:13 ../../mod/invite.php:104 -#: ../../mod/locs.php:77 ../../mod/sources.php:66 ../../mod/menu.php:69 -#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 -#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 -#: ../../mod/fsuggest.php:78 ../../mod/poke.php:128 ../../mod/webpages.php:69 -#: ../../mod/profiles.php:188 ../../mod/profiles.php:576 -#: ../../mod/viewsrc.php:14 ../../mod/mitem.php:115 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/editblock.php:65 ../../mod/register.php:72 ../../mod/item.php:206 -#: ../../mod/item.php:214 ../../mod/item.php:962 ../../mod/blocks.php:69 -#: ../../mod/blocks.php:76 ../../mod/id.php:71 ../../mod/message.php:16 -#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 -#: ../../mod/mood.php:111 ../../mod/connedit.php:331 ../../mod/mail.php:114 -#: ../../mod/notifications.php:66 ../../mod/regmod.php:17 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/appman.php:66 ../../mod/network.php:12 ../../mod/page.php:28 -#: ../../mod/page.php:79 ../../mod/bookmarks.php:46 ../../mod/channel.php:100 -#: ../../mod/channel.php:219 ../../mod/channel.php:262 -#: ../../mod/suggest.php:26 ../../mod/service_limits.php:7 -#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:393 -msgid "Permission denied." -msgstr "Permesso negato." - -#: ../../include/items.php:4524 ../../mod/group.php:38 ../../mod/group.php:140 -#: ../../mod/bulksetclose.php:51 -msgid "Collection not found." -msgstr "Insieme di canali non trovato." - -#: ../../include/items.php:4540 -msgid "Collection is empty." -msgstr "L'insieme di canali è vuoto." - -#: ../../include/items.php:4547 -#, php-format -msgid "Collection: %s" -msgstr "Insieme: %s" - -#: ../../include/items.php:4557 -#, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" - -#: ../../include/items.php:4559 -msgid "Connection not found." -msgstr "Contatto non trovato." - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Può vedere i miei contenuti e articoli normali" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Può vedere il profilo predefinito del canale" - -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Può vedere i miei album fotografici" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Può vedere i miei contatti" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Può vedere i miei file condivisi" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Può vedere le mie pagine web" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "È tra i canali che seguo" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" - -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Può commentare o aggiungere \"mi piace\" ai miei articoli" - -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Può inviarmi messaggi privati" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Può aggiungere foto ai miei album" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Può aggiungere \"mi piace\"" - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profili e tutto ciò che non è articoli e commenti" - -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione" - -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Può scrivere sul mio archivio file" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" - -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Può usare i miei articoli pubblici per creare canali derivati" - -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" - -#: ../../include/permissions.php:48 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" - -#: ../../include/permissions.php:809 -msgid "Social Networking" -msgstr "Social network" - -#: ../../include/permissions.php:809 ../../include/permissions.php:810 -#: ../../include/permissions.php:811 -msgid "Mostly Public" -msgstr "Prevalentemente pubblico" - -#: ../../include/permissions.php:809 ../../include/permissions.php:810 -#: ../../include/permissions.php:811 -msgid "Restricted" -msgstr "Con restrizioni" - -#: ../../include/permissions.php:809 ../../include/permissions.php:810 -msgid "Private" -msgstr "Privato" - -#: ../../include/permissions.php:810 -msgid "Community Forum" -msgstr "Forum di discussione" - -#: ../../include/permissions.php:811 -msgid "Feed Republish" -msgstr "Aggregatore di feed esterni" - -#: ../../include/permissions.php:812 -msgid "Special Purpose" -msgstr "Per finalità speciali" - -#: ../../include/permissions.php:812 -msgid "Celebrity/Soapbox" -msgstr "Pagina per fan" - -#: ../../include/permissions.php:812 -msgid "Group Repository" -msgstr "Repository di gruppo" - -#: ../../include/permissions.php:813 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Altro" - -#: ../../include/permissions.php:813 -msgid "Custom/Expert Mode" -msgstr "Personalizzazione per esperti" - -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "canale" - -#: ../../include/conversation.php:164 ../../include/diaspora.php:2110 -#: ../../mod/like.php:394 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: ../../include/conversation.php:167 ../../mod/like.php:396 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" - -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s è %2$s" - -#: ../../include/conversation.php:572 ../../mod/photos.php:984 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" - -#: ../../include/conversation.php:572 ../../mod/photos.php:984 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../include/conversation.php:573 ../../mod/photos.php:985 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" - -#: ../../include/conversation.php:573 ../../mod/photos.php:985 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" - -#: ../../include/conversation.php:573 ../../mod/photos.php:985 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" - -#: ../../include/conversation.php:574 ../../mod/photos.php:986 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" - -#: ../../include/conversation.php:574 ../../mod/photos.php:986 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" - -#: ../../include/conversation.php:574 ../../mod/photos.php:986 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" - -#: ../../include/conversation.php:692 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: ../../include/conversation.php:707 -msgid "Categories:" -msgstr "Categorie:" - -#: ../../include/conversation.php:708 -msgid "Filed under:" -msgstr "Classificato come:" - -#: ../../include/conversation.php:735 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: ../../include/conversation.php:846 -msgid "remove" -msgstr "rimuovi" - -#: ../../include/conversation.php:851 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" - -#: ../../include/conversation.php:939 -msgid "View Source" -msgstr "Vedi il sorgente" - -#: ../../include/conversation.php:940 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: ../../include/conversation.php:941 -msgid "View Status" -msgstr "Guarda il messaggio di stato" - -#: ../../include/conversation.php:943 -msgid "View Photos" -msgstr "Guarda le foto" - -#: ../../include/conversation.php:944 -msgid "Matrix Activity" -msgstr "Attività nella tua rete" - -#: ../../include/conversation.php:946 -msgid "Edit Contact" -msgstr "Modifica il contatto" - -#: ../../include/conversation.php:947 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: ../../include/conversation.php:948 ../../include/apps.php:145 -msgid "Poke" -msgstr "Poke" - -#: ../../include/conversation.php:1062 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:1062 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1066 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "Piace a %2$d persone." - -#: ../../include/conversation.php:1068 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "Non piace a %2$d persone." - -#: ../../include/conversation.php:1074 -msgid "and" -msgstr "e" - -#: ../../include/conversation.php:1077 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "e altre %d persone" - -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1138 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/conversation.php:1139 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: ../../include/conversation.php:1140 -msgid "Please enter a video link/URL:" -msgstr "Inserisci l'indirizzo del video:" - -#: ../../include/conversation.php:1141 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci l'indirizzo dell'audio:" - -#: ../../include/conversation.php:1142 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1143 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" - -#: ../../include/conversation.php:1144 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: ../../include/conversation.php:1145 ../../mod/editpost.php:52 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1172 ../../mod/photos.php:949 -#: ../../mod/editlayout.php:197 ../../mod/webpages.php:180 -#: ../../mod/blocks.php:149 ../../mod/layouts.php:175 -msgid "Share" -msgstr "Condividi" - -#: ../../include/conversation.php:1174 -msgid "Page link name" -msgstr "Nome del link alla pagina" - -#: ../../include/conversation.php:1177 -msgid "Post as" -msgstr "Pubblica come " - -#: ../../include/conversation.php:1184 ../../mod/editlayout.php:145 -#: ../../mod/editwebpage.php:184 ../../mod/editpost.php:119 -#: ../../mod/editblock.php:147 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "Carica foto" - -#: ../../include/conversation.php:1185 -msgid "upload photo" -msgstr "carica foto" - -#: ../../include/conversation.php:1186 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:185 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:148 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "Allega file" - -#: ../../include/conversation.php:1187 -msgid "attach file" -msgstr "allega file" - -#: ../../include/conversation.php:1188 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:186 ../../mod/editpost.php:121 -#: ../../mod/editblock.php:149 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" - -#: ../../include/conversation.php:1189 -msgid "web link" -msgstr "link web" - -#: ../../include/conversation.php:1190 -msgid "Insert video link" -msgstr "Inserisci l'indirizzo di un video" - -#: ../../include/conversation.php:1191 -msgid "video link" -msgstr "link video" - -#: ../../include/conversation.php:1192 -msgid "Insert audio link" -msgstr "Inserisci l'indirizzo di un audio" - -#: ../../include/conversation.php:1193 -msgid "audio link" -msgstr "link audio" - -#: ../../include/conversation.php:1194 ../../mod/editlayout.php:151 -#: ../../mod/editwebpage.php:190 ../../mod/editpost.php:125 -#: ../../mod/editblock.php:153 -msgid "Set your location" -msgstr "La tua località" - -#: ../../include/conversation.php:1195 -msgid "set location" -msgstr "la tua località" - -#: ../../include/conversation.php:1196 ../../mod/editpost.php:127 -msgid "Toggle voting" -msgstr "Abilita/disabilita il voto" - -#: ../../include/conversation.php:1199 ../../mod/editlayout.php:152 -#: ../../mod/editwebpage.php:191 ../../mod/editpost.php:126 -#: ../../mod/editblock.php:154 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" - -#: ../../include/conversation.php:1200 -msgid "clear location" -msgstr "rimuovi la località" - -#: ../../include/conversation.php:1202 ../../mod/editlayout.php:164 -#: ../../mod/editwebpage.php:207 ../../mod/editpost.php:141 -#: ../../mod/editblock.php:167 -msgid "Title (optional)" -msgstr "Titolo (opzionale)" - -#: ../../include/conversation.php:1205 ../../mod/editlayout.php:167 -#: ../../mod/editwebpage.php:209 ../../mod/editpost.php:143 -#: ../../mod/editblock.php:170 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorie (lista separata da virgole)" - -#: ../../include/conversation.php:1207 ../../mod/editlayout.php:154 -#: ../../mod/editwebpage.php:193 ../../mod/editpost.php:131 -#: ../../mod/editblock.php:156 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: ../../include/conversation.php:1208 -msgid "permissions" -msgstr "permessi" - -#: ../../include/conversation.php:1216 ../../mod/editlayout.php:161 -#: ../../mod/editwebpage.php:202 ../../mod/editpost.php:138 -#: ../../mod/editblock.php:164 -msgid "Public post" -msgstr "Articolo pubblico" - -#: ../../include/conversation.php:1218 ../../mod/editlayout.php:168 -#: ../../mod/editwebpage.php:210 ../../mod/editpost.php:144 -#: ../../mod/editblock.php:171 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Per esempio: mario@esempio.com, simona@esempio.com" - -#: ../../include/conversation.php:1231 ../../mod/editlayout.php:177 -#: ../../mod/editwebpage.php:219 ../../mod/editpost.php:155 -#: ../../mod/editblock.php:181 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Data di scadenza" - -#: ../../include/conversation.php:1235 ../../mod/events.php:637 -#: ../../mod/editpost.php:159 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1236 ../../mod/settings.php:583 -#: ../../mod/settings.php:609 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -#: ../../mod/events.php:636 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160 -msgid "Cancel" -msgstr "Annulla" - -#: ../../include/conversation.php:1478 -msgid "Discover" -msgstr "Scopri" - -#: ../../include/conversation.php:1481 -msgid "Imported public streams" -msgstr "Contenuti pubblici importati" - -#: ../../include/conversation.php:1486 -msgid "Commented Order" -msgstr "Ultimi commenti" - -#: ../../include/conversation.php:1489 -msgid "Sort by Comment Date" -msgstr "Per data del commento" - -#: ../../include/conversation.php:1493 -msgid "Posted Order" -msgstr "Ultimi articoli" - -#: ../../include/conversation.php:1496 -msgid "Sort by Post Date" -msgstr "Per data di creazione" - -#: ../../include/conversation.php:1504 -msgid "Posts that mention or involve you" -msgstr "Articoli che ti riguardano o ti menzionano" - -#: ../../include/conversation.php:1510 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:102 -msgid "New" -msgstr "Novità" - -#: ../../include/conversation.php:1513 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" - -#: ../../include/conversation.php:1519 -msgid "Starred" -msgstr "Preferiti" - -#: ../../include/conversation.php:1522 -msgid "Favourite Posts" -msgstr "Articoli preferiti" - -#: ../../include/conversation.php:1529 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1532 -msgid "Posts flagged as SPAM" -msgstr "Articoli marcati come spam" - -#: ../../include/conversation.php:1576 ../../mod/admin.php:952 -msgid "Channel" -msgstr "Canale" - -#: ../../include/conversation.php:1579 -msgid "Status Messages and Posts" -msgstr "Articoli e messaggi di stato" - -#: ../../include/conversation.php:1588 -msgid "About" -msgstr "Informazioni" - -#: ../../include/conversation.php:1591 -msgid "Profile Details" -msgstr "Dettagli del profilo" - -#: ../../include/conversation.php:1600 ../../include/photos.php:359 -msgid "Photo Albums" -msgstr "Album foto" - -#: ../../include/conversation.php:1609 -msgid "Files and Storage" -msgstr "Archivio file" - -#: ../../include/conversation.php:1619 ../../include/conversation.php:1622 -msgid "Chatrooms" -msgstr "Area chat" - -#: ../../include/conversation.php:1635 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" - -#: ../../include/conversation.php:1645 -msgid "Manage Webpages" -msgstr "Gestisci le pagine web" - -#: ../../include/conversation.php:1704 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" - -#: ../../include/conversation.php:1707 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" - -#: ../../include/conversation.php:1710 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indecisi" - -#: ../../include/conversation.php:1713 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accordo" -msgstr[1] "D'accordo" - -#: ../../include/conversation.php:1716 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Non d'accordo" -msgstr[1] "Non d'accordo" - -#: ../../include/conversation.php:1719 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Astenuto" -msgstr[1] "Astenuti" - -#: ../../include/photos.php:94 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" - -#: ../../include/photos.php:101 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: ../../include/photos.php:199 -msgid "Photo storage failed." -msgstr "Impossibile caricare la foto." - -#: ../../include/photos.php:363 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: ../../include/zot.php:666 -msgid "Invalid data packet" -msgstr "Dati non validi" - -#: ../../include/zot.php:682 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:2108 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "Contenuti incorporati" - -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "Disabilita la creazione di contenuti incorporati" - -#: ../../include/auth.php:131 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: ../../include/auth.php:272 -msgid "Failed authentication" -msgstr "Autenticazione fallita" - -#: ../../include/auth.php:286 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Accesso fallito." - -#: ../../include/contact_widgets.php:14 -#, 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:19 ../../mod/admin.php:450 -msgid "Advanced" -msgstr "Avanzate" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Ricerca canali" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Scrivi un nome o un interesse" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Aggiungi" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:362 ../../mod/directory.php:367 -msgid "Find" -msgstr "Cerca" - -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:366 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Profilo casuale" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Invita amici" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Per esempio: name=mario e country=italy" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "mostra tutto" - -#: ../../include/acl_selectors.php:240 +#: ../../include/acl_selectors.php:239 msgid "Visible to your default audience" msgstr "Visibile secondo le impostazioni predefinite" -#: ../../include/acl_selectors.php:241 +#: ../../include/acl_selectors.php:240 msgid "Show" msgstr "Mostra" -#: ../../include/acl_selectors.php:242 +#: ../../include/acl_selectors.php:241 msgid "Don't show" msgstr "Non mostrare" -#: ../../include/acl_selectors.php:248 ../../mod/events.php:654 -#: ../../mod/photos.php:559 ../../mod/photos.php:922 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:147 +#: ../../include/acl_selectors.php:247 ../../mod/filestorage.php:147 +#: ../../mod/chat.php:207 ../../mod/photos.php:592 ../../mod/photos.php:962 +#: ../../mod/events.php:708 ../../mod/thing.php:310 ../../mod/thing.php:356 msgid "Permissions" msgstr "Permessi" -#: ../../include/attach.php:241 ../../include/attach.php:299 +#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:361 +#: ../../mod/photos.php:1179 +msgid "Close" +msgstr "Chiudi" + +#: ../../include/attach.php:243 ../../include/attach.php:329 msgid "Item was not found." msgstr "Elemento non trovato." -#: ../../include/attach.php:356 +#: ../../include/attach.php:471 msgid "No source file." msgstr "Nessun file di origine." -#: ../../include/attach.php:374 +#: ../../include/attach.php:489 msgid "Cannot locate file to replace" msgstr "Il file da sostituire non è stato trovato" -#: ../../include/attach.php:392 +#: ../../include/attach.php:507 msgid "Cannot locate file to revise/update" msgstr "Il file da aggiornare non è stato trovato" -#: ../../include/attach.php:403 +#: ../../include/attach.php:632 #, php-format msgid "File exceeds size limit of %d" msgstr "Il file supera la dimensione massima di %d" -#: ../../include/attach.php:415 +#: ../../include/attach.php:645 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." -#: ../../include/attach.php:498 +#: ../../include/attach.php:793 msgid "File upload failed. Possible system limit or action terminated." msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." -#: ../../include/attach.php:510 +#: ../../include/attach.php:806 msgid "Stored file could not be verified. Upload failed." msgstr "Il file non può essere verificato. Caricamento fallito." -#: ../../include/attach.php:554 ../../include/attach.php:571 +#: ../../include/attach.php:854 ../../include/attach.php:870 msgid "Path not available." msgstr "Percorso non disponibile." -#: ../../include/attach.php:616 +#: ../../include/attach.php:916 ../../include/attach.php:1069 msgid "Empty pathname" msgstr "Il percorso del file è vuoto" -#: ../../include/attach.php:632 +#: ../../include/attach.php:942 msgid "duplicate filename or path" msgstr "il file o il percorso del file è duplicato" -#: ../../include/attach.php:656 +#: ../../include/attach.php:965 msgid "Path not found." msgstr "Percorso del file non trovato." -#: ../../include/attach.php:707 +#: ../../include/attach.php:1023 msgid "mkdir failed." msgstr "mkdir fallito." -#: ../../include/attach.php:711 +#: ../../include/attach.php:1027 msgid "database storage failed." msgstr "scrittura su database fallita." -#: ../../include/identity.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" +#: ../../include/attach.php:1075 +msgid "Empty path" +msgstr "La posizione è vuota" -#: ../../include/identity.php:67 -msgid "Empty name" -msgstr "Nome vuoto" - -#: ../../include/identity.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" - -#: ../../include/identity.php:186 -msgid "No account identifier" -msgstr "Account senza identificativo" - -#: ../../include/identity.php:198 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." - -#: ../../include/identity.php:212 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." - -#: ../../include/identity.php:217 ../../include/dimport.php:34 +#: ../../include/import.php:23 msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." -#: ../../include/identity.php:292 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." -#: ../../include/identity.php:350 -msgid "Default Profile" -msgstr "Profilo predefinito" +#: ../../include/import.php:80 ../../mod/import.php:138 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." -#: ../../include/identity.php:630 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "Ha creato un nuovo post" -#: ../../include/identity.php:677 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/connect.php:13 -#: ../../mod/hcard.php:8 ../../mod/editlayout.php:28 -#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:54 -#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 -#: ../../mod/blocks.php:29 ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "Il profilo richiesto non è disponibile." - -#: ../../include/identity.php:836 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: ../../include/identity.php:842 -msgid "Profiles" -msgstr "Profili" - -#: ../../include/identity.php:842 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" - -#: ../../include/identity.php:843 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: ../../include/identity.php:858 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Immagine del profilo" - -#: ../../include/identity.php:861 -msgid "visible to everybody" -msgstr "visibile a tutti" - -#: ../../include/identity.php:862 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Cambia la visibilità" - -#: ../../include/identity.php:878 ../../include/identity.php:1117 -msgid "Gender:" -msgstr "Sesso:" - -#: ../../include/identity.php:879 ../../include/identity.php:1161 -msgid "Status:" -msgstr "Stato:" - -#: ../../include/identity.php:880 ../../include/identity.php:1172 -msgid "Homepage:" -msgstr "Home page:" - -#: ../../include/identity.php:881 -msgid "Online Now" -msgstr "Online adesso" - -#: ../../include/identity.php:964 ../../include/identity.php:1042 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../include/identity.php:965 ../../include/identity.php:1043 -msgid "F d" -msgstr "d F" - -#: ../../include/identity.php:1010 ../../include/identity.php:1082 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[oggi]" - -#: ../../include/identity.php:1021 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" - -#: ../../include/identity.php:1022 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" - -#: ../../include/identity.php:1075 -msgid "[No description]" -msgstr "[Nessuna descrizione]" - -#: ../../include/identity.php:1093 -msgid "Event Reminders" -msgstr "Promemoria" - -#: ../../include/identity.php:1094 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" - -#: ../../include/identity.php:1107 ../../include/identity.php:1224 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profilo" - -#: ../../include/identity.php:1115 ../../mod/settings.php:1045 -msgid "Full Name:" -msgstr "Nome completo:" - -#: ../../include/identity.php:1122 -msgid "Like this channel" -msgstr "Mi piace questo canale" - -#: ../../include/identity.php:1146 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/identity.php:1147 -msgid "j F" -msgstr "j F" - -#: ../../include/identity.php:1154 -msgid "Birthday:" -msgstr "Compleanno:" - -#: ../../include/identity.php:1158 -msgid "Age:" -msgstr "Età:" - -#: ../../include/identity.php:1167 +#: ../../include/notify.php:21 #, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +msgid "commented on %s's post" +msgstr "ha commentato il post di %s" -#: ../../include/identity.php:1170 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nuova pagina web" -#: ../../include/identity.php:1174 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Città dove vivo:" +#: ../../include/page_widgets.php:39 ../../mod/layouts.php:188 +#: ../../mod/webpages.php:187 ../../mod/blocks.php:159 +msgid "View" +msgstr "Guarda" -#: ../../include/identity.php:1176 -msgid "Tags:" -msgstr "Tag:" +#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 +msgid "Actions" +msgstr "Azioni" -#: ../../include/identity.php:1178 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../include/identity.php:1180 -msgid "Religion:" -msgstr "Religione:" +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titolo" -#: ../../include/identity.php:1182 -msgid "About:" -msgstr "Informazioni:" +#: ../../include/page_widgets.php:44 ../../mod/layouts.php:181 +#: ../../mod/menu.php:110 ../../mod/webpages.php:192 ../../mod/blocks.php:150 +msgid "Created" +msgstr "Creato" -#: ../../include/identity.php:1184 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" +#: ../../include/page_widgets.php:45 ../../mod/layouts.php:182 +#: ../../mod/menu.php:111 ../../mod/webpages.php:193 ../../mod/blocks.php:151 +msgid "Edited" +msgstr "Modificato" -#: ../../include/identity.php:1186 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Mi piace:" - -#: ../../include/identity.php:1188 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: ../../include/identity.php:1190 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" - -#: ../../include/identity.php:1192 -msgid "My other channels:" -msgstr "I miei altri canali:" - -#: ../../include/identity.php:1194 -msgid "Musical interests:" -msgstr "Gusti musicali:" - -#: ../../include/identity.php:1196 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: ../../include/identity.php:1198 -msgid "Television:" -msgstr "Televisione:" - -#: ../../include/identity.php:1200 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" - -#: ../../include/identity.php:1202 -msgid "Love/Romance:" -msgstr "Amore:" - -#: ../../include/identity.php:1204 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: ../../include/identity.php:1206 -msgid "School/education:" -msgstr "Scuola:" - -#: ../../include/identity.php:1226 -msgid "Like this thing" -msgstr "Mi piace questo Oggetto" +#: ../../include/photo/photo_driver.php:705 ../../mod/photos.php:94 +#: ../../mod/photos.php:660 ../../mod/profile_photo.php:146 +#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:376 +msgid "Profile Photos" +msgstr "Foto del profilo" #: ../../include/profile_selectors.php:6 #: ../../include/profile_selectors.php:23 ../../mod/id.php:103 @@ -3687,6 +2575,15 @@ msgstr "Infedele" msgid "Sex Addict" msgstr "Sesso-dipendente" +#: ../../include/profile_selectors.php:80 ../../include/identity.php:390 +#: ../../include/identity.php:391 ../../include/identity.php:398 +#: ../../include/widgets.php:429 ../../mod/connedit.php:569 +#: ../../mod/settings.php:337 ../../mod/settings.php:341 +#: ../../mod/settings.php:342 ../../mod/settings.php:345 +#: ../../mod/settings.php:356 +msgid "Friends" +msgstr "Amici" + #: ../../include/profile_selectors.php:80 msgid "Friends/Benefits" msgstr "Amici con qualcosa in più" @@ -3777,6 +2674,56 @@ msgstr "Chi se ne frega" msgid "Ask me" msgstr "Chiedimelo" +#: ../../include/oembed.php:213 +msgid "Embedded content" +msgstr "Contenuti incorporati" + +#: ../../include/oembed.php:222 +msgid "Embedding disabled" +msgstr "Disabilita la creazione di contenuti incorporati" + +#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 +msgid "Starts:" +msgstr "Inizio:" + +#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 +msgid "Finishes:" +msgstr "Fine:" + +#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 +#: ../../include/identity.php:992 ../../mod/directory.php:302 +#: ../../mod/events.php:701 +msgid "Location:" +msgstr "Luogo:" + +#: ../../include/event.php:766 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" + +#: ../../include/event.php:953 +msgid "Not specified" +msgstr "Non specificato" + +#: ../../include/event.php:954 +msgid "Needs Action" +msgstr "Necessita di un intervento" + +#: ../../include/event.php:955 +msgid "Completed" +msgstr "Completato" + +#: ../../include/event.php:956 +msgid "In Process" +msgstr "In corso" + +#: ../../include/event.php:957 +msgid "Cancelled" +msgstr "Annullato" + #: ../../include/apps.php:128 msgid "Site Admin" msgstr "Amministrazione sito" @@ -3785,10 +2732,59 @@ msgstr "Amministrazione sito" msgid "Address Book" msgstr "Rubrica" -#: ../../include/apps.php:144 ../../mod/mood.php:130 +#: ../../include/apps.php:131 ../../include/nav.php:111 ../../boot.php:1497 +msgid "Login" +msgstr "Accedi" + +#: ../../include/apps.php:132 ../../include/nav.php:200 +#: ../../mod/manage.php:160 +msgid "Channel Manager" +msgstr "Gestione canali" + +#: ../../include/apps.php:133 +msgid "Matrix" +msgstr "Rete" + +#: ../../include/apps.php:134 ../../include/widgets.php:553 +#: ../../include/nav.php:202 ../../mod/admin.php:1033 ../../mod/admin.php:1233 +msgid "Settings" +msgstr "Impostazioni" + +#: ../../include/apps.php:137 ../../include/nav.php:177 +msgid "Channel Home" +msgstr "Bacheca del canale" + +#: ../../include/apps.php:138 ../../include/identity.php:1226 +#: ../../include/identity.php:1343 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "Profilo" + +#: ../../include/apps.php:140 ../../include/nav.php:196 +#: ../../mod/events.php:526 +msgid "Events" +msgstr "Eventi" + +#: ../../include/apps.php:141 ../../include/nav.php:162 +msgid "Directory" +msgstr "Elenco pubblico" + +#: ../../include/apps.php:142 ../../include/nav.php:154 ../../mod/help.php:202 +#: ../../mod/help.php:207 ../../mod/layouts.php:176 +msgid "Help" +msgstr "Guida" + +#: ../../include/apps.php:143 ../../include/nav.php:188 +msgid "Mail" +msgstr "Messaggi" + +#: ../../include/apps.php:144 ../../mod/mood.php:131 msgid "Mood" msgstr "Umore" +#: ../../include/apps.php:146 ../../include/nav.php:97 +msgid "Chat" +msgstr "Chat" + #: ../../include/apps.php:148 msgid "Probe" msgstr "Diagnostica" @@ -3815,7 +2811,7 @@ msgstr "Lingua" #: ../../include/apps.php:154 msgid "Post" -msgstr "Articolo" +msgstr "Post" #: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 #: ../../mod/id.php:19 @@ -3823,7 +2819,7 @@ msgid "Profile Photo" msgstr "Foto del profilo" #: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:608 +#: ../../mod/settings.php:609 msgid "Update" msgstr "Aggiorna" @@ -3835,916 +2831,1529 @@ msgstr "Installa" msgid "Purchase" msgstr "Acquista" -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Area chat senza nome" +#: ../../include/auth.php:131 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Il nome dell'area chat è duplicato" +#: ../../include/auth.php:272 +msgid "Failed authentication" +msgstr "Autenticazione fallita" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Il nome dell'area chat non è valido." +#: ../../include/auth.php:286 ../../mod/openid.php:189 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "Area chat non trovata." +#: ../../include/bb2diaspora.php:373 +msgid "Attachments:" +msgstr "Allegati:" -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "L'area chat è al completo" +#: ../../include/bb2diaspora.php:461 +msgid "$Projectname event notification:" +msgstr "Notifica evento $Projectname:" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:793 +#: ../../include/bbcode.php:796 ../../include/bbcode.php:801 +#: ../../include/bbcode.php:804 ../../include/bbcode.php:807 +#: ../../include/bbcode.php:810 ../../include/bbcode.php:815 +#: ../../include/bbcode.php:818 ../../include/bbcode.php:823 +#: ../../include/bbcode.php:826 ../../include/bbcode.php:829 +#: ../../include/bbcode.php:832 +msgid "Image/photo" +msgstr "Immagine" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:843 +msgid "Encrypted content" +msgstr "Contenuto cifrato" + +#: ../../include/bbcode.php:179 +#, php-format +msgid "Install %s element: " +msgstr "Installa l'elemento %s:" + +#: ../../include/bbcode.php:183 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." + +#: ../../include/bbcode.php:193 ../../mod/impel.php:37 +msgid "webpage" +msgstr "pagina web" + +#: ../../include/bbcode.php:196 ../../mod/impel.php:47 +msgid "layout" +msgstr "layout" + +#: ../../include/bbcode.php:199 ../../mod/impel.php:42 +msgid "block" +msgstr "riquadro" + +#: ../../include/bbcode.php:202 ../../mod/impel.php:54 +msgid "menu" +msgstr "menu" + +#: ../../include/bbcode.php:257 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s %3$s" + +#: ../../include/bbcode.php:259 ../../mod/tagger.php:51 +msgid "post" +msgstr "il post" + +#: ../../include/bbcode.php:547 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" + +#: ../../include/bbcode.php:754 +msgid "$1 spoiler" +msgstr "$1 spoiler" + +#: ../../include/bbcode.php:781 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: ../../include/account.php:27 +msgid "Not a valid email address" +msgstr "Email non valida" + +#: ../../include/account.php:29 +msgid "Your email domain is not among those allowed on this site" +msgstr "Il dominio della tua email attualmente non è permesso su questo sito" + +#: ../../include/account.php:35 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." + +#: ../../include/account.php:67 +msgid "An invitation is required." +msgstr "È necessario un invito." + +#: ../../include/account.php:71 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." + +#: ../../include/account.php:121 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: ../../include/account.php:188 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." + +#: ../../include/account.php:246 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" + +#: ../../include/account.php:312 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" + +#: ../../include/account.php:336 +msgid "your registration password" +msgstr "la password di registrazione" + +#: ../../include/account.php:339 ../../include/account.php:399 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: ../../include/account.php:408 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../include/account.php:447 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: ../../include/account.php:492 +msgid "Account verified. Please login." +msgstr "Registrazione verificata. Adesso puoi effettuare login." + +#: ../../include/account.php:705 ../../include/account.php:707 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../include/account.php:713 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione supera i limiti del tuo abbonamento." + +#: ../../include/account.php:718 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." + +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." + +#: ../../include/follow.php:154 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." + +#: ../../include/follow.php:170 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." + +#: ../../include/follow.php:186 +msgid "local account not found." +msgstr "l'account locale non è stato trovato." + +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." + +#: ../../include/security.php:345 +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 "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." + +#: ../../include/contact_widgets.php:14 +#, 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:19 ../../mod/admin.php:415 +msgid "Advanced" +msgstr "Avanzate" + +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Ricerca canali" + +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" + +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Aggiungi" + +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" + +#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 +#: ../../mod/directory.php:384 ../../mod/connections.php:266 +msgid "Find" +msgstr "Cerca" + +#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 +#: ../../mod/suggest.php:60 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Profilo casuale" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Invita amici" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Per esempio: name=mario e country=italy" + +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98 +#: ../../include/widgets.php:306 +msgid "Everything" +msgstr "Tutto" + +#: ../../include/contact_widgets.php:95 ../../include/taxonomy.php:271 +#: ../../include/widgets.php:35 +msgid "Categories" +msgstr "Categorie" + +#: ../../include/contact_widgets.php:128 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" + +#: ../../include/contact_widgets.php:133 +msgid "show more" +msgstr "mostra tutto" + +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." + +#: ../../include/group.php:232 +msgid "Add new connections to this collection (privacy group)" +msgstr "Aggiungi altri contatti a questo insieme (privacy di gruppo)" + +#: ../../include/group.php:251 ../../mod/admin.php:788 +msgid "All Channels" +msgstr "Tutti i canali" + +#: ../../include/group.php:273 +msgid "edit" +msgstr "modifica" + +#: ../../include/group.php:295 +msgid "Collections" +msgstr "Insiemi di canali" + +#: ../../include/group.php:296 +msgid "Edit collection" +msgstr "Modifica l'insieme di canali" + +#: ../../include/group.php:297 +msgid "Add new collection" +msgstr "Nuovo insieme" + +#: ../../include/group.php:298 +msgid "Channels not in any collection" +msgstr "Canali che non sono in un insieme" + +#: ../../include/group.php:300 ../../include/widgets.php:274 +msgid "add" +msgstr "aggiungi" + +#: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 +msgid "Tags" +msgstr "Tag" + +#: ../../include/taxonomy.php:294 +msgid "Keywords" +msgstr "Parole chiave" + +#: ../../include/taxonomy.php:315 +msgid "have" +msgstr "ho" + +#: ../../include/taxonomy.php:315 +msgid "has" +msgstr "ha" + +#: ../../include/taxonomy.php:316 +msgid "want" +msgstr "voglio" + +#: ../../include/taxonomy.php:316 +msgid "wants" +msgstr "vuole" + +#: ../../include/taxonomy.php:317 ../../include/ItemObject.php:254 +msgid "like" +msgstr "mi piace" + +#: ../../include/taxonomy.php:317 +msgid "likes" +msgstr "gli piace" + +#: ../../include/taxonomy.php:318 ../../include/ItemObject.php:255 +msgid "dislike" +msgstr "non mi piace" + +#: ../../include/taxonomy.php:318 +msgid "dislikes" +msgstr "non gli piace" + +#: ../../include/dir_fns.php:126 +msgid "Directory Options" +msgstr "Opzioni elenco pubblico" + +#: ../../include/dir_fns.php:128 +msgid "Safe Mode" +msgstr "Modalità SafeSearch" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/connedit.php:631 +#: ../../mod/connedit.php:659 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:386 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:106 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 +msgid "No" +msgstr "No" + +#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 +#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 +#: ../../mod/mitem.php:229 ../../mod/filestorage.php:151 +#: ../../mod/filestorage.php:159 ../../mod/admin.php:388 ../../mod/menu.php:96 +#: ../../mod/menu.php:153 ../../mod/photos.php:589 ../../mod/settings.php:574 +#: ../../mod/api.php:105 ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1501 +msgid "Yes" +msgstr "Si" + +#: ../../include/dir_fns.php:129 +msgid "Public Forums Only" +msgstr "Solo forum pubblici" + +#: ../../include/dir_fns.php:130 +msgid "This Website Only" +msgstr "Solo in questo sito" + +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Nome vuoto" + +#: ../../include/identity.php:69 +msgid "Name too long" +msgstr "Nome troppo lungo" + +#: ../../include/identity.php:181 +msgid "No account identifier" +msgstr "Account senza identificativo" + +#: ../../include/identity.php:193 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." + +#: ../../include/identity.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." + +#: ../../include/identity.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." + +#: ../../include/identity.php:288 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" + +#: ../../include/identity.php:346 +msgid "Default Profile" +msgstr "Profilo predefinito" + +#: ../../include/identity.php:745 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." + +#: ../../include/identity.php:791 ../../mod/achievements.php:11 +#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29 +#: ../../mod/editblock.php:29 ../../mod/profile.php:16 +#: ../../mod/webpages.php:29 ../../mod/blocks.php:29 +#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 +#: ../../mod/connect.php:13 +msgid "Requested profile is not available." +msgstr "Il profilo richiesto non è disponibile." + +#: ../../include/identity.php:954 ../../mod/profiles.php:774 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" + +#: ../../include/identity.php:960 +msgid "Profiles" +msgstr "Profili" + +#: ../../include/identity.php:960 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: ../../include/identity.php:961 ../../mod/profiles.php:775 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: ../../include/identity.php:964 ../../include/nav.php:90 +msgid "Edit Profile" +msgstr "Modifica il profilo" + +#: ../../include/identity.php:976 ../../mod/profiles.php:786 +msgid "Profile Image" +msgstr "Immagine del profilo" + +#: ../../include/identity.php:979 +msgid "visible to everybody" +msgstr "visibile a tutti" + +#: ../../include/identity.php:980 ../../mod/profiles.php:669 +#: ../../mod/profiles.php:790 +msgid "Edit visibility" +msgstr "Cambia la visibilità" + +#: ../../include/identity.php:996 ../../include/identity.php:1236 +msgid "Gender:" +msgstr "Sesso:" + +#: ../../include/identity.php:997 ../../include/identity.php:1280 +msgid "Status:" +msgstr "Stato:" + +#: ../../include/identity.php:998 ../../include/identity.php:1291 +msgid "Homepage:" +msgstr "Home page:" + +#: ../../include/identity.php:999 +msgid "Online Now" +msgstr "Online adesso" + +#: ../../include/identity.php:1083 ../../include/identity.php:1161 +#: ../../mod/ping.php:318 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../include/identity.php:1084 ../../include/identity.php:1162 +msgid "F d" +msgstr "d F" + +#: ../../include/identity.php:1129 ../../include/identity.php:1201 +#: ../../mod/ping.php:341 +msgid "[today]" +msgstr "[oggi]" + +#: ../../include/identity.php:1140 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" + +#: ../../include/identity.php:1141 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: ../../include/identity.php:1194 +msgid "[No description]" +msgstr "[Nessuna descrizione]" + +#: ../../include/identity.php:1212 +msgid "Event Reminders" +msgstr "Promemoria" + +#: ../../include/identity.php:1213 +msgid "Events this week:" +msgstr "Eventi della settimana:" + +#: ../../include/identity.php:1234 ../../mod/settings.php:1026 +msgid "Full Name:" +msgstr "Nome completo:" + +#: ../../include/identity.php:1241 +msgid "Like this channel" +msgstr "Mi piace questo canale" + +#: ../../include/identity.php:1265 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/identity.php:1266 +msgid "j F" +msgstr "j F" + +#: ../../include/identity.php:1273 +msgid "Birthday:" +msgstr "Compleanno:" + +#: ../../include/identity.php:1277 ../../mod/directory.php:297 +msgid "Age:" +msgstr "Età:" + +#: ../../include/identity.php:1286 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: ../../include/identity.php:1289 ../../mod/profiles.php:691 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: ../../include/identity.php:1293 ../../mod/directory.php:313 +#: ../../mod/profiles.php:693 +msgid "Hometown:" +msgstr "Città dove vivo:" + +#: ../../include/identity.php:1295 +msgid "Tags:" +msgstr "Tag:" + +#: ../../include/identity.php:1297 ../../mod/profiles.php:694 +msgid "Political Views:" +msgstr "Orientamento politico:" + +#: ../../include/identity.php:1299 +msgid "Religion:" +msgstr "Religione:" + +#: ../../include/identity.php:1301 ../../mod/directory.php:315 +msgid "About:" +msgstr "Informazioni:" + +#: ../../include/identity.php:1303 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" + +#: ../../include/identity.php:1305 ../../mod/profiles.php:697 +msgid "Likes:" +msgstr "Mi piace:" + +#: ../../include/identity.php:1307 ../../mod/profiles.php:698 +msgid "Dislikes:" +msgstr "Non mi piace:" + +#: ../../include/identity.php:1309 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" + +#: ../../include/identity.php:1311 +msgid "My other channels:" +msgstr "I miei altri canali:" + +#: ../../include/identity.php:1313 +msgid "Musical interests:" +msgstr "Gusti musicali:" + +#: ../../include/identity.php:1315 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: ../../include/identity.php:1317 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/identity.php:1319 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" + +#: ../../include/identity.php:1321 +msgid "Love/Romance:" +msgstr "Amore:" + +#: ../../include/identity.php:1323 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: ../../include/identity.php:1325 +msgid "School/education:" +msgstr "Scuola:" + +#: ../../include/identity.php:1345 +msgid "Like this thing" +msgstr "Mi piace" + +#: ../../include/message.php:18 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." + +#: ../../include/message.php:23 +msgid "[no subject]" +msgstr "[nessun titolo]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." + +#: ../../include/message.php:203 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare il post." + +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "Salva nella cartella" + +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Parteciperò" + +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "Non parteciperò" + +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Forse parteciperò" + +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Sono d'accordo" + +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "Non sono d'accordo" + +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Mi astengo" + +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Aggiungi ai preferiti" + +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Rimuovi dai preferiti" + +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Attiva/disattiva preferito" + +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "preferito" + +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Aggiungi un tag" + +#: ../../include/ItemObject.php:254 ../../mod/photos.php:987 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" + +#: ../../include/ItemObject.php:255 ../../mod/photos.php:988 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" + +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "Condividi" + +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "condividi" + +#: ../../include/ItemObject.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 +#, php-format +msgid "View %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" + +#: ../../include/ItemObject.php:299 +msgid "to" +msgstr "a" + +#: ../../include/ItemObject.php:300 +msgid "via" +msgstr "via" + +#: ../../include/ItemObject.php:301 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: ../../include/ItemObject.php:302 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca:" + +#: ../../include/ItemObject.php:305 +msgid "Delivery Report" +msgstr "Rapporto di trasmissione" + +#: ../../include/ItemObject.php:339 +msgid "Save Bookmarks" +msgstr "Salva segnalibro" + +#: ../../include/ItemObject.php:340 +msgid "Add to Calendar" +msgstr "Aggiungi al calendario" + +#: ../../include/ItemObject.php:349 +msgid "Mark all seen" +msgstr "Marca tutto come letto" + +#: ../../include/ItemObject.php:355 ../../mod/photos.php:1173 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" + +#: ../../include/ItemObject.php:356 ../../mod/photos.php:1174 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../include/ItemObject.php:671 ../../mod/photos.php:1006 +#: ../../mod/photos.php:1124 +msgid "This is you" +msgstr "Questo sei tu" + +#: ../../include/ItemObject.php:680 +msgid "Image" +msgstr "Immagine" + +#: ../../include/ItemObject.php:681 +msgid "Insert Link" +msgstr "Collegamento" + +#: ../../include/ItemObject.php:682 +msgid "Video" +msgstr "Video" + +#: ../../include/items.php:423 ../../mod/like.php:280 ../../mod/dreport.php:6 +#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 +#: ../../mod/import_items.php:114 ../../index.php:360 +msgid "Permission denied" +msgstr "Permesso negato" + +#: ../../include/items.php:1128 ../../include/items.php:1174 +msgid "(Unknown)" +msgstr "(Sconosciuto)" + +#: ../../include/items.php:1371 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." + +#: ../../include/items.php:1373 +msgid "Visible to you only." +msgstr "Visibile solo a te." + +#: ../../include/items.php:1375 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." + +#: ../../include/items.php:1377 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." + +#: ../../include/items.php:1379 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." + +#: ../../include/items.php:1381 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." + +#: ../../include/items.php:1383 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." + +#: ../../include/items.php:1385 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." + +#: ../../include/items.php:4263 ../../mod/display.php:36 +#: ../../mod/filestorage.php:27 ../../mod/admin.php:127 +#: ../../mod/admin.php:979 ../../mod/admin.php:1179 ../../mod/thing.php:86 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../include/items.php:4772 ../../mod/group.php:38 ../../mod/group.php:137 +msgid "Collection not found." +msgstr "Insieme di canali non trovato." + +#: ../../include/items.php:4788 +msgid "Collection is empty." +msgstr "L'insieme di canali è vuoto." + +#: ../../include/items.php:4795 +#, php-format +msgid "Collection: %s" +msgstr "Insieme: %s" + +#: ../../include/items.php:4805 ../../mod/connedit.php:658 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" + +#: ../../include/items.php:4807 +msgid "Connection not found." +msgstr "Contatto non trovato." + +#: ../../include/widgets.php:91 ../../include/nav.php:157 +#: ../../mod/apps.php:36 +msgid "Apps" +msgstr "App" + +#: ../../include/widgets.php:92 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:95 +msgid "Create Personal App" +msgstr "Crea app personale" + +#: ../../include/widgets.php:96 +msgid "Edit Personal App" +msgstr "Modifica app personale" + +#: ../../include/widgets.php:138 ../../mod/suggest.php:54 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" + +#: ../../include/widgets.php:143 ../../mod/connections.php:125 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "Altro..." + +#: ../../include/widgets.php:165 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." + +#: ../../include/widgets.php:171 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" + +#: ../../include/widgets.php:172 +msgid "Enter the channel address" +msgstr "Scrivi l'indirizzo del canale" + +#: ../../include/widgets.php:173 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" + +#: ../../include/widgets.php:189 +msgid "Notes" +msgstr "Note" + +#: ../../include/widgets.php:265 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../include/widgets.php:348 +msgid "Archives" +msgstr "Archivi" + +#: ../../include/widgets.php:427 ../../mod/connedit.php:567 +msgid "Me" +msgstr "Me" + +#: ../../include/widgets.php:428 ../../mod/connedit.php:568 +msgid "Family" +msgstr "Famiglia" + +#: ../../include/widgets.php:430 ../../mod/connedit.php:570 +msgid "Acquaintances" +msgstr "Conoscenti" + +#: ../../include/widgets.php:431 ../../mod/connedit.php:571 +#: ../../mod/connections.php:88 ../../mod/connections.php:103 +msgid "All" +msgstr "Tutti" + +#: ../../include/widgets.php:450 +msgid "Refresh" +msgstr "Aggiorna" + +#: ../../include/widgets.php:484 +msgid "Account settings" +msgstr "Il tuo account" + +#: ../../include/widgets.php:490 +msgid "Channel settings" +msgstr "Impostazioni del canale" + +#: ../../include/widgets.php:496 +msgid "Additional features" +msgstr "Funzionalità opzionali" + +#: ../../include/widgets.php:502 +msgid "Feature/Addon settings" +msgstr "Componenti aggiuntivi" + +#: ../../include/widgets.php:508 +msgid "Display settings" +msgstr "Aspetto" + +#: ../../include/widgets.php:514 +msgid "Connected apps" +msgstr "App connesse" + +#: ../../include/widgets.php:520 +msgid "Export channel" +msgstr "Esporta il canale" + +#: ../../include/widgets.php:529 ../../mod/connedit.php:658 +msgid "Connection Default Permissions" +msgstr "Permessi predefiniti dei nuovi contatti" + +#: ../../include/widgets.php:537 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" + +#: ../../include/widgets.php:567 +msgid "Private Mail Menu" +msgstr "Menu messaggi privati" + +#: ../../include/widgets.php:569 +msgid "Check Mail" +msgstr "Controlla i messaggi" + +#: ../../include/widgets.php:575 +msgid "Combined View" +msgstr "Vista combinata" + +#: ../../include/widgets.php:580 ../../include/nav.php:191 +msgid "Inbox" +msgstr "In arrivo" + +#: ../../include/widgets.php:585 ../../include/nav.php:192 +msgid "Outbox" +msgstr "Inviati" + +#: ../../include/widgets.php:590 ../../include/nav.php:193 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../include/widgets.php:609 ../../include/widgets.php:621 +msgid "Conversations" +msgstr "Conversazioni" + +#: ../../include/widgets.php:613 +msgid "Received Messages" +msgstr "Ricevuti" + +#: ../../include/widgets.php:617 +msgid "Sent Messages" +msgstr "Inviati" + +#: ../../include/widgets.php:631 +msgid "No messages." +msgstr "Nessun messaggio." + +#: ../../include/widgets.php:648 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: ../../include/widgets.php:650 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: ../../include/widgets.php:738 +msgid "Chat Rooms" +msgstr "Chat" + +#: ../../include/widgets.php:758 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" + +#: ../../include/widgets.php:778 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" + +#: ../../include/widgets.php:905 ../../include/widgets.php:963 +msgid "photo/image" +msgstr "foto/immagine" + +#: ../../include/widgets.php:1058 ../../include/widgets.php:1060 +msgid "Rate Me" +msgstr "Valutami" + +#: ../../include/widgets.php:1064 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" + +#: ../../include/widgets.php:1075 +msgid "Public Hubs" +msgstr "Hub pubblici" + +#: ../../include/widgets.php:1123 +msgid "Forums" +msgstr "Forum" + +#: ../../include/widgets.php:1150 +msgid "Tasks" +msgstr "Attività" + +#: ../../include/widgets.php:1159 +msgid "Documentation" +msgstr "Guida" + +#: ../../include/widgets.php:1161 +msgid "Project/Site Information" +msgstr "Informazioni sul sito/progetto" + +#: ../../include/widgets.php:1162 +msgid "For Members" +msgstr "Per gli utenti" + +#: ../../include/widgets.php:1163 +msgid "For Administrators" +msgstr "Per gli amministratori" + +#: ../../include/widgets.php:1164 +msgid "For Developers" +msgstr "Per sviluppatori" + +#: ../../include/widgets.php:1189 ../../mod/admin.php:410 +msgid "Site" +msgstr "Sito" + +#: ../../include/widgets.php:1190 +msgid "Accounts" +msgstr "Account" + +#: ../../include/widgets.php:1191 ../../mod/admin.php:939 +msgid "Channels" +msgstr "Canali" + +#: ../../include/widgets.php:1192 ../../mod/admin.php:1031 +#: ../../mod/admin.php:1071 +msgid "Plugins" +msgstr "Plugin" + +#: ../../include/widgets.php:1193 ../../mod/admin.php:1231 +#: ../../mod/admin.php:1265 +msgid "Themes" +msgstr "Temi" + +#: ../../include/widgets.php:1194 +msgid "Inspect queue" +msgstr "Coda di attesa" + +#: ../../include/widgets.php:1195 +msgid "Profile Config" +msgstr "Configurazione del profilo" + +#: ../../include/widgets.php:1196 +msgid "DB updates" +msgstr "Aggiornamenti al DB" + +#: ../../include/widgets.php:1214 ../../include/widgets.php:1220 +#: ../../mod/admin.php:1350 +msgid "Logs" +msgstr "Log" + +#: ../../include/widgets.php:1218 ../../include/nav.php:210 +msgid "Admin" +msgstr "Amministrazione" + +#: ../../include/widgets.php:1219 +msgid "Plugin Features" +msgstr "Plugin" + +#: ../../include/widgets.php:1221 +msgid "User registrations waiting for confirmation" +msgstr "Registrazioni in attesa" + +#: ../../include/zot.php:677 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" + +#: ../../include/zot.php:693 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" + +#: ../../include/zot.php:2213 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" + +#: ../../include/zot.php:3511 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" + +#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1496 +msgid "Logout" +msgstr "Esci" + +#: ../../include/nav.php:82 ../../include/nav.php:114 +msgid "End this session" +msgstr "Chiudi questa sessione" + +#: ../../include/nav.php:85 ../../include/nav.php:145 +msgid "Home" +msgstr "Bacheca" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "I tuoi post e conversazioni" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Il tuo profilo" + +#: ../../include/nav.php:88 +msgid "Edit Profiles" +msgstr "Modifica i tuoi profili" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Gestisci i tuoi profili" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Modifica il tuo profilo" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Le tue foto" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "I tuoi file" + +#: ../../include/nav.php:97 +msgid "Your chatrooms" +msgstr "Le tue chat" + +#: ../../include/nav.php:103 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" + +#: ../../include/nav.php:107 +msgid "Your webpages" +msgstr "Le tue pagine web" + +#: ../../include/nav.php:111 +msgid "Sign in" +msgstr "Accedi" + +#: ../../include/nav.php:128 +#, php-format +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" + +#: ../../include/nav.php:131 +msgid "Remote authentication" +msgstr "Accedi dal tuo hub" + +#: ../../include/nav.php:131 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per farti riconoscere dal tuo hub principale" + +#: ../../include/nav.php:145 +msgid "Home Page" +msgstr "Bacheca" + +#: ../../include/nav.php:149 ../../mod/register.php:224 ../../boot.php:1473 +msgid "Register" +msgstr "Registrati" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:154 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:157 +msgid "Applications, utilities, links, games" +msgstr "Applicazioni, utilità, link, giochi" + +#: ../../include/nav.php:159 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" + +#: ../../include/nav.php:162 +msgid "Channel Directory" +msgstr "Elenco pubblico canali" + +#: ../../include/nav.php:174 +msgid "Grid" +msgstr "Rete" + +#: ../../include/nav.php:174 +msgid "Your grid" +msgstr "La tua rete" + +#: ../../include/nav.php:175 +msgid "Mark all grid notifications seen" +msgstr "Segna come lette le notifiche della tua rete" + +#: ../../include/nav.php:177 +msgid "Channel home" +msgstr "Bacheca del canale" + +#: ../../include/nav.php:178 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche del canale" + +#: ../../include/nav.php:181 ../../mod/connections.php:260 +msgid "Connections" +msgstr "Contatti" + +#: ../../include/nav.php:184 +msgid "Notices" +msgstr "Avvisi" + +#: ../../include/nav.php:184 +msgid "Notifications" +msgstr "Notifiche" + +#: ../../include/nav.php:185 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: ../../include/nav.php:186 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" + +#: ../../include/nav.php:188 +msgid "Private mail" +msgstr "Messaggi privati" + +#: ../../include/nav.php:189 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" + +#: ../../include/nav.php:190 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" + +#: ../../include/nav.php:196 +msgid "Event Calendar" +msgstr "Calendario" + +#: ../../include/nav.php:197 +msgid "See all events" +msgstr "Guarda tutti gli eventi" + +#: ../../include/nav.php:198 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" + +#: ../../include/nav.php:200 +msgid "Manage Your Channels" +msgstr "Gestisci i tuoi canali" + +#: ../../include/nav.php:202 +msgid "Account/Channel Settings" +msgstr "Impostazioni dell'account e del canale" + +#: ../../include/nav.php:210 +msgid "Site Setup and Configuration" +msgstr "Installazione e configurazione del sito" + +#: ../../include/nav.php:246 +msgid "@name, #tag, ?doc, content" +msgstr "@nome, #tag, ?guida, contenuto" + +#: ../../include/nav.php:247 +msgid "Please wait..." +msgstr "Attendere..." #: ../../mod/achievements.php:34 msgid "Some blurb about what to do when you're new here" msgstr "Qualche suggerimento per i nuovi utenti su cosa fare" -#: ../../mod/manage.php:136 +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +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 "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" +#: ../../mod/directory.php:59 ../../mod/display.php:13 ../../mod/search.php:13 +#: ../../mod/photos.php:453 ../../mod/ratings.php:82 +#: ../../mod/viewconnections.php:17 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../mod/manage.php:167 -msgid "Current Channel" -msgstr "Canale attuale" - -#: ../../mod/manage.php:169 -msgid "Switch to one of your channels by selecting it." -msgstr "Per passare a un altro tuo canale selezionalo." - -#: ../../mod/manage.php:170 -msgid "Default Channel" -msgstr "Canale predefinito" - -#: ../../mod/manage.php:171 -msgid "Make Default" -msgstr "Rendi predefinito" - -#: ../../mod/manage.php:174 +#: ../../mod/directory.php:234 #, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" -#: ../../mod/manage.php:175 +#: ../../mod/directory.php:245 +msgid "Gender: " +msgstr "Sesso:" + +#: ../../mod/directory.php:247 +msgid "Status: " +msgstr "Stato:" + +#: ../../mod/directory.php:249 +msgid "Homepage: " +msgstr "Homepage:" + +#: ../../mod/directory.php:308 ../../mod/events.php:699 +msgid "Description:" +msgstr "Descrizione:" + +#: ../../mod/directory.php:317 +msgid "Public Forum:" +msgstr "Forum pubblico:" + +#: ../../mod/directory.php:320 +msgid "Keywords: " +msgstr "Parole chiave:" + +#: ../../mod/directory.php:323 +msgid "Don't suggest" +msgstr "Non fornire suggerimenti" + +#: ../../mod/directory.php:325 +msgid "Common connections:" +msgstr "Contatti in comune:" + +#: ../../mod/directory.php:374 +msgid "Global Directory" +msgstr "Elenco globale dei canali" + +#: ../../mod/directory.php:374 +msgid "Local Directory" +msgstr "Elenco canali su questo server" + +#: ../../mod/directory.php:380 +msgid "Finding:" +msgstr "Ricerca:" + +#: ../../mod/directory.php:385 +msgid "next page" +msgstr "pagina successiva" + +#: ../../mod/directory.php:385 +msgid "previous page" +msgstr "pagina precedente" + +#: ../../mod/directory.php:386 +msgid "Sort options" +msgstr "Opzioni di ordinamento" + +#: ../../mod/directory.php:387 +msgid "Alphabetic" +msgstr "Alfabetico" + +#: ../../mod/directory.php:388 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" + +#: ../../mod/directory.php:389 +msgid "Newest to Oldest" +msgstr "Prima i più recenti" + +#: ../../mod/directory.php:390 +msgid "Oldest to Newest" +msgstr "Prima i più vecchi" + +#: ../../mod/directory.php:407 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." + +#: ../../mod/bookmarks.php:40 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" + +#: ../../mod/bookmarks.php:62 +msgid "My Bookmarks" +msgstr "I miei segnalibri" + +#: ../../mod/bookmarks.php:73 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" + +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." + +#: ../../mod/openid.php:72 ../../mod/openid.php:179 ../../mod/post.php:285 #, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" +msgid "Welcome %s. Remote authentication successful." +msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." -#: ../../mod/manage.php:177 -msgid "Delegated Channels" -msgstr "Canali delegati" - -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "Il nome è obbligatorio" - -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "Key e Secret sono richiesti" - -#: ../../mod/settings.php:124 -msgid "Diaspora Policy Settings updated." -msgstr "Le regole per Diaspora sono state aggiornate." - -#: ../../mod/settings.php:232 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." - -#: ../../mod/settings.php:236 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." - -#: ../../mod/settings.php:250 -msgid "Password changed." -msgstr "Password cambiata." - -#: ../../mod/settings.php:252 -msgid "Password update failed. Please try again." -msgstr "Modifica password fallita. Prova ancora." - -#: ../../mod/settings.php:266 -msgid "Not valid email." -msgstr "Email non valida." - -#: ../../mod/settings.php:269 -msgid "Protected email address. Cannot change to that email." -msgstr "È un indirizzo email riservato. Non puoi sceglierlo." - -#: ../../mod/settings.php:278 -msgid "System failure storing new email. Please try again." -msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." - -#: ../../mod/settings.php:517 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." - -#: ../../mod/settings.php:573 ../../mod/api.php:106 ../../mod/photos.php:556 -#: ../../mod/menu.php:88 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:424 -#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1544 -msgid "No" -msgstr "No" - -#: ../../mod/settings.php:573 ../../mod/api.php:105 ../../mod/photos.php:556 -#: ../../mod/menu.php:88 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:426 -#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1544 -msgid "Yes" -msgstr "Si" - -#: ../../mod/settings.php:581 ../../mod/settings.php:607 -#: ../../mod/settings.php:643 -msgid "Add application" -msgstr "Aggiungi una app" - -#: ../../mod/settings.php:584 -msgid "Name of application" -msgstr "Nome dell'applicazione" - -#: ../../mod/settings.php:585 ../../mod/settings.php:611 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:585 ../../mod/settings.php:586 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" - -#: ../../mod/settings.php:586 ../../mod/settings.php:612 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -msgid "Redirect" -msgstr "Redirect" - -#: ../../mod/settings.php:587 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione." - -#: ../../mod/settings.php:588 ../../mod/settings.php:614 -msgid "Icon url" -msgstr "Url icona" - -#: ../../mod/settings.php:588 -msgid "Optional" -msgstr "Opzionale" - -#: ../../mod/settings.php:599 -msgid "You can't edit this application." -msgstr "Non puoi modificare questa applicazione." - -#: ../../mod/settings.php:642 -msgid "Connected Apps" -msgstr "App connesse" - -#: ../../mod/settings.php:646 -msgid "Client key starts with" -msgstr "La client key inizia con" - -#: ../../mod/settings.php:647 -msgid "No name" -msgstr "Nessun nome" - -#: ../../mod/settings.php:648 -msgid "Remove authorization" -msgstr "Revoca l'autorizzazione" - -#: ../../mod/settings.php:662 -msgid "No feature settings configured" -msgstr "Non hai componenti aggiuntivi da personalizzare" - -#: ../../mod/settings.php:678 -msgid "Feature/Addon Settings" -msgstr "Impostazioni dei componenti aggiuntivi" - -#: ../../mod/settings.php:680 -msgid "Settings for the built-in Diaspora emulator" -msgstr "Interconnessione con Diaspora" - -#: ../../mod/settings.php:681 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Permetti a tutti gli utenti di Diaspora di commentare i tuoi post pubblici" - -#: ../../mod/settings.php:682 -msgid "Diaspora Policy Settings" -msgstr "Regole per Diaspora" - -#: ../../mod/settings.php:683 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Impedisci che i tuoi #tag puntino su altri siti" - -#: ../../mod/settings.php:707 -msgid "Account Settings" -msgstr "Il tuo account" - -#: ../../mod/settings.php:708 -msgid "Enter New Password:" -msgstr "Inserisci la nuova password:" - -#: ../../mod/settings.php:709 -msgid "Confirm New Password:" -msgstr "Conferma la nuova password:" - -#: ../../mod/settings.php:709 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non cambiare la password" - -#: ../../mod/settings.php:711 ../../mod/settings.php:1046 -msgid "Email Address:" -msgstr "Indirizzo email:" - -#: ../../mod/settings.php:712 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Elimina l'account" - -#: ../../mod/settings.php:713 -msgid "Remove this account including all its channels" -msgstr "Elimina questo account e tutti i suoi canali" - -#: ../../mod/settings.php:729 -msgid "Off" -msgstr "Off" - -#: ../../mod/settings.php:729 -msgid "On" -msgstr "On" - -#: ../../mod/settings.php:736 -msgid "Additional Features" -msgstr "Funzionalità opzionali" - -#: ../../mod/settings.php:760 -msgid "Connector Settings" -msgstr "Impostazioni del connettore" - -#: ../../mod/settings.php:799 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" - -#: ../../mod/settings.php:802 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Sperimentale)" - -#: ../../mod/settings.php:805 ../../mod/admin.php:396 -msgid "mobile" -msgstr "mobile" - -#: ../../mod/settings.php:841 -msgid "Display Settings" -msgstr "Aspetto" - -#: ../../mod/settings.php:847 -msgid "Display Theme:" -msgstr "Tema per schermi medio grandi:" - -#: ../../mod/settings.php:848 -msgid "Mobile Theme:" -msgstr "Tema per dispositivi mobili:" - -#: ../../mod/settings.php:849 -msgid "Enable user zoom on mobile devices" -msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" - -#: ../../mod/settings.php:850 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" - -#: ../../mod/settings.php:850 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" - -#: ../../mod/settings.php:851 -msgid "Maximum number of conversations to load at any time:" -msgstr "Massimo numero di conversazioni da mostrare ogni volta:" - -#: ../../mod/settings.php:851 -msgid "Maximum of 100 items" -msgstr "Massimo 100" - -#: ../../mod/settings.php:852 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra le faccine (smilies) come immagini" - -#: ../../mod/settings.php:853 -msgid "Link post titles to source" -msgstr "Il link del titolo di un articolo porta al sito originale" - -#: ../../mod/settings.php:854 -msgid "System Page Layout Editor - (advanced)" -msgstr "Modifica i layout di sistema (avanzato)" - -#: ../../mod/settings.php:857 -msgid "Use blog/list mode on channel page" -msgstr "Mostra il canale nella modalità blog" - -#: ../../mod/settings.php:857 ../../mod/settings.php:858 -msgid "(comments displayed separately)" -msgstr "(i commenti sono mostrati separatamente)" - -#: ../../mod/settings.php:858 -msgid "Use blog/list mode on matrix page" -msgstr "Mostra la tua rete in modalità blog" - -#: ../../mod/settings.php:859 -msgid "Channel page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti del canale (in pixel)" - -#: ../../mod/settings.php:859 ../../mod/settings.php:860 -msgid "click to expand content exceeding this height" -msgstr "dovrai cliccare per mostrare i contenuti di dimensioni maggiori" - -#: ../../mod/settings.php:860 -msgid "Matrix page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti della tua rete (in pixel)" - -#: ../../mod/settings.php:894 -msgid "Nobody except yourself" -msgstr "Nessuno tranne te" - -#: ../../mod/settings.php:895 -msgid "Only those you specifically allow" -msgstr "Solo chi riceve il mio permesso" - -#: ../../mod/settings.php:896 -msgid "Approved connections" -msgstr "Contatti approvati" - -#: ../../mod/settings.php:897 -msgid "Any connections" -msgstr "Tutti i contatti" - -#: ../../mod/settings.php:898 -msgid "Anybody on this website" -msgstr "Chiunque su questo sito" - -#: ../../mod/settings.php:899 -msgid "Anybody in this network" -msgstr "Chiunque su Red" - -#: ../../mod/settings.php:900 -msgid "Anybody authenticated" -msgstr "Chiunque sia autenticato" - -#: ../../mod/settings.php:901 -msgid "Anybody on the internet" -msgstr "Chiunque su internet" - -#: ../../mod/settings.php:975 -msgid "Publish your default profile in the network directory" -msgstr "Mostra il mio profilo predefinito nell'elenco pubblico dei canali" - -#: ../../mod/settings.php:980 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Vuoi essere suggerito come amico ai nuovi membri?" - -#: ../../mod/settings.php:984 ../../mod/profile_photo.php:366 -msgid "or" -msgstr "o" - -#: ../../mod/settings.php:989 -msgid "Your channel address is" -msgstr "L'indirizzo del tuo canale è" - -#: ../../mod/settings.php:1037 -msgid "Channel Settings" -msgstr "Impostazioni del canale" - -#: ../../mod/settings.php:1044 -msgid "Basic Settings" -msgstr "Impostazioni di base" - -#: ../../mod/settings.php:1047 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" - -#: ../../mod/settings.php:1048 -msgid "Default Post Location:" -msgstr "Località predefinita:" - -#: ../../mod/settings.php:1048 -msgid "Geographical location to display on your posts" -msgstr "Posizione geografica da mostrare sui tuoi post" - -#: ../../mod/settings.php:1049 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" - -#: ../../mod/settings.php:1051 -msgid "Adult Content" -msgstr "Contenuto per adulti" - -#: ../../mod/settings.php:1051 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" - -#: ../../mod/settings.php:1053 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" - -#: ../../mod/settings.php:1055 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" - -#: ../../mod/settings.php:1057 -msgid "Hide my online presence" -msgstr "Nascondi la mia presenza online" - -#: ../../mod/settings.php:1057 -msgid "Prevents displaying in your profile that you are online" -msgstr "Evita che sul tuo profilo compaia la tua presenza online" - -#: ../../mod/settings.php:1059 -msgid "Simple Privacy Settings:" -msgstr "Impostazioni di privacy semplificate" - -#: ../../mod/settings.php:1060 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" - -#: ../../mod/settings.php:1061 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" - -#: ../../mod/settings.php:1062 -msgid "Private - default private, never open or public" -msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" - -#: ../../mod/settings.php:1063 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" - -#: ../../mod/settings.php:1065 -msgid "Allow others to tag your posts" -msgstr "Permetti ad altri di taggare i tuoi articoli" - -#: ../../mod/settings.php:1065 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" - -#: ../../mod/settings.php:1067 -msgid "Advanced Privacy Settings" -msgstr "Impostazioni di privacy avanzate" - -#: ../../mod/settings.php:1069 -msgid "Expire other channel content after this many days" -msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" - -#: ../../mod/settings.php:1069 -msgid "0 or blank prevents expiration" -msgstr "Lascia vuoto oppure 0 per non impostare scadenze" - -#: ../../mod/settings.php:1070 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo giornaliero di richieste di amicizia:" - -#: ../../mod/settings.php:1070 -msgid "May reduce spam activity" -msgstr "Serve e ridurre lo spam" - -#: ../../mod/settings.php:1071 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per gli articoli" - -#: ../../mod/settings.php:1072 ../../mod/mitem.php:152 ../../mod/mitem.php:221 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: ../../mod/settings.php:1076 -msgid "Channel permissions category:" -msgstr "Categorie di permessi dei canali:" - -#: ../../mod/settings.php:1082 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" - -#: ../../mod/settings.php:1082 -msgid "Useful to reduce spamming" -msgstr "Serve e ridurre lo spam" - -#: ../../mod/settings.php:1085 -msgid "Notification Settings" -msgstr "Impostazioni di notifica" - -#: ../../mod/settings.php:1086 -msgid "By default post a status message when:" -msgstr "Pubblica un messaggio di stato quando:" - -#: ../../mod/settings.php:1087 -msgid "accepting a friend request" -msgstr "accetto una nuova amicizia" - -#: ../../mod/settings.php:1088 -msgid "joining a forum/community" -msgstr "entro a far parte di un forum" - -#: ../../mod/settings.php:1089 -msgid "making an interesting profile change" -msgstr "faccio un cambiamento interessante al mio profilo" - -#: ../../mod/settings.php:1090 -msgid "Send a notification email when:" -msgstr "Invia una email di notifica quando:" - -#: ../../mod/settings.php:1091 -msgid "You receive a connection request" -msgstr "Ricevi una richiesta di entrare in contatto" - -#: ../../mod/settings.php:1092 -msgid "Your connections are confirmed" -msgstr "I tuoi contatti sono confermati" - -#: ../../mod/settings.php:1093 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla tua bacheca" - -#: ../../mod/settings.php:1094 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo articolo" - -#: ../../mod/settings.php:1095 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: ../../mod/settings.php:1096 -msgid "You receive a friend suggestion" -msgstr "Ti viene suggerito un amico" - -#: ../../mod/settings.php:1097 -msgid "You are tagged in a post" -msgstr "Sei taggato in un articolo" - -#: ../../mod/settings.php:1098 -msgid "You are poked/prodded/etc. in a post" -msgstr "Ricevi un poke in un articolo" - -#: ../../mod/settings.php:1101 -msgid "Show visual notifications including:" -msgstr "Mostra queste notifiche a schermo:" - -#: ../../mod/settings.php:1103 -msgid "Unseen matrix activity" -msgstr "Nuove attività nella rete" - -#: ../../mod/settings.php:1104 -msgid "Unseen channel activity" -msgstr "Novità nei canali" - -#: ../../mod/settings.php:1105 -msgid "Unseen private messages" -msgstr "Nuovi messaggi privati" - -#: ../../mod/settings.php:1105 ../../mod/settings.php:1110 -#: ../../mod/settings.php:1111 ../../mod/settings.php:1112 -msgid "Recommended" -msgstr "Consigliato" - -#: ../../mod/settings.php:1106 -msgid "Upcoming events" -msgstr "Prossimi eventi" - -#: ../../mod/settings.php:1107 -msgid "Events today" -msgstr "Eventi di oggi" - -#: ../../mod/settings.php:1108 -msgid "Upcoming birthdays" -msgstr "Prossimi compleanni" - -#: ../../mod/settings.php:1108 -msgid "Not available in all themes" -msgstr "Non disponibile in tutti i temi" - -#: ../../mod/settings.php:1109 -msgid "System (personal) notifications" -msgstr "Notifiche personali dal sistema" - -#: ../../mod/settings.php:1110 -msgid "System info messages" -msgstr "Notifiche di sistema" - -#: ../../mod/settings.php:1111 -msgid "System critical alerts" -msgstr "Avvisi critici di sistema" - -#: ../../mod/settings.php:1112 -msgid "New connections" -msgstr "Nuovi contatti" - -#: ../../mod/settings.php:1113 -msgid "System Registrations" -msgstr "Registrazioni" - -#: ../../mod/settings.php:1114 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostra negli avvisi anche i nuovi articoli, i messaggi privati e i nuovi contatti" - -#: ../../mod/settings.php:1116 -msgid "Notify me of events this many days in advance" -msgstr "Giorni di anticipo per notificare gli eventi" - -#: ../../mod/settings.php:1116 -msgid "Must be greater than 0" -msgstr "Maggiore di 0" - -#: ../../mod/settings.php:1118 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate" - -#: ../../mod/settings.php:1119 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambia il funzionamento di questo account per necessità particolari" - -#: ../../mod/settings.php:1122 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" - -#: ../../mod/settings.php:1123 -msgid "Miscellaneous Settings" -msgstr "Impostazioni varie" - -#: ../../mod/settings.php:1125 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personale da mostrare sulle pagine del tuo canale" - -#: ../../mod/settings.php:1126 ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Elimina questo canale" - -#: ../../mod/settings.php:1127 -msgid "Remove this channel." -msgstr "Elimina questo canale." - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Ricerca canale" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca un canale (o un webbie) che inizia per:" - -#: ../../mod/xchan.php:37 ../../mod/menu.php:149 ../../mod/mitem.php:120 -msgid "Not found." -msgstr "Non trovato." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la app" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla app e inserisci questo codice di sicurezza:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Accedi al sito 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 app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Canale aggiunto." - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: ../../mod/tagrm.php:133 ../../mod/photos.php:875 -msgid "Remove" -msgstr "Rimuovi" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Continua" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Canale premium - installazione" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" - -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." - -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" - -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" - -#: ../../mod/thing.php:94 -msgid "Thing updated" -msgstr "L'Oggetto è stato aggiornato" - -#: ../../mod/thing.php:153 -msgid "Object store: failed" -msgstr "Impossibile memorizzare l'oggetto." - -#: ../../mod/thing.php:157 -msgid "Thing added" -msgstr "L'Oggetto è stato aggiunto" - -#: ../../mod/thing.php:175 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:226 -msgid "Show Thing" -msgstr "Mostra l'Oggetto" - -#: ../../mod/thing.php:233 -msgid "item not found." -msgstr "non trovato." - -#: ../../mod/thing.php:261 -msgid "Edit Thing" -msgstr "Modifica l'Oggetto" - -#: ../../mod/thing.php:263 ../../mod/thing.php:310 -msgid "Select a profile" -msgstr "Scegli un profilo" - -#: ../../mod/thing.php:267 ../../mod/thing.php:313 -msgid "Post an activity" -msgstr "Pubblica un'attività" - -#: ../../mod/thing.php:267 ../../mod/thing.php:313 -msgid "Only sends to viewers of the applicable profile" -msgstr "Invia solo a chi segue il relativo canale" - -#: ../../mod/thing.php:269 ../../mod/thing.php:315 -msgid "Name of thing e.g. something" -msgstr "Nome dell'Oggetto" - -#: ../../mod/thing.php:271 ../../mod/thing.php:316 -msgid "URL of thing (optional)" -msgstr "Indirizzo web dell'Oggetto (opzionale)" - -#: ../../mod/thing.php:273 ../../mod/thing.php:317 -msgid "URL for photo of thing (optional)" -msgstr "Indirizzo di un'immagine dell'Oggetto (facoltativo)" - -#: ../../mod/thing.php:308 -msgid "Add Thing to your Profile" -msgstr "Aggiungi l'Oggetto al tuo profilo" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Elemento non disponibile." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" - -#: ../../mod/home.php:53 -msgid "Hubzilla - "The Network"" -msgstr "Hubzilla - "La tua rete"" - -#: ../../mod/home.php:124 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Il ridimensionamento dell'immagine è fallito." - -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ricarica la pagina con shift+control+r o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." - -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La dimensione dell'immagine supera il limite di %d" - -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto non disponibile." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Carica un file:" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "salta questo passaggio" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Modifica terminata" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Il caricamento dell'immagine è fallito." - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento del'immagine [%s] è fallito." - -#: ../../mod/block.php:27 ../../mod/page.php:33 +#: ../../mod/block.php:27 ../../mod/page.php:36 msgid "Invalid item." msgstr "Elemento non valido." -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29 msgid "Channel not found." msgstr "Canale non trovato." -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:106 -#: ../../mod/page.php:82 ../../index.php:241 +#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:214 +#: ../../mod/page.php:89 ../../index.php:237 msgid "Page not found." msgstr "Pagina non trovata." +#: ../../mod/id.php:11 +msgid "First Name" +msgstr "Nome" + +#: ../../mod/id.php:12 +msgid "Last Name" +msgstr "Cognome" + +#: ../../mod/id.php:13 +msgid "Nickname" +msgstr "Nick" + +#: ../../mod/id.php:14 +msgid "Full Name" +msgstr "Nome e cognome" + +#: ../../mod/id.php:20 +msgid "Profile Photo 16px" +msgstr "Foto del profilo 16px" + +#: ../../mod/id.php:21 +msgid "Profile Photo 32px" +msgstr "Foto del profilo 32px" + +#: ../../mod/id.php:22 +msgid "Profile Photo 48px" +msgstr "Foto del profilo 48px" + +#: ../../mod/id.php:23 +msgid "Profile Photo 64px" +msgstr "Foto del profilo 64px" + +#: ../../mod/id.php:24 +msgid "Profile Photo 80px" +msgstr "Foto del profilo 80px" + +#: ../../mod/id.php:25 +msgid "Profile Photo 128px" +msgstr "Foto del profilo 128px" + +#: ../../mod/id.php:26 +msgid "Timezone" +msgstr "Fuso orario" + +#: ../../mod/id.php:27 +msgid "Homepage URL" +msgstr "Indirizzo home page" + +#: ../../mod/id.php:29 +msgid "Birth Year" +msgstr "Anno di nascita" + +#: ../../mod/id.php:30 +msgid "Birth Month" +msgstr "Mese di nascita" + +#: ../../mod/id.php:31 +msgid "Birth Day" +msgstr "Giorno di nascita" + +#: ../../mod/id.php:32 +msgid "Birthdate" +msgstr "Data di nascita" + +#: ../../mod/id.php:33 ../../mod/profiles.php:431 +msgid "Gender" +msgstr "Sesso" + #: ../../mod/like.php:15 msgid "Like/Dislike" msgstr "Mi piace/Non mi piace" @@ -4755,166 +4364,626 @@ msgstr "Questa funzionalità è riservata agli iscritti." #: ../../mod/like.php:21 msgid "" -"Please login with your Hubzilla ID or register as a new Redmatrix.member to continue." -msgstr "Per favore accedi con il tuo identificativo Hubzilla o registrati su Hubzilla per continuare." +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 +#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165 msgid "Invalid request." msgstr "Richiesta non valida." -#: ../../mod/like.php:143 +#: ../../mod/like.php:142 msgid "thing" msgstr "Oggetto" -#: ../../mod/like.php:189 +#: ../../mod/like.php:188 msgid "Channel unavailable." msgstr "Canale non trovato." -#: ../../mod/like.php:228 +#: ../../mod/like.php:236 msgid "Previous action reversed." msgstr "Il comando precedente è stato annullato." -#: ../../mod/like.php:398 +#: ../../mod/like.php:414 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%3$s di %2$s: %1$s è d'accordo" -#: ../../mod/like.php:400 +#: ../../mod/like.php:416 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "%3$s di %2$s: %1$s non è d'accordo" -#: ../../mod/like.php:402 +#: ../../mod/like.php:418 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non ha preso una decisione" +msgstr "%3$s di %2$s: %1$s non si esprime" -#: ../../mod/like.php:404 +#: ../../mod/like.php:420 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%3$s di %2$s: %1$s partecipa" -#: ../../mod/like.php:406 +#: ../../mod/like.php:422 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "%3$s di %2$s: %1$s non partecipa" -#: ../../mod/like.php:408 +#: ../../mod/like.php:424 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%3$s di %2$s: %1$s forse partecipa" -#: ../../mod/like.php:492 +#: ../../mod/like.php:520 msgid "Action completed." msgstr "Comando completato." -#: ../../mod/like.php:493 +#: ../../mod/like.php:521 msgid "Thank you." msgstr "Grazie." -#: ../../mod/events.php:87 -msgid "Event can not end before it has started." -msgstr "Un evento non può terminare prima del suo inizio." +#: ../../mod/uexport.php:51 ../../mod/uexport.php:52 +msgid "Export Channel" +msgstr "Esporta il canale" -#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 -msgid "Unable to generate preview." -msgstr "Impossibile creare un'anteprima." - -#: ../../mod/events.php:96 -msgid "Event title and start time are required." -msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." - -#: ../../mod/events.php:114 -msgid "Event not found." -msgstr "Evento non trovato." - -#: ../../mod/events.php:396 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:418 -msgid "Edit event" -msgstr "Modifica l'evento" - -#: ../../mod/events.php:419 -msgid "Delete event" -msgstr "Elimina l'evento" - -#: ../../mod/events.php:473 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: ../../mod/events.php:474 ../../mod/photos.php:827 -msgid "Previous" -msgstr "Precendente" - -#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 -msgid "Next" -msgstr "Successivo" - -#: ../../mod/events.php:476 -msgid "Export" -msgstr "Esporta" - -#: ../../mod/events.php:504 -msgid "Event removed" -msgstr "Evento eliminato" - -#: ../../mod/events.php:507 -msgid "Failed to remove event" -msgstr "Impossibile eliminare l'evento" - -#: ../../mod/events.php:627 -msgid "Event details" -msgstr "Dettagli evento" - -#: ../../mod/events.php:628 -msgid "Starting date and Title are required." -msgstr "Titolo e data d'inizio sono obbligatori." - -#: ../../mod/events.php:630 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" - -#: ../../mod/events.php:632 -msgid "Event Starts:" -msgstr "Inizio:" - -#: ../../mod/events.php:639 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è rilevante" - -#: ../../mod/events.php:641 -msgid "Event Finishes:" -msgstr "Fine:" - -#: ../../mod/events.php:643 ../../mod/events.php:644 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" - -#: ../../mod/events.php:643 +#: ../../mod/uexport.php:53 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante per eventi che avvengono in base all'orario di un luogo particolare." +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." -#: ../../mod/events.php:645 -msgid "Description:" -msgstr "Descrizione:" +#: ../../mod/uexport.php:54 +msgid "Export Content" +msgstr "Esporta i contenuti" -#: ../../mod/events.php:649 -msgid "Title:" -msgstr "Titolo:" +#: ../../mod/uexport.php:55 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." -#: ../../mod/events.php:651 -msgid "Share this event" -msgstr "Condividi questo evento" +#: ../../mod/uexport.php:56 +msgid "Export your posts from a given year." +msgstr "Esporta i tuoi post a partire dall'anno scelto." -#: ../../mod/subthread.php:103 +#: ../../mod/uexport.php:58 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." + +#: ../../mod/uexport.php:59 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " + +#: ../../mod/uexport.php:60 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" + +#: ../../mod/uexport.php:61 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)" + +#: ../../mod/chatsvc.php:111 +msgid "Away" +msgstr "Assente" + +#: ../../mod/chatsvc.php:115 +msgid "Online" +msgstr "Online" + +#: ../../mod/tagger.php:96 +#, 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/common.php:10 +msgid "No channel." +msgstr "Nessun canale." + +#: ../../mod/common.php:39 +msgid "Common connections" +msgstr "Contatti in comune" + +#: ../../mod/common.php:44 +msgid "No connections in common." +msgstr "Nessun contatto in comune." + +#: ../../mod/ping.php:260 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" + +#: ../../mod/ping.php:308 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" + +#: ../../mod/ping.php:350 +msgid "posted an event" +msgstr "ha creato un evento" + +#: ../../mod/help.php:147 +msgid "Documentation Search" +msgstr "Ricerca nella guida" + +#: ../../mod/help.php:184 ../../mod/help.php:190 ../../mod/help.php:196 +msgid "Help:" +msgstr "Guida:" + +#: ../../mod/help.php:211 ../../index.php:234 +msgid "Not Found" +msgstr "Non disponibile" + +#: ../../mod/help.php:235 +msgid "$Projectname Documentation" +msgstr "Guida di $Projectname" + +#: ../../mod/removeme.php:29 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." + +#: ../../mod/removeme.php:57 +msgid "Remove This Channel" +msgstr "Elimina questo canale" + +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "WARNING: " +msgstr "ATTENZIONE:" + +#: ../../mod/removeme.php:58 +msgid "This channel will be completely removed from the network. " +msgstr "Questo canale sarà completamente eliminato dalla rete." + +#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Questo comando è definitivo e non può essere annullato!" + +#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: ../../mod/removeme.php:60 +msgid "Remove this channel and all its clones from the network" +msgstr "Rimuovi questo canale e tutti i suoi cloni dalla rete" + +#: ../../mod/removeme.php:60 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" + +#: ../../mod/removeme.php:61 ../../mod/settings.php:1109 +msgid "Remove Channel" +msgstr "Elimina questo canale" + +#: ../../mod/filer.php:48 +msgid "- select -" +msgstr "- scegli -" + +#: ../../mod/mitem.php:24 ../../mod/menu.php:140 +msgid "Menu not found." +msgstr "Menù non trovato." + +#: ../../mod/mitem.php:48 +msgid "Unable to create element." +msgstr "Impossibile creare l'elemento." + +#: ../../mod/mitem.php:72 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." + +#: ../../mod/mitem.php:88 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." + +#: ../../mod/mitem.php:116 ../../mod/menu.php:162 ../../mod/xchan.php:37 +msgid "Not found." +msgstr "Non trovato." + +#: ../../mod/mitem.php:149 ../../mod/mitem.php:222 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" + +#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1053 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: ../../mod/mitem.php:152 ../../mod/mitem.php:168 +msgid "Link Name" +msgstr "Nome link" + +#: ../../mod/mitem.php:153 ../../mod/mitem.php:227 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" + +#: ../../mod/mitem.php:153 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" + +#: ../../mod/mitem.php:154 ../../mod/mitem.php:228 +msgid "Use magic-auth if available" +msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" + +#: ../../mod/mitem.php:155 ../../mod/mitem.php:229 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" + +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Order in list" +msgstr "Ordine dell'elenco" + +#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti andranno in fondo all'elenco" + +#: ../../mod/mitem.php:157 +msgid "Submit and finish" +msgstr "Salva e termina" + +#: ../../mod/mitem.php:158 +msgid "Submit and continue" +msgstr "Salva e continua" + +#: ../../mod/mitem.php:166 +msgid "Menu:" +msgstr "Menu:" + +#: ../../mod/mitem.php:169 +msgid "Link Target" +msgstr "Destinazione link" + +#: ../../mod/mitem.php:172 +msgid "Edit menu" +msgstr "Modifica il menù" + +#: ../../mod/mitem.php:175 +msgid "Edit element" +msgstr "Modifica l'elemento" + +#: ../../mod/mitem.php:176 +msgid "Drop element" +msgstr "Elimina l'elemento" + +#: ../../mod/mitem.php:177 +msgid "New element" +msgstr "Nuovo elemento" + +#: ../../mod/mitem.php:178 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" + +#: ../../mod/mitem.php:179 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" + +#: ../../mod/mitem.php:180 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" + +#: ../../mod/mitem.php:181 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" + +#: ../../mod/mitem.php:198 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." + +#: ../../mod/mitem.php:211 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." + +#: ../../mod/mitem.php:213 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." + +#: ../../mod/mitem.php:220 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" + +#: ../../mod/mitem.php:226 +msgid "Link text" +msgstr "Testo del link" + +#: ../../mod/connedit.php:75 +msgid "Could not access contact record." +msgstr "Non è possibile accedere alle informazioni sul contatto." + +#: ../../mod/connedit.php:99 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." + +#: ../../mod/connedit.php:219 +msgid "Connection updated." +msgstr "Contatto aggiornato." + +#: ../../mod/connedit.php:221 +msgid "Failed to update connection record." +msgstr "Impossibile aggiornare le informazioni del contatto." + +#: ../../mod/connedit.php:268 +msgid "is now connected to" +msgstr "ha come nuovo contatto" + +#: ../../mod/connedit.php:391 +msgid "Could not access address book record." +msgstr "Impossibile accedere alle informazioni della rubrica." + +#: ../../mod/connedit.php:405 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Il canale non è disponibile - impossibile aggiornare." + +#: ../../mod/connedit.php:414 ../../mod/connedit.php:423 +#: ../../mod/connedit.php:432 ../../mod/connedit.php:441 +#: ../../mod/connedit.php:454 +msgid "Unable to set address book parameters." +msgstr "Impossibile impostare i parametri della rubrica." + +#: ../../mod/connedit.php:478 +msgid "Connection has been removed." +msgstr "Il contatto è stato rimosso." + +#: ../../mod/connedit.php:497 +#, php-format +msgid "View %s's profile" +msgstr "Guarda il profilo di %s" + +#: ../../mod/connedit.php:501 +msgid "Refresh Permissions" +msgstr "Modifica i permessi" + +#: ../../mod/connedit.php:504 +msgid "Fetch updated permissions" +msgstr "Guarda e modifica i permessi assegnati" + +#: ../../mod/connedit.php:508 +msgid "Recent Activity" +msgstr "Attività recenti" + +#: ../../mod/connedit.php:511 +msgid "View recent posts and comments" +msgstr "Leggi i post recenti e i commenti" + +#: ../../mod/connedit.php:515 ../../mod/admin.php:785 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../mod/connedit.php:515 ../../mod/admin.php:784 +msgid "Block" +msgstr "Blocca" + +#: ../../mod/connedit.php:518 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" + +#: ../../mod/connedit.php:519 +msgid "This connection is blocked!" +msgstr "Questa connessione è tra quelle bloccate!" + +#: ../../mod/connedit.php:523 +msgid "Unignore" +msgstr "Non ignorare" + +#: ../../mod/connedit.php:523 ../../mod/notifications.php:51 +msgid "Ignore" +msgstr "Ignora" + +#: ../../mod/connedit.php:526 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" + +#: ../../mod/connedit.php:527 +msgid "This connection is ignored!" +msgstr "Questa connessione è tra quelle ignorate!" + +#: ../../mod/connedit.php:531 +msgid "Unarchive" +msgstr "Non archiviare" + +#: ../../mod/connedit.php:531 +msgid "Archive" +msgstr "Archivia" + +#: ../../mod/connedit.php:534 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" + +#: ../../mod/connedit.php:535 +msgid "This connection is archived!" +msgstr "Questa connessione è tra quelle archiviate!" + +#: ../../mod/connedit.php:539 +msgid "Unhide" +msgstr "Non nascondere" + +#: ../../mod/connedit.php:539 +msgid "Hide" +msgstr "Nascondi" + +#: ../../mod/connedit.php:542 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" + +#: ../../mod/connedit.php:543 +msgid "This connection is hidden!" +msgstr "Questa connessione è tra quelle nascoste!" + +#: ../../mod/connedit.php:550 +msgid "Delete this connection" +msgstr "Elimina questo contatto" + +#: ../../mod/connedit.php:631 +msgid "Approve this connection" +msgstr "Approva questo contatto" + +#: ../../mod/connedit.php:631 +msgid "Accept connection to allow communication" +msgstr "Entra in contatto per poter comunicare" + +#: ../../mod/connedit.php:636 +msgid "Set Affinity" +msgstr "Scegli l'affinità" + +#: ../../mod/connedit.php:639 +msgid "Set Profile" +msgstr "Scegli il profilo da mostrare" + +#: ../../mod/connedit.php:642 +msgid "Set Affinity & Profile" +msgstr "Affinità e profilo" + +#: ../../mod/connedit.php:659 +msgid "Apply these permissions automatically" +msgstr "Applica automaticamente questi permessi" + +#: ../../mod/connedit.php:661 +msgid "This connection's address is" +msgstr "Indirizzo di questo contatto" + +#: ../../mod/connedit.php:664 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." + +#: ../../mod/connedit.php:666 +msgid "Slide to adjust your degree of friendship" +msgstr "Trascina per restringere il grado di amicizia da mostrare" + +#: ../../mod/connedit.php:668 +msgid "Slide to adjust your rating" +msgstr "Trascina per cambiare la tua valutazione" + +#: ../../mod/connedit.php:669 ../../mod/connedit.php:674 +msgid "Optionally explain your rating" +msgstr "Commento opzionale" + +#: ../../mod/connedit.php:671 +msgid "Custom Filter" +msgstr "Filtro personalizzato" + +#: ../../mod/connedit.php:672 +msgid "Only import posts with this text" +msgstr "Importa solo i post che contengono queste parole chiave" + +#: ../../mod/connedit.php:672 ../../mod/connedit.php:673 +msgid "" +"words one per line or #tags or /patterns/, leave blank to import all posts" +msgstr "una parola per riga, oppure #tag o /pattern/ oppure lascia vuoto per importare tutto" + +#: ../../mod/connedit.php:673 +msgid "Do not import posts with this text" +msgstr "Non importare i post con queste parole chiave" + +#: ../../mod/connedit.php:675 +msgid "This information is public!" +msgstr "Questa informazione è pubblica!" + +#: ../../mod/connedit.php:680 +msgid "Connection Pending Approval" +msgstr "Contatti in attesa di approvazione" + +#: ../../mod/connedit.php:681 +msgid "Connection Request" +msgstr "Richiesta di entrare in contatto" + +#: ../../mod/connedit.php:682 +#, php-format +msgid "" +"(%s) would like to connect with you. Please approve this connection to allow" +" communication." +msgstr "(%s) vorrebbe entrare in contatto con te. Per permettere la comunicazione è necessario che tu approvi." + +#: ../../mod/connedit.php:683 ../../mod/admin.php:781 +msgid "Approve" +msgstr "Approva" + +#: ../../mod/connedit.php:684 +msgid "Approve Later" +msgstr "Approva più tardi" + +#: ../../mod/connedit.php:687 +msgid "inherited" +msgstr "derivato" + +#: ../../mod/connedit.php:689 +#, 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 dopo aver effettuato l'accesso." + +#: ../../mod/connedit.php:691 +msgid "Their Settings" +msgstr "Permessi concessi a te" + +#: ../../mod/connedit.php:692 +msgid "My Settings" +msgstr "Permessi che concedo" + +#: ../../mod/connedit.php:694 +msgid "Individual Permissions" +msgstr "Permessi individuali" + +#: ../../mod/connedit.php:695 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." + +#: ../../mod/connedit.php:696 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." + +#: ../../mod/connedit.php:697 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" + +#: ../../mod/mood.php:132 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" + +#: ../../mod/magic.php:69 +msgid "Hub not found." +msgstr "Hub non trovato." + +#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" + +#: ../../mod/pconfig.php:49 +msgid "Configuration Editor" +msgstr "Editor di configurazione" + +#: ../../mod/pconfig.php:50 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." #: ../../mod/pubsites.php:16 msgid "Public Sites" @@ -4922,12 +4991,12 @@ msgstr "Siti pubblici" #: ../../mod/pubsites.php:19 msgid "" -"The listed sites allow public registration into the Hubzilla. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Gli indirizzi elencati permettono la registrazione su Hubzilla. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere diverse tipologie di abbonamento. Eventualmente potrai trovare maggiori informazioni visitando ciascun sito." +"The listed sites allow public registration for the $Projectname network. All" +" sites in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some sites may require subscription or" +" provide tiered service plans. The provider links may " +"provide additional details." +msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." #: ../../mod/pubsites.php:25 msgid "Rate this hub" @@ -4961,833 +5030,1184 @@ msgstr "Valuta" msgid "View ratings" msgstr "Vedi le valutazioni" -#: ../../mod/rpost.php:131 ../../mod/editpost.php:42 +#: ../../mod/filestorage.php:82 +msgid "Permission Denied." +msgstr "Permesso negato." + +#: ../../mod/filestorage.php:98 +msgid "File not found." +msgstr "File non trovato." + +#: ../../mod/filestorage.php:141 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" + +#: ../../mod/filestorage.php:150 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" + +#: ../../mod/filestorage.php:151 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" + +#: ../../mod/filestorage.php:152 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" + +#: ../../mod/filestorage.php:154 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/incolla questo codice per far comparire il file in un post" + +#: ../../mod/filestorage.php:155 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" + +#: ../../mod/filestorage.php:157 +msgid "Share this file" +msgstr "Condividi questo file" + +#: ../../mod/filestorage.php:158 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" + +#: ../../mod/filestorage.php:159 +msgid "Notify your contacts about this file" +msgstr "Notifica ai contatti che hai caricato questo file" + +#: ../../mod/layouts.php:121 ../../mod/layouts.php:179 +#: ../../mod/editlayout.php:161 +msgid "Layout Name" +msgstr "Nome layout" + +#: ../../mod/layouts.php:124 ../../mod/editlayout.php:159 +msgid "Layout Description (Optional)" +msgstr "Descrizione del layout (facoltativa)" + +#: ../../mod/layouts.php:176 +msgid "Comanche page description language help" +msgstr "Guida di Comanche Page Description Language" + +#: ../../mod/layouts.php:180 +msgid "Layout Description" +msgstr "Descrizione del layout" + +#: ../../mod/layouts.php:185 +msgid "Download PDL file" +msgstr "Scarica il file PDL" + +#: ../../mod/poke.php:164 +msgid "Poke/Prod" +msgstr "Poke/Prod" + +#: ../../mod/poke.php:165 +msgid "poke, prod or do other things to somebody" +msgstr "Manda un poke, un prod o altro" + +#: ../../mod/poke.php:166 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../mod/poke.php:167 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" + +#: ../../mod/poke.php:170 +msgid "Make this post private" +msgstr "Rendi privato questo post" + +#: ../../mod/network.php:91 +msgid "No such group" +msgstr "Impossibile trovare l'insieme" + +#: ../../mod/network.php:131 +msgid "No such channel" +msgstr "Canale sconosciuto" + +#: ../../mod/network.php:136 +msgid "forum" +msgstr "forum" + +#: ../../mod/network.php:148 +msgid "Search Results For:" +msgstr "Cerca risultati con:" + +#: ../../mod/network.php:207 +msgid "Collection is empty" +msgstr "L'insieme di canali è vuoto" + +#: ../../mod/network.php:216 +msgid "Collection: " +msgstr "Insieme:" + +#: ../../mod/network.php:242 +msgid "Invalid connection." +msgstr "Contatto non valido." + +#: ../../mod/chat.php:19 ../../mod/channel.php:25 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." + +#: ../../mod/chat.php:171 +msgid "Room not found" +msgstr "Chat non trovata" + +#: ../../mod/chat.php:182 +msgid "Leave Room" +msgstr "Lascia la chat" + +#: ../../mod/chat.php:183 +msgid "Delete This Room" +msgstr "Elimina questa chat" + +#: ../../mod/chat.php:184 +msgid "I am away right now" +msgstr "Non sono presente" + +#: ../../mod/chat.php:185 +msgid "I am online" +msgstr "Sono online" + +#: ../../mod/chat.php:187 +msgid "Bookmark this room" +msgstr "Aggiungi questa chat ai segnalibri" + +#: ../../mod/chat.php:205 ../../mod/chat.php:227 +msgid "New Chatroom" +msgstr "Nuova chat" + +#: ../../mod/chat.php:206 +msgid "Chatroom Name" +msgstr "Nome della chat" + +#: ../../mod/chat.php:223 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" + +#: ../../mod/search.php:209 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" + +#: ../../mod/search.php:211 +#, php-format +msgid "Search results for: %s" +msgstr "Risultati ricerca: %s" + +#: ../../mod/message.php:34 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: ../../mod/channel.php:97 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." + +#: ../../mod/editpost.php:20 ../../mod/editblock.php:78 +#: ../../mod/editblock.php:94 ../../mod/editlayout.php:76 +#: ../../mod/editwebpage.php:77 +msgid "Item not found" +msgstr "Elemento non trovato" + +#: ../../mod/editpost.php:31 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" + +#: ../../mod/editpost.php:55 +msgid "Delete item?" +msgstr "Eliminare questo elemento?" + +#: ../../mod/editpost.php:122 ../../mod/editblock.php:145 +#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:185 +msgid "Insert YouTube video" +msgstr "Inserisci video da YouTube" + +#: ../../mod/editpost.php:123 ../../mod/editblock.php:146 +#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:186 +msgid "Insert Vorbis [.ogg] video" +msgstr "Inserisci video Vorbis [.ogg]" + +#: ../../mod/editpost.php:124 ../../mod/editblock.php:147 +#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:187 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Inserisci audio Vorbis [.ogg]" + +#: ../../mod/editpost.php:165 ../../mod/rpost.php:128 msgid "Edit post" -msgstr "Modifica articolo" +msgstr "Modifica post" -#: ../../mod/dav.php:121 -msgid "Hubzilla channel" -msgstr "Canale Hubzilla" +#: ../../mod/dreport.php:15 +msgid "Invalid message" +msgstr "Messaggio non valido" -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "L'insieme di canali è stato creato." +#: ../../mod/dreport.php:25 +msgid "no results" +msgstr "nessun risultato" -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Impossibile creare l'insieme." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Insieme aggiornato." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Crea un insieme di canali." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Nome dell'insieme:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "I membri potranno vedere gli altri canali dell'insieme" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Insieme rimosso." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Impossibile rimuovere l'insieme." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Modifica l'insieme" - -#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 -msgid "Members" -msgstr "Membri" - -#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" - -#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." - -#: ../../mod/siteinfo.php:112 +#: ../../mod/dreport.php:30 #, php-format -msgid "Version %s" -msgstr "Versione %s" +msgid "Delivery report for %1$s" +msgstr "Rapporto di consegna - %1$s" -#: ../../mod/siteinfo.php:133 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti installati:" +#: ../../mod/dreport.php:39 +msgid "channel sync processed" +msgstr "sincronizzazione del canale effettuata" -#: ../../mod/siteinfo.php:146 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente installato" +#: ../../mod/dreport.php:43 +msgid "queued" +msgstr "in coda" -#: ../../mod/siteinfo.php:155 -msgid "Red" -msgstr "Hubzilla" +#: ../../mod/dreport.php:47 +msgid "posted" +msgstr "inviato" -#: ../../mod/siteinfo.php:156 -msgid "" -"This is a hub of hubzilla - a global cooperative network of decentralized " -"privacy enhanced websites." -msgstr "Questo è un hub di Hubzilla - una rete cooperativa e decentralizzata di siti ad elevata privacy. " +#: ../../mod/dreport.php:51 +msgid "accepted for delivery" +msgstr "accettato per la spedizione" -#: ../../mod/siteinfo.php:158 -msgid "Tag: " -msgstr "Tag: " +#: ../../mod/dreport.php:55 +msgid "updated" +msgstr "aggiornato" -#: ../../mod/siteinfo.php:160 -msgid "Last background fetch: " -msgstr "Ultima acquisizione:" +#: ../../mod/dreport.php:58 +msgid "update ignored" +msgstr "aggiornamento ignorato" -#: ../../mod/siteinfo.php:163 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" +#: ../../mod/dreport.php:61 +msgid "permission denied" +msgstr "permessi non sufficienti" -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit redmatrix.me to learn more" -" about the Hubzilla." -msgstr "Visita Redmatrix.me per scoprire cosa è Hubzilla." +#: ../../mod/editblock.php:118 +msgid "Delete block?" +msgstr "Vuoi eliminare questo riquadro?" -#: ../../mod/siteinfo.php:165 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" +#: ../../mod/editblock.php:180 +msgid "Edit Block" +msgstr "Modifica il riquadro" -#: ../../mod/siteinfo.php:168 -msgid "" -"Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"hubzilla\" at librelist - dot com" +#: ../../mod/home.php:57 ../../mod/home.php:63 ../../mod/siteinfo.php:157 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../mod/siteinfo.php:170 -msgid "Site Administrators" -msgstr "Amministratori del sito" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Guida:" - -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" -msgstr "Non disponibile" - -#: ../../mod/setup.php:166 -msgid "Hubzilla Server - Setup" -msgstr "Hubzilla Server - Installazione" - -#: ../../mod/setup.php:172 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." - -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." - -#: ../../mod/setup.php:183 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." - -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." - -#: ../../mod/setup.php:194 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." - -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." - -#: ../../mod/setup.php:261 -msgid "System check" -msgstr "Verifica del sistema" - -#: ../../mod/setup.php:266 -msgid "Check again" -msgstr "Verifica di nuovo" - -#: ../../mod/setup.php:289 -msgid "Database connection" -msgstr "Connessione al database" - -#: ../../mod/setup.php:290 -msgid "" -"In order to install Hubzilla we need to know how to connect to your " -"database." -msgstr "Per installare Hubzilla è necessario conoscere i parametri di connessione al database." - -#: ../../mod/setup.php:291 -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/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." - -#: ../../mod/setup.php:296 -msgid "Database Server Name" -msgstr "Server del database" - -#: ../../mod/setup.php:296 -msgid "Default is localhost" -msgstr "'localhost' è il predefinito" - -#: ../../mod/setup.php:297 -msgid "Database Port" -msgstr "Port del database" - -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" - -#: ../../mod/setup.php:298 -msgid "Database Login Name" -msgstr "Utente database" - -#: ../../mod/setup.php:299 -msgid "Database Login Password" -msgstr "Password utente database" - -#: ../../mod/setup.php:300 -msgid "Database Name" -msgstr "Nome database" - -#: ../../mod/setup.php:301 -msgid "Database Type" -msgstr "Tipo database" - -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" - -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." - -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" -msgstr "URL completo del sito" - -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." -msgstr "Se disponibile, usa l'indirizzo SSL (https)." - -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo sito web" - -#: ../../mod/setup.php:335 -msgid "Site settings" -msgstr "Impostazioni del sito" - -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" - -#: ../../mod/setup.php:396 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." - -#: ../../mod/setup.php:400 -msgid "PHP executable path" -msgstr "Path del comando PHP" - -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." - -#: ../../mod/setup.php:405 -msgid "Command line PHP" -msgstr "PHP da riga di comando" - -#: ../../mod/setup.php:414 -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/setup.php:415 -msgid "This is required for message delivery to work." -msgstr "E' necessario perché funzioni la consegna dei messaggi." - -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di criptazione" - -#: ../../mod/setup.php:439 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" - -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" - -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" - -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" - -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" -msgstr "modulo PHP per mysqli oppure prostgres" - -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" - -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" -msgstr "modulo PHP mcrypt" - -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" - -#: ../../mod/setup.php:458 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" - -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" - -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." - -#: ../../mod/setup.php:476 -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 installato." - -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." - -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" - -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." - -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Errore: il modulo PHP mcrypt è richiesto ma non installato." - -#: ../../mod/setup.php:508 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." - -#: ../../mod/setup.php:509 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." - -#: ../../mod/setup.php:510 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." - -#: ../../mod/setup.php:511 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." - -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" - -#: ../../mod/setup.php:524 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." - -#: ../../mod/setup.php:525 +#: ../../mod/home.php:73 #, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura a %s sotto la cartella di installazione di Hubzilla." +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" -#: ../../mod/setup.php:526 ../../mod/setup.php:544 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Assicurati che il tuo web server sia in esecuzione da parte di un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." +#: ../../mod/item.php:174 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../mod/setup.php:527 +#: ../../mod/item.php:407 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." + +#: ../../mod/item.php:447 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." + +#: ../../mod/item.php:896 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." + +#: ../../mod/item.php:1163 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." + +#: ../../mod/item.php:1170 #, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." -#: ../../mod/setup.php:530 +#: ../../mod/item.php:1177 #, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." -#: ../../mod/setup.php:543 +#: ../../mod/oexchange.php:23 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." + +#: ../../mod/oexchange.php:37 +msgid "Post successful." +msgstr "Inviato!" + +#: ../../mod/admin.php:52 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." + +#: ../../mod/admin.php:160 +msgid "# Accounts" +msgstr "# account" + +#: ../../mod/admin.php:161 +msgid "# blocked accounts" +msgstr "# account bloccati" + +#: ../../mod/admin.php:162 +msgid "# expired accounts" +msgstr "# account scaduti" + +#: ../../mod/admin.php:163 +msgid "# expiring accounts" +msgstr "# account in scadenza" + +#: ../../mod/admin.php:174 +msgid "# Channels" +msgstr "# canali" + +#: ../../mod/admin.php:175 +msgid "# primary" +msgstr "# primari" + +#: ../../mod/admin.php:176 +msgid "# clones" +msgstr "# cloni" + +#: ../../mod/admin.php:182 +msgid "Message queues" +msgstr "Coda messaggi in uscita" + +#: ../../mod/admin.php:198 ../../mod/admin.php:409 ../../mod/admin.php:506 +#: ../../mod/admin.php:774 ../../mod/admin.php:938 ../../mod/admin.php:1030 +#: ../../mod/admin.php:1070 ../../mod/admin.php:1230 ../../mod/admin.php:1264 +#: ../../mod/admin.php:1349 +msgid "Administration" +msgstr "Amministrazione" + +#: ../../mod/admin.php:199 +msgid "Summary" +msgstr "Riepilogo" + +#: ../../mod/admin.php:202 +msgid "Registered accounts" +msgstr "Account creati" + +#: ../../mod/admin.php:203 ../../mod/admin.php:510 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" + +#: ../../mod/admin.php:204 +msgid "Registered channels" +msgstr "Canali creati" + +#: ../../mod/admin.php:205 ../../mod/admin.php:511 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: ../../mod/admin.php:206 +msgid "Version" +msgstr "Versione" + +#: ../../mod/admin.php:321 +msgid "Site settings updated." +msgstr "Impostazioni del sito salvate correttamente." + +#: ../../mod/admin.php:358 ../../mod/settings.php:790 +msgid "mobile" +msgstr "mobile" + +#: ../../mod/admin.php:360 +msgid "experimental" +msgstr "sperimentale" + +#: ../../mod/admin.php:362 +msgid "unsupported" +msgstr "non supportato" + +#: ../../mod/admin.php:387 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" + +#: ../../mod/admin.php:393 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" + +#: ../../mod/admin.php:394 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" + +#: ../../mod/admin.php:395 +msgid "My site has free access only" +msgstr "È un servizio gratuito" + +#: ../../mod/admin.php:396 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" + +#: ../../mod/admin.php:412 ../../mod/register.php:207 +msgid "Registration" +msgstr "Registrazione" + +#: ../../mod/admin.php:413 +msgid "File upload" +msgstr "Caricamento file" + +#: ../../mod/admin.php:414 +msgid "Policies" +msgstr "Politiche" + +#: ../../mod/admin.php:419 +msgid "Site name" +msgstr "Nome del sito" + +#: ../../mod/admin.php:420 +msgid "Banner/Logo" +msgstr "Banner o logo" + +#: ../../mod/admin.php:421 +msgid "Administrator Information" +msgstr "Informazioni sull'amministratore" + +#: ../../mod/admin.php:421 msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Hubzilla salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di Hubzilla" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "l'archivio è scrivibile" +#: ../../mod/admin.php:422 +msgid "System language" +msgstr "Lingua di sistema" -#: ../../mod/setup.php:577 +#: ../../mod/admin.php:423 +msgid "System theme" +msgstr "Tema di sistema" + +#: ../../mod/admin.php:423 msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" -#: ../../mod/setup.php:578 +#: ../../mod/admin.php:424 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" + +#: ../../mod/admin.php:424 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" + +#: ../../mod/admin.php:426 +msgid "Allow Feeds as Connections" +msgstr "Permetti di aggiungere i feed come contatti" + +#: ../../mod/admin.php:426 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso delle risorse di sistema!)" + +#: ../../mod/admin.php:427 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" + +#: ../../mod/admin.php:427 msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!" +"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/setup.php:579 +#: ../../mod/admin.php:428 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" + +#: ../../mod/admin.php:429 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" + +#: ../../mod/admin.php:430 +msgid "Register text" +msgstr "Testo di registrazione" + +#: ../../mod/admin.php:430 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: ../../mod/admin.php:431 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" + +#: ../../mod/admin.php:431 msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." -#: ../../mod/setup.php:580 +#: ../../mod/admin.php:432 +msgid "Preserve site homepage URL" +msgstr "Conserva l'URL della homepage" + +#: ../../mod/admin.php:432 msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." -#: ../../mod/setup.php:581 +#: ../../mod/admin.php:433 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" + +#: ../../mod/admin.php:433 msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." -#: ../../mod/setup.php:582 +#: ../../mod/admin.php:434 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" + +#: ../../mod/admin.php:434 msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." +"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 virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" +#: ../../mod/admin.php:435 +msgid "Allowed email domains" +msgstr "Domini email consentiti" -#: ../../mod/setup.php:590 +#: ../../mod/admin.php:435 msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" +"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. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" +#: ../../mod/admin.php:436 +msgid "Not allowed email domains" +msgstr "Domini email non consentiti" -#: ../../mod/setup.php:602 +#: ../../mod/admin.php:436 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 puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +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/setup.php:625 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../mod/admin.php:437 +msgid "Block public" +msgstr "Blocca pagine pubbliche" -#: ../../mod/setup.php:660 -msgid "

What next

" -msgstr "

I prossimi passi

" - -#: ../../mod/setup.php:661 +#: ../../mod/admin.php:437 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Nessun canale." +#: ../../mod/admin.php:438 +msgid "Verify Email Addresses" +msgstr "Verifica l'indirizzo email" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Contatti in comune" +#: ../../mod/admin.php:438 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Nessun contatto in comune." +#: ../../mod/admin.php:439 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" -#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Questo sito non è un server di elenchi pubblici" +#: ../../mod/admin.php:439 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per mostrare nell'elenco pubblico tutti i profili registrati su questo sito." -#: ../../mod/connections.php:37 ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "Non è possibile accedere alle informazioni sul contatto." +#: ../../mod/admin.php:440 +msgid "Disable discovery tab" +msgstr "Disabilita la funzione 'scopri'" -#: ../../mod/connections.php:51 ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." +#: ../../mod/admin.php:440 +msgid "" +"Remove the tab in the network view with public content pulled from sources " +"chosen for this site." +msgstr "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti." -#: ../../mod/connections.php:94 ../../mod/connedit.php:214 -msgid "Connection updated." -msgstr "Contatto aggiornato." +#: ../../mod/admin.php:441 +msgid "login on Homepage" +msgstr "Mostra il login sulla homepage" -#: ../../mod/connections.php:96 ../../mod/connedit.php:216 -msgid "Failed to update connection record." -msgstr "Impossibile aggiornare le informazioni del contatto." +#: ../../mod/admin.php:441 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" -msgstr "Bloccati" +#: ../../mod/admin.php:443 +msgid "Proxy user" +msgstr "Utente proxy" -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" -msgstr "Ignorati" +#: ../../mod/admin.php:444 +msgid "Proxy URL" +msgstr "URL proxy" -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" -msgstr "Nascosti" +#: ../../mod/admin.php:445 +msgid "Network timeout" +msgstr "Timeout rete" -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" -msgstr "Archiviati" +#: ../../mod/admin.php:445 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." -#: ../../mod/connections.php:271 -msgid "Suggest new connections" -msgstr "Suggerisci nuovi contatti" +#: ../../mod/admin.php:446 +msgid "Delivery interval" +msgstr "Recapito ritardato" -#: ../../mod/connections.php:274 -msgid "New Connections" -msgstr "Nuovi contatti" +#: ../../mod/admin.php:446 +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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" +#: ../../mod/admin.php:447 +msgid "Deliveries per process" +msgstr "Tentativi di recapito per processo" -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Tutti i contatti" +#: ../../mod/admin.php:447 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" -#: ../../mod/connections.php:283 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" +#: ../../mod/admin.php:448 +msgid "Poll interval" +msgstr "Intervallo di polling" -#: ../../mod/connections.php:286 -msgid "Unblocked" -msgstr "Non bloccati" +#: ../../mod/admin.php:448 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" -msgstr "Mostra solo i contatti non bloccati" +#: ../../mod/admin.php:449 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" +#: ../../mod/admin.php:449 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" +#: ../../mod/admin.php:450 +msgid "Expiration period in days for imported (matrix/network) content" +msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" -#: ../../mod/connections.php:310 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" +#: ../../mod/admin.php:450 +msgid "0 for no expiration of imported content" +msgstr "0 per non avere scadenza" -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" +#: ../../mod/admin.php:498 +msgid "No server found" +msgstr "Server non trovato" -#: ../../mod/connections.php:372 +#: ../../mod/admin.php:505 ../../mod/admin.php:788 +msgid "ID" +msgstr "ID" + +#: ../../mod/admin.php:505 +msgid "for channel" +msgstr "per il canale" + +#: ../../mod/admin.php:505 +msgid "on server" +msgstr "sul server" + +#: ../../mod/admin.php:505 +msgid "Status" +msgstr "Stato" + +#: ../../mod/admin.php:507 +msgid "Server" +msgstr "Server" + +#: ../../mod/admin.php:524 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." + +#: ../../mod/admin.php:534 #, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." -#: ../../mod/connections.php:373 -msgid "Edit connection" -msgstr "Modifica il contatto" - -#: ../../mod/connections.php:411 -msgid "Search your connections" -msgstr "Cerca tra i contatti" - -#: ../../mod/connections.php:412 -msgid "Finding: " -msgstr "Ricerca: " - -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "pagina web" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "riquadro" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "layout" - -#: ../../mod/impel.php:117 +#: ../../mod/admin.php:537 #, php-format -msgid "%s element installed" -msgstr "%s elemento installato" +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." -#: ../../mod/tagger.php:96 +#: ../../mod/admin.php:541 #, 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" +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." -#: ../../mod/cloud.php:120 -msgid "Hubzilla - Guests: Username: {your email address}, Password: +++" -msgstr "Accesso a Hubzilla. {Inserisci l'email con cui sei registrato e la password.}" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Album non trovato." - -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Elimina album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:930 -msgid "Delete Photo" -msgstr "Elimina foto" - -#: ../../mod/photos.php:429 ../../mod/search.php:13 ../../mod/display.php:13 -#: ../../mod/ratings.php:82 ../../mod/directory.php:47 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Accesso pubblico negato." - -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." - -#: ../../mod/photos.php:523 +#: ../../mod/admin.php:544 #, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" -#: ../../mod/photos.php:526 +#: ../../mod/admin.php:560 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: ../../mod/admin.php:564 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." + +#: ../../mod/admin.php:566 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." + +#: ../../mod/admin.php:567 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." + +#: ../../mod/admin.php:599 +msgid "Queue Statistics" +msgstr "Statistiche della coda" + +#: ../../mod/admin.php:600 +msgid "Total Entries" +msgstr "Totale" + +#: ../../mod/admin.php:601 +msgid "Priority" +msgstr "Priorità" + +#: ../../mod/admin.php:602 +msgid "Destination URL" +msgstr "URL di destinazione" + +#: ../../mod/admin.php:603 +msgid "Mark hub permanently offline" +msgstr "Questo hub è definitivamente offline" + +#: ../../mod/admin.php:604 +msgid "Empty queue for this hub" +msgstr "Svuota la coda per questo hub" + +#: ../../mod/admin.php:605 +msgid "Last known contact" +msgstr "Ultimo scambio dati" + +#: ../../mod/admin.php:641 #, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "Modificato il blocco su %s account" +msgstr[1] "Modificato il blocco verso %s" -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../mod/admin.php:649 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account eliminato" +msgstr[1] "%s account eliminati" -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:915 -msgid "Enter a new album name" -msgstr "Inserisci il nome di un nuovo album" +#: ../../mod/admin.php:685 +msgid "Account not found" +msgstr "Account non trovato" -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:916 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" +#: ../../mod/admin.php:697 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' eliminato" -#: ../../mod/photos.php:556 -msgid "Create a status post for this upload" -msgstr "Pubblica l'oggetto caricato sulla bacheca" +#: ../../mod/admin.php:705 +#, php-format +msgid "Account '%s' blocked" +msgstr "Aggiunto un blocco verso '%s'" -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" +#: ../../mod/admin.php:713 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Rimosso il blocco verso '%s'" -#: ../../mod/photos.php:625 ../../mod/photos.php:1157 -#: ../../mod/photos.php:1173 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../mod/admin.php:775 ../../mod/admin.php:787 +msgid "Users" +msgstr "Utenti" -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Prima i più recenti" +#: ../../mod/admin.php:777 ../../mod/admin.php:941 +msgid "select all" +msgstr "seleziona tutti" -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" +#: ../../mod/admin.php:778 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" -#: ../../mod/photos.php:675 ../../mod/photos.php:1205 -msgid "View Photo" -msgstr "Guarda la foto" +#: ../../mod/admin.php:779 +msgid "Request date" +msgstr "Data richiesta" -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../mod/admin.php:780 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." +#: ../../mod/admin.php:782 +msgid "Deny" +msgstr "Nega" -#: ../../mod/photos.php:751 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../mod/admin.php:788 +msgid "Register date" +msgstr "Data registrazione" -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../mod/admin.php:788 +msgid "Last login" +msgstr "Ultimo accesso" -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../mod/admin.php:788 +msgid "Expires" +msgstr "Con scadenza" -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" +#: ../../mod/admin.php:788 +msgid "Service Class" +msgstr "Classe dell'account" -#: ../../mod/photos.php:909 -msgid "Edit photo" -msgstr "Modifica la foto" +#: ../../mod/admin.php:790 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../mod/photos.php:911 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" +#: ../../mod/admin.php:791 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../mod/photos.php:912 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" +#: ../../mod/admin.php:827 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" -#: ../../mod/photos.php:919 -msgid "Caption" -msgstr "Titolo" +#: ../../mod/admin.php:836 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s canale permette/non permette codice nei contenuti" +msgstr[1] "%s canali permettono/non permettono codice nei contenuti" -#: ../../mod/photos.php:921 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../mod/admin.php:843 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" -#: ../../mod/photos.php:925 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../mod/admin.php:863 +msgid "Channel not found" +msgstr "Canale non trovato" -#: ../../mod/photos.php:928 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" +#: ../../mod/admin.php:874 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" -#: ../../mod/photos.php:1120 -msgid "In This Photo:" -msgstr "In questa foto:" +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" -#: ../../mod/photos.php:1125 -msgid "Map" -msgstr "Mappa" +#: ../../mod/admin.php:886 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" -#: ../../mod/photos.php:1211 -msgid "View Album" -msgstr "Guarda l'album" +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Il canale '%s' permette codice nei contenuti" -#: ../../mod/photos.php:1234 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../mod/admin.php:897 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: ../../mod/admin.php:943 +msgid "Censor" +msgstr "Applica una censura" -#: ../../mod/match.php:31 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." +#: ../../mod/admin.php:944 +msgid "Uncensor" +msgstr "Rimuovi la censura" -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "interessi personali:" +#: ../../mod/admin.php:945 +msgid "Allow Code" +msgstr "Permetti codice nei contenuti" -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../mod/admin.php:946 +msgid "Disallow Code" +msgstr "Non permettere codice nei contenuti" -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Assente" +#: ../../mod/admin.php:948 +msgid "UID" +msgstr "UID" -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" +#: ../../mod/admin.php:948 ../../mod/profiles.php:447 +msgid "Address" +msgstr "Indirizzo" -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Scegli una cartella di segnalibri" +#: ../../mod/admin.php:950 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Salva segnalibro" +#: ../../mod/admin.php:951 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL del segnalibro" +#: ../../mod/admin.php:991 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 +#: ../../mod/admin.php:995 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." + +#: ../../mod/admin.php:1005 ../../mod/admin.php:1203 +msgid "Disable" +msgstr "Disattiva" + +#: ../../mod/admin.php:1008 ../../mod/admin.php:1205 +msgid "Enable" +msgstr "Attiva" + +#: ../../mod/admin.php:1032 ../../mod/admin.php:1232 +msgid "Toggle" +msgstr "Attiva/disattiva" + +#: ../../mod/admin.php:1040 ../../mod/admin.php:1242 +msgid "Author: " +msgstr "Autore:" + +#: ../../mod/admin.php:1041 ../../mod/admin.php:1243 +msgid "Maintainer: " +msgstr "Gestore:" + +#: ../../mod/admin.php:1168 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: ../../mod/admin.php:1224 +msgid "Screenshot" +msgstr "Istantanea dello schermo" + +#: ../../mod/admin.php:1270 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: ../../mod/admin.php:1271 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: ../../mod/admin.php:1295 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." + +#: ../../mod/admin.php:1352 +msgid "Clear" +msgstr "Pulisci" + +#: ../../mod/admin.php:1358 +msgid "Debugging" +msgstr "Debugging" + +#: ../../mod/admin.php:1359 +msgid "Log file" +msgstr "File di log" + +#: ../../mod/admin.php:1359 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato Hubzilla." + +#: ../../mod/admin.php:1360 +msgid "Log level" +msgstr "Livello di log" + +#: ../../mod/admin.php:1406 +msgid "New Profile Field" +msgstr "Nuovo campo del profilo" + +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "Field nickname" +msgstr "Nome breve del campo" + +#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +msgid "System name of field" +msgstr "Nome di sistema del campo" + +#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 +msgid "Input type" +msgstr "Tipo di dati" + +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Field Name" +msgstr "Nome del campo" + +#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +msgid "Label on profile pages" +msgstr "Etichetta da mostrare sulla pagina del profilo" + +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Help text" +msgstr "Testo di aiuto" + +#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +msgid "Additional info (optional)" +msgstr "Informazioni aggiuntive (opzionali)" + +#: ../../mod/admin.php:1420 +msgid "Field definition not found" +msgstr "Impossibile trovare la definizione del campo" + +#: ../../mod/admin.php:1426 +msgid "Edit Profile Field" +msgstr "Modifica campo del profilo" + +#: ../../mod/appman.php:28 ../../mod/appman.php:44 +msgid "App installed." +msgstr "App installata" + +#: ../../mod/appman.php:37 +msgid "Malformed app." +msgstr "L'app contiene errori" + +#: ../../mod/appman.php:80 +msgid "Embed code" +msgstr "Inserisci il codice" + +#: ../../mod/appman.php:86 +msgid "Edit App" +msgstr "Modifica app" + +#: ../../mod/appman.php:86 +msgid "Create App" +msgstr "Crea una app" + +#: ../../mod/appman.php:91 +msgid "Name of app" +msgstr "Nome app" + +#: ../../mod/appman.php:92 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" + +#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 msgid "Description" msgstr "Descrizione" -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "O inserisci il nome di una nuova cartella di segnalibri" +#: ../../mod/appman.php:94 +msgid "Photo icon URL" +msgstr "URL icona" + +#: ../../mod/appman.php:94 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" + +#: ../../mod/appman.php:95 +msgid "Version ID" +msgstr "ID versione" + +#: ../../mod/appman.php:96 +msgid "Price of app" +msgstr "Prezzo app" + +#: ../../mod/appman.php:97 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" + +#: ../../mod/menu.php:45 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." + +#: ../../mod/menu.php:56 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." + +#: ../../mod/menu.php:94 ../../mod/menu.php:106 +msgid "Menu Name" +msgstr "Nome del menu" + +#: ../../mod/menu.php:94 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" + +#: ../../mod/menu.php:95 ../../mod/menu.php:107 +msgid "Menu Title" +msgstr "Titolo del menu" + +#: ../../mod/menu.php:95 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" + +#: ../../mod/menu.php:96 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" + +#: ../../mod/menu.php:96 ../../mod/menu.php:153 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" + +#: ../../mod/menu.php:97 ../../mod/menu.php:155 +msgid "Submit and proceed" +msgstr "Salva e procedi" + +#: ../../mod/menu.php:109 +msgid "Drop" +msgstr "Elimina" + +#: ../../mod/menu.php:113 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" + +#: ../../mod/menu.php:115 +msgid "Delete this menu" +msgstr "Elimina questo menù" + +#: ../../mod/menu.php:116 ../../mod/menu.php:150 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" + +#: ../../mod/menu.php:117 +msgid "Edit this menu" +msgstr "Modifica questo menù" + +#: ../../mod/menu.php:132 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." + +#: ../../mod/menu.php:145 +msgid "Edit Menu" +msgstr "Modifica menù" + +#: ../../mod/menu.php:149 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" + +#: ../../mod/menu.php:151 +msgid "Menu name" +msgstr "Nome del menù" + +#: ../../mod/menu.php:151 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" + +#: ../../mod/menu.php:152 +msgid "Menu title" +msgstr "Titolo del menù" + +#: ../../mod/menu.php:152 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" + +#: ../../mod/menu.php:153 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" #: ../../mod/notify.php:53 ../../mod/notifications.php:94 msgid "No more system notifications." @@ -5797,13 +6217,72 @@ msgstr "Non ci sono nuove notifiche di sistema." msgid "System Notifications" msgstr "Notifiche di sistema" -#: ../../mod/acl.php:231 -msgid "network" -msgstr "rete" +#: ../../mod/page.php:126 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" +#: ../../mod/new_channel.php:109 +msgid "Add a Channel" +msgstr "Aggiungi un canale" + +#: ../../mod/new_channel.php:110 +msgid "" +"A channel is your own collection of related web pages. A channel can be used" +" to hold social network profiles, blogs, conversation groups and forums, " +"celebrity pages, and much more. You may create as many channels as your " +"service provider allows." +msgstr "I contenuti che pubblichi sono mostrati nel tuo \"canale\". Un canale può essere usato come bacheca personale, come blog, oppure può essere un forum di discussione, un gruppo di interesse, una pagina di celebrità e molto altro. Puoi creare tanti canali quanti te ne permette il tuo sito." + +#: ../../mod/new_channel.php:112 ../../mod/sources.php:103 +#: ../../mod/sources.php:137 +msgid "Channel Name" +msgstr "Nome del canale" + +#: ../../mod/new_channel.php:113 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" + +#: ../../mod/new_channel.php:114 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" + +#: ../../mod/new_channel.php:115 +msgid "" +"Your nickname will be used to create an easily remembered channel address " +"(like an email address) which you can share with others." +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti." + +#: ../../mod/new_channel.php:116 +msgid "Or import an existing channel from another location" +msgstr "Oppure importa un tuo canale esistente da un altro hub" + +#: ../../mod/new_channel.php:118 +msgid "" +"Please choose a channel type (such as social networking or community forum) " +"and privacy requirements so we can select the best permissions for you" +msgstr "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa più usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. Hubzilla sceglierà per te i permessi più adatti." + +#: ../../mod/new_channel.php:119 +msgid "Channel Type" +msgstr "Tipo di canale" + +#: ../../mod/new_channel.php:119 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: ../../mod/notifications.php:35 +msgid "Discard" +msgstr "Rifiuta" #: ../../mod/pdledit.php:13 msgid "Layout updated." @@ -5821,193 +6300,14 @@ msgstr "Layout non trovato." msgid "Module Name:" msgstr "Nome del modulo:" -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:108 +#: ../../mod/pdledit.php:55 msgid "Layout Help" msgstr "Guida al layout" -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- scegli -" - -#: ../../mod/import.php:25 +#: ../../mod/subthread.php:102 #, php-format -msgid "Your service plan only allows %d channels." -msgstr "Il tuo account permette di creare al massimo %d canali." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio server" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." - -#: ../../mod/import.php:106 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." - -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." - -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." - -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." - -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "L'importazione è terminata con successo!" - -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." - -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Importa un canale" - -#: ../../mod/import.php:493 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile." - -#: ../../mod/import.php:494 -msgid "File to Upload" -msgstr "File da caricare" - -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio server/hub" - -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" - -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio server" - -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "La password per il vecchio server" - -#: ../../mod/import.php:499 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo server, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i server, ma solamente uno sarà indicato come posizione in cui risiedono i tuoi file, foto, ecc." - -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" -msgstr "Rendi questo server il mio indirizzo primario" - -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Importazione dei post esistenti, se possibile" - -#: ../../mod/editlayout.php:78 ../../mod/editwebpage.php:77 -#: ../../mod/editpost.php:20 ../../mod/editblock.php:78 -#: ../../mod/editblock.php:94 -msgid "Item not found" -msgstr "Elemento non trovato" - -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Modifica il layout" - -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Vuoi eliminare questo layout?" - -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:187 -#: ../../mod/editpost.php:122 ../../mod/editblock.php:150 -msgid "Insert YouTube video" -msgstr "Inserisci video da YouTube" - -#: ../../mod/editlayout.php:149 ../../mod/editwebpage.php:188 -#: ../../mod/editpost.php:123 ../../mod/editblock.php:151 -msgid "Insert Vorbis [.ogg] video" -msgstr "Inserisci video Vorbis [.ogg]" - -#: ../../mod/editlayout.php:150 ../../mod/editwebpage.php:189 -#: ../../mod/editpost.php:124 ../../mod/editblock.php:152 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Inserisci audio Vorbis [.ogg]" - -#: ../../mod/editlayout.php:182 -msgid "Delete Layout" -msgstr "Elimina il layout" - -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Area chat non trovata" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Lascia l'area chat" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Elimina questa area chat" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Non sono presente" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Sono online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Aggiungi l'area chat ai segnalibri" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nuova area chat" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nome dell'area chat" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Le aree chat di %1$s" - -#: ../../mod/editwebpage.php:152 -msgid "Delete webpage?" -msgstr "Vuoi eliminare questa pagina web?" - -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "Link del titolo" - -#: ../../mod/editwebpage.php:224 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "Questo server di elenchi pubblici necessita di un token di autenticazione" +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" #: ../../mod/lostpass.php:15 msgid "No valid account found." @@ -6017,7 +6317,7 @@ msgstr "Nessun account valido trovato." msgid "Password reset request issued. Check your email." msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 #, php-format msgid "Site Member (%s)" msgstr "Utente del sito (%s)" @@ -6033,55 +6333,218 @@ msgid "" "Password reset failed." msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." -#: ../../mod/lostpass.php:85 ../../boot.php:1548 +#: ../../mod/lostpass.php:86 ../../boot.php:1505 msgid "Password Reset" msgstr "Reimposta la password" -#: ../../mod/lostpass.php:86 +#: ../../mod/lostpass.php:87 msgid "Your password has been reset as requested." msgstr "La password è stata reimpostata come richiesto." -#: ../../mod/lostpass.php:87 +#: ../../mod/lostpass.php:88 msgid "Your new password is" msgstr "La tua nuova password è" -#: ../../mod/lostpass.php:88 +#: ../../mod/lostpass.php:89 msgid "Save or copy your new password - and then" msgstr "Salva o copia la tua nuova password, quindi" -#: ../../mod/lostpass.php:89 +#: ../../mod/lostpass.php:90 msgid "click here to login" msgstr "clicca qui per accedere" -#: ../../mod/lostpass.php:90 +#: ../../mod/lostpass.php:91 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." -#: ../../mod/lostpass.php:107 +#: ../../mod/lostpass.php:108 #, php-format msgid "Your password has changed at %s" msgstr "La tua password su %s è cambiata" -#: ../../mod/lostpass.php:122 +#: ../../mod/lostpass.php:123 msgid "Forgot your Password?" msgstr "Hai dimenticato la password?" -#: ../../mod/lostpass.php:123 +#: ../../mod/lostpass.php:124 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. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." -#: ../../mod/lostpass.php:124 +#: ../../mod/lostpass.php:125 msgid "Email Address" msgstr "Indirizzo email" -#: ../../mod/lostpass.php:125 +#: ../../mod/lostpass.php:126 msgid "Reset" msgstr "Reimposta" +#: ../../mod/photos.php:79 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." + +#: ../../mod/photos.php:100 +msgid "Album not found." +msgstr "Album non trovato." + +#: ../../mod/photos.php:127 +msgid "Delete Album" +msgstr "Elimina album" + +#: ../../mod/photos.php:170 ../../mod/photos.php:970 +msgid "Delete Photo" +msgstr "Elimina foto" + +#: ../../mod/photos.php:464 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." + +#: ../../mod/photos.php:552 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." + +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." + +#: ../../mod/photos.php:583 +msgid "Upload Photos" +msgstr "Carica foto" + +#: ../../mod/photos.php:587 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" + +#: ../../mod/photos.php:588 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" + +#: ../../mod/photos.php:589 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" + +#: ../../mod/photos.php:616 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" + +#: ../../mod/photos.php:660 ../../mod/photos.php:1197 +#: ../../mod/photos.php:1214 +msgid "Contact Photos" +msgstr "Foto dei contatti" + +#: ../../mod/photos.php:688 +msgid "Show Newest First" +msgstr "Prima i più recenti" + +#: ../../mod/photos.php:690 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" + +#: ../../mod/photos.php:714 ../../mod/photos.php:1247 +msgid "View Photo" +msgstr "Guarda la foto" + +#: ../../mod/photos.php:743 +msgid "Edit Album" +msgstr "Modifica album" + +#: ../../mod/photos.php:788 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." + +#: ../../mod/photos.php:790 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: ../../mod/photos.php:848 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: ../../mod/photos.php:855 +msgid "Private Photo" +msgstr "Foto privata" + +#: ../../mod/photos.php:866 ../../mod/events.php:528 +msgid "Previous" +msgstr "Precendente" + +#: ../../mod/photos.php:870 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" + +#: ../../mod/photos.php:875 ../../mod/events.php:529 ../../mod/setup.php:285 +msgid "Next" +msgstr "Successivo" + +#: ../../mod/photos.php:915 ../../mod/tagrm.php:133 +msgid "Remove" +msgstr "Rimuovi" + +#: ../../mod/photos.php:949 +msgid "Edit photo" +msgstr "Modifica la foto" + +#: ../../mod/photos.php:951 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" + +#: ../../mod/photos.php:952 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" + +#: ../../mod/photos.php:955 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" + +#: ../../mod/photos.php:956 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" + +#: ../../mod/photos.php:959 +msgid "Caption" +msgstr "Didascalia" + +#: ../../mod/photos.php:961 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: ../../mod/photos.php:965 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../mod/photos.php:968 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" + +#: ../../mod/photos.php:1160 +msgid "In This Photo:" +msgstr "In questa foto:" + +#: ../../mod/photos.php:1165 +msgid "Map" +msgstr "Mappa" + +#: ../../mod/photos.php:1253 +msgid "View Album" +msgstr "Guarda l'album" + +#: ../../mod/photos.php:1276 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: ../../mod/dav.php:121 +msgid "$Projectname channel" +msgstr "Canale $Projectname" + #: ../../mod/rate.php:157 msgid "Website:" msgstr "Sito web:" @@ -6091,118 +6554,476 @@ msgstr "Sito web:" msgid "Remote Channel [%s] (not yet known on this site)" msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" -#: ../../mod/rate.php:161 ../../mod/connedit.php:663 +#: ../../mod/rate.php:161 msgid "Rating (this information is public)" msgstr "Valutazione (visibile a tutti)" -#: ../../mod/rate.php:162 ../../mod/connedit.php:664 +#: ../../mod/rate.php:162 msgid "Optionally explain your rating (this information is public)" msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" +#: ../../mod/events.php:21 +msgid "Calendar entries imported." +msgstr "Le voci del calendario sono state importate." -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Eliminare questo elemento?" +#: ../../mod/events.php:23 +msgid "No calendar entries found." +msgstr "Non sono state trovate voci del calendario." -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." +#: ../../mod/events.php:96 +msgid "Event can not end before it has started." +msgstr "Un evento non può terminare prima del suo inizio." -#: ../../mod/invite.php:49 +#: ../../mod/events.php:98 ../../mod/events.php:107 ../../mod/events.php:127 +msgid "Unable to generate preview." +msgstr "Impossibile creare un'anteprima." + +#: ../../mod/events.php:105 +msgid "Event title and start time are required." +msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." + +#: ../../mod/events.php:125 ../../mod/events.php:250 +msgid "Event not found." +msgstr "Evento non trovato." + +#: ../../mod/events.php:448 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:470 +msgid "Edit event" +msgstr "Modifica l'evento" + +#: ../../mod/events.php:472 +msgid "Delete event" +msgstr "Elimina l'evento" + +#: ../../mod/events.php:506 +msgid "calendar" +msgstr "calendario" + +#: ../../mod/events.php:527 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: ../../mod/events.php:530 +msgid "Export" +msgstr "Esporta" + +#: ../../mod/events.php:533 +msgid "Import" +msgstr "Importa" + +#: ../../mod/events.php:564 +msgid "Event removed" +msgstr "Evento eliminato" + +#: ../../mod/events.php:567 +msgid "Failed to remove event" +msgstr "Impossibile eliminare l'evento" + +#: ../../mod/events.php:681 +msgid "Event details" +msgstr "Dettagli evento" + +#: ../../mod/events.php:682 +msgid "Starting date and Title are required." +msgstr "Titolo e data d'inizio sono obbligatori." + +#: ../../mod/events.php:684 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" + +#: ../../mod/events.php:686 +msgid "Event Starts:" +msgstr "Inizio:" + +#: ../../mod/events.php:693 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è rilevante" + +#: ../../mod/events.php:695 +msgid "Event Finishes:" +msgstr "Fine:" + +#: ../../mod/events.php:697 ../../mod/events.php:698 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" + +#: ../../mod/events.php:697 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante per eventi che avvengono online ma con l'orario di un luogo particolare." + +#: ../../mod/events.php:703 +msgid "Title:" +msgstr "Titolo:" + +#: ../../mod/events.php:705 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: ../../mod/impel.php:192 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +msgid "%s element installed" +msgstr "%s elemento installato" -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Vieni con noi su Hubzilla" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." - -#: ../../mod/invite.php:92 +#: ../../mod/impel.php:195 #, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" -#: ../../mod/invite.php:96 +#: ../../mod/probe.php:24 ../../mod/probe.php:30 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" +#: ../../mod/match.php:22 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Spedisci inviti" +#: ../../mod/match.php:31 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" +#: ../../mod/match.php:63 +msgid "is interested in:" +msgstr "interessi personali:" -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 +#: ../../mod/match.php:70 +msgid "No matches" +msgstr "Nessun risultato" + +#: ../../mod/profile_photo.php:111 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." + +#: ../../mod/profile_photo.php:165 +msgid "Image resize failed." +msgstr "Il ridimensionamento dell'immagine è fallito." + +#: ../../mod/profile_photo.php:209 +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:247 +msgid "Image upload failed." +msgstr "Il caricamento dell'immagine è fallito." + +#: ../../mod/profile_photo.php:266 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." + +#: ../../mod/profile_photo.php:294 +msgid "female" +msgstr "femmina" + +#: ../../mod/profile_photo.php:295 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "Aggiornamento: %2$s di %1$s" + +#: ../../mod/profile_photo.php:296 +msgid "male" +msgstr "maschio" + +#: ../../mod/profile_photo.php:297 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "Aggiornamento: %2$s di %1$s" + +#: ../../mod/profile_photo.php:299 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "Aggiornamento: %2$s di %1$s" + +#: ../../mod/profile_photo.php:301 +msgid "profile photo" +msgstr "foto del profilo" + +#: ../../mod/profile_photo.php:365 ../../mod/profile_photo.php:406 +msgid "Photo not available." +msgstr "Foto non disponibile." + +#: ../../mod/profile_photo.php:447 +msgid "Upload File:" +msgstr "Carica un file:" + +#: ../../mod/profile_photo.php:448 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" + +#: ../../mod/profile_photo.php:449 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" + +#: ../../mod/profile_photo.php:454 ../../mod/settings.php:972 +msgid "or" +msgstr "o" + +#: ../../mod/profile_photo.php:454 +msgid "skip this step" +msgstr "salta questo passaggio" + +#: ../../mod/profile_photo.php:454 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" + +#: ../../mod/profile_photo.php:470 +msgid "Crop Image" +msgstr "Ritaglia immagine" + +#: ../../mod/profile_photo.php:471 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." + +#: ../../mod/profile_photo.php:473 +msgid "Done Editing" +msgstr "Modifica terminata" + +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "Canale aggiunto." + +#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 +msgid "Tag removed" +msgstr "Tag rimosso" + +#: ../../mod/tagrm.php:119 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" + +#: ../../mod/tagrm.php:121 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " + +#: ../../mod/ratings.php:69 +msgid "No ratings" +msgstr "Nessuna valutazione" + +#: ../../mod/ratings.php:99 +msgid "Ratings" +msgstr "Valutazioni" + +#: ../../mod/ratings.php:100 +msgid "Rating: " +msgstr "Valutazione:" + +#: ../../mod/ratings.php:101 +msgid "Website: " +msgstr "Sito web:" + +#: ../../mod/ratings.php:103 +msgid "Description: " +msgstr "Descrizione:" + +#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 +msgid "This site is not a directory server" +msgstr "Questo non è un server di elenchi di canali" + +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." + +#: ../../mod/mail.php:128 +msgid "Messages" +msgstr "Messaggi" + +#: ../../mod/mail.php:138 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: ../../mod/mail.php:154 +msgid "Message recalled." +msgstr "Messaggio revocato." + +#: ../../mod/mail.php:221 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: ../../mod/mail.php:222 ../../mod/mail.php:352 +msgid "To:" +msgstr "A:" + +#: ../../mod/mail.php:227 ../../mod/mail.php:341 ../../mod/mail.php:354 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../mod/mail.php:231 ../../mod/mail.php:357 ../../mod/invite.php:131 msgid "Your message:" msgstr "Il tuo messaggio:" -#: ../../mod/invite.php:132 -msgid "Please join my community on Hubzilla." -msgstr "Entra a far parte della mia comunità su Hubzilla." +#: ../../mod/mail.php:238 +msgid "Send" +msgstr "Invia" -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Dovrai fornire questo codice di invito:" +#: ../../mod/mail.php:322 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../mod/invite.php:135 -msgid "1. Register at any Hubzilla location (they are all inter-connected)" -msgstr "1. Registrati su un qualsiasi sito Hubzilla (sono tutti interconnessi)" +#: ../../mod/mail.php:323 +msgid "Recall message" +msgstr "Revoca il messaggio" -#: ../../mod/invite.php:137 -msgid "2. Enter my Hubzilla network address into the site searchbar." -msgstr "2. Inserisci il mio indirizzo Hubzilla nella barra di ricerca che compare nella pagina." +#: ../../mod/mail.php:325 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "oppure visita " +#: ../../mod/mail.php:345 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" +#: ../../mod/mail.php:347 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Indirizzo non trovato." +#: ../../mod/mail.php:351 +msgid "Send Reply" +msgstr "Invia la risposta" -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "L'indirizzo principale non può essere rimosso." +#: ../../mod/webpages.php:191 +msgid "Page Title" +msgstr "Titolo della pagina" -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Nessun indirizzo trovato." +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Modifica gli indirizzi del canale" +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Indirizzo" +#: ../../mod/register.php:84 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Indirizzo primario" +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Elimina un indirizzo" +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." + +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere processata." + +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." +msgstr "La registrazione su questo hub è soggetta ad approvazione." + +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" +msgstr "Registrati su un altro hub affiliato" + +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." + +#: ../../mod/register.php:185 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" + +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" + +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ho più di 13 anni e accetto le %s di questo sito" + +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo hub è necessario un invito." + +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" + +#: ../../mod/register.php:216 +msgid "Your email address" +msgstr "Il tuo indirizzo email" + +#: ../../mod/register.php:217 +msgid "Choose a password" +msgstr "Scegli una password" + +#: ../../mod/register.php:218 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" + +#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 +msgid "Block Name" +msgstr "Nome del riquadro" + +#: ../../mod/blocks.php:149 +msgid "Block Title" +msgstr "Titolo del riquadro" + +#: ../../mod/removeaccount.php:30 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." + +#: ../../mod/removeaccount.php:57 +msgid "Remove This Account" +msgstr "Elimina questo account" + +#: ../../mod/removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." + +#: ../../mod/removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." + +#: ../../mod/removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete." + +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:697 +msgid "Remove Account" +msgstr "Elimina l'account" + +#: ../../mod/service_limits.php:19 +msgid "No service class restrictions found." +msgstr "Non esistono restrizioni su questa classe di account." + +#: ../../mod/attach.php:9 +msgid "Item not available." +msgstr "Elemento non disponibile." #: ../../mod/sources.php:32 msgid "Failed to create source. No channel selected." @@ -6242,11 +7063,6 @@ msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" msgid "Leave blank to import all public content" msgstr "Lascia vuoto per importare tutti i contenuti pubblici" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Nome del canale" - #: ../../mod/sources.php:123 ../../mod/sources.php:150 msgid "Source not found." msgstr "Sorgente non trovata." @@ -6267,206 +7083,1622 @@ msgstr "Sorgente eliminata" msgid "Unable to remove source." msgstr "Impossibile rimuovere la sorgente." -#: ../../mod/menu.php:44 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." +#: ../../mod/lockview.php:37 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." -#: ../../mod/menu.php:53 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." +#: ../../mod/lockview.php:58 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../mod/menu.php:86 ../../mod/menu.php:98 -msgid "Menu Name" -msgstr "Nome del menu" +#: ../../mod/acl.php:222 +msgid "network" +msgstr "rete" -#: ../../mod/menu.php:86 -msgid "Unique name (not visible on webpage) - required" -msgstr "Identificativo unico (non visibile sulla pagina) - obbligatorio" +#: ../../mod/acl.php:232 +msgid "RSS" +msgstr "RSS" -#: ../../mod/menu.php:87 ../../mod/menu.php:99 -msgid "Menu Title" -msgstr "Titolo del menu" +#: ../../mod/regmod.php:11 +msgid "Please login." +msgstr "Effettua l'accesso." -#: ../../mod/menu.php:87 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" +#: ../../mod/rmagic.php:40 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." -#: ../../mod/menu.php:88 -msgid "Allow Bookmarks" -msgstr "Permetti l'aggiunta ai segnalibri" +#: ../../mod/rmagic.php:40 +msgid "The error message was:" +msgstr "Messaggio di errore ricevuto:" -#: ../../mod/menu.php:88 ../../mod/menu.php:140 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" +#: ../../mod/rmagic.php:44 +msgid "Authentication failed." +msgstr "Autenticazione fallita." -#: ../../mod/menu.php:89 -msgid "Submit and proceed" -msgstr "Salva e procedi" +#: ../../mod/rmagic.php:84 +msgid "Remote Authentication" +msgstr "Accedi tramite il tuo hub" -#: ../../mod/menu.php:101 -msgid "Drop" -msgstr "Elimina" +#: ../../mod/rmagic.php:85 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" -#: ../../mod/menu.php:103 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" +#: ../../mod/rmagic.php:86 +msgid "Authenticate" +msgstr "Accedi" -#: ../../mod/menu.php:105 -msgid "Delete this menu" -msgstr "Elimina questo menù" +#: ../../mod/dirsearch.php:29 +msgid "This directory server requires an access token" +msgstr "Questo server di elenchi pubblici necessita di un token di autenticazione" -#: ../../mod/menu.php:106 ../../mod/menu.php:137 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" - -#: ../../mod/menu.php:107 -msgid "Edit this menu" -msgstr "Modifica questo menù" - -#: ../../mod/menu.php:121 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." - -#: ../../mod/menu.php:129 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menù non trovato." - -#: ../../mod/menu.php:134 -msgid "Edit Menu" -msgstr "Modifica menù" - -#: ../../mod/menu.php:136 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" - -#: ../../mod/menu.php:138 -msgid "Menu name" -msgstr "Nome del menù" - -#: ../../mod/menu.php:138 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" - -#: ../../mod/menu.php:139 -msgid "Menu title" -msgstr "Titolo del menù" - -#: ../../mod/menu.php:139 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" - -#: ../../mod/menu.php:140 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" - -#: ../../mod/menu.php:142 -msgid "Modify" -msgstr "Modifica" - -#: ../../mod/filestorage.php:82 -msgid "Permission Denied." -msgstr "Permesso negato." - -#: ../../mod/filestorage.php:98 -msgid "File not found." -msgstr "File non trovato." - -#: ../../mod/filestorage.php:141 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" - -#: ../../mod/filestorage.php:150 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" - -#: ../../mod/filestorage.php:151 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" - -#: ../../mod/filestorage.php:152 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" - -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un articolo" - -#: ../../mod/filestorage.php:155 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" - -#: ../../mod/filestorage.php:157 -msgid "Share this file" -msgstr "Condividi questo file" - -#: ../../mod/filestorage.php:158 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" - -#: ../../mod/filestorage.php:159 -msgid "Notify your contacts about this file" -msgstr "Notifica ai tuoi contatti che hai caricato il file" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -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 +#: ../../mod/siteinfo.php:111 #, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" +msgid "Version %s" +msgstr "Versione %s" -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Server non trovato." +#: ../../mod/siteinfo.php:132 +msgid "Installed plugins/addons/apps:" +msgstr "App e componenti installati:" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: ../../mod/siteinfo.php:145 +msgid "No installed plugins/addons/apps" +msgstr "Nessuna app o componente installato" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Manda un poke, un prod o altro" +#: ../../mod/siteinfo.php:158 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Destinatario" +#: ../../mod/siteinfo.php:160 +msgid "Tag: " +msgstr "Tag: " -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" +#: ../../mod/siteinfo.php:162 +msgid "Last background fetch: " +msgstr "Ultima acquisizione:" -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Rendi privato questo articolo" +#: ../../mod/siteinfo.php:164 +msgid "Current load average: " +msgstr "Carico medio attuale:" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../mod/siteinfo.php:167 +msgid "Running at web location" +msgstr "In esecuzione sull'indirizzo web" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" +#: ../../mod/siteinfo.php:168 +msgid "" +"Please visit redmatrix.me to learn more" +" about $Projectname." +msgstr "Visita RedMatrix.me per scoprire di più su $Projectname." -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: ../../mod/siteinfo.php:169 +msgid "Bug reports and issues: please visit" +msgstr "Per segnalare bug e problemi: visita" -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visibile a" +#: ../../mod/siteinfo.php:171 +msgid "$projectname issues" +msgstr "Problematiche note su $projectname" -#: ../../mod/webpages.php:189 -msgid "Page Title" -msgstr "Titolo della pagina" +#: ../../mod/siteinfo.php:172 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" + +#: ../../mod/siteinfo.php:174 +msgid "Site Administrators" +msgstr "Amministratori del sito" + +#: ../../mod/import.php:27 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Il tuo account permette di creare al massimo %d canali." + +#: ../../mod/import.php:65 ../../mod/import_items.php:38 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." + +#: ../../mod/import.php:89 ../../mod/import_items.php:62 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio hub" + +#: ../../mod/import.php:95 ../../mod/import_items.php:68 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." + +#: ../../mod/import.php:115 ../../mod/import_items.php:82 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." + +#: ../../mod/import.php:148 +msgid "No channel. Import failed." +msgstr "Nessun canale. Import fallito." + +#: ../../mod/import.php:493 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." + +#: ../../mod/import.php:498 +msgid "Import Channel" +msgstr "Importa un canale" + +#: ../../mod/import.php:499 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." + +#: ../../mod/import.php:500 ../../mod/import_items.php:121 +msgid "File to Upload" +msgstr "File da caricare" + +#: ../../mod/import.php:501 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio hub" + +#: ../../mod/import.php:502 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" + +#: ../../mod/import.php:503 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio hub" + +#: ../../mod/import.php:504 +msgid "Your old login password" +msgstr "La password per il vecchio hub" + +#: ../../mod/import.php:505 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." + +#: ../../mod/import.php:506 +msgid "Make this hub my primary location" +msgstr "Rendi questo hub il mio indirizzo primario" + +#: ../../mod/import.php:507 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" + +#: ../../mod/import.php:508 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." + +#: ../../mod/thing.php:111 +msgid "Thing updated" +msgstr "L'oggetto è stato aggiornato" + +#: ../../mod/thing.php:163 +msgid "Object store: failed" +msgstr "Impossibile memorizzare l'oggetto." + +#: ../../mod/thing.php:167 +msgid "Thing added" +msgstr "L'Oggetto è stato aggiunto" + +#: ../../mod/thing.php:193 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../mod/thing.php:256 +msgid "Show Thing" +msgstr "Mostra l'oggetto" + +#: ../../mod/thing.php:263 +msgid "item not found." +msgstr "non trovato." + +#: ../../mod/thing.php:296 +msgid "Edit Thing" +msgstr "Modifica l'oggetto" + +#: ../../mod/thing.php:298 ../../mod/thing.php:348 +msgid "Select a profile" +msgstr "Scegli un profilo" + +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Post an activity" +msgstr "Pubblica un'attività" + +#: ../../mod/thing.php:302 ../../mod/thing.php:351 +msgid "Only sends to viewers of the applicable profile" +msgstr "Invia solo a chi può vedere il profilo" + +#: ../../mod/thing.php:304 ../../mod/thing.php:353 +msgid "Name of thing e.g. something" +msgstr "Nome dell'oggetto" + +#: ../../mod/thing.php:306 ../../mod/thing.php:354 +msgid "URL of thing (optional)" +msgstr "Indirizzo web dell'oggetto (opzionale)" + +#: ../../mod/thing.php:308 ../../mod/thing.php:355 +msgid "URL for photo of thing (optional)" +msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" + +#: ../../mod/thing.php:346 +msgid "Add Thing to your Profile" +msgstr "Aggiungi l'oggetto al tuo profilo" + +#: ../../mod/invite.php:25 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: ../../mod/invite.php:76 +msgid "Please join us on $Projectname" +msgstr "Unisciti a noi su $Projectname" + +#: ../../mod/invite.php:87 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." + +#: ../../mod/invite.php:92 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." + +#: ../../mod/invite.php:96 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." + +#: ../../mod/invite.php:115 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: ../../mod/invite.php:129 +msgid "Send invitations" +msgstr "Spedisci inviti" + +#: ../../mod/invite.php:130 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: ../../mod/invite.php:132 +msgid "Please join my community on $Projectname." +msgstr "Entra nella mia comunità su $Projectname." + +#: ../../mod/invite.php:134 +msgid "You will need to supply this invitation code: " +msgstr "Dovrai fornire questo codice di invito:" + +#: ../../mod/invite.php:135 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" + +#: ../../mod/invite.php:137 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." + +#: ../../mod/invite.php:138 +msgid "or visit " +msgstr "oppure visita " + +#: ../../mod/invite.php:140 +msgid "3. Click [Connect]" +msgstr "3. Clicca su [Aggiungi]" + +#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 +#: ../../mod/update_home.php:21 ../../mod/update_network.php:23 +#: ../../mod/update_search.php:46 ../../mod/update_public.php:21 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: ../../mod/viewsrc.php:40 +msgid "Source of Item" +msgstr "Sorgente" + +#: ../../mod/settings.php:76 +msgid "Name is required" +msgstr "Il nome è obbligatorio" + +#: ../../mod/settings.php:80 +msgid "Key and Secret are required" +msgstr "Key e Secret sono richiesti" + +#: ../../mod/settings.php:231 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." + +#: ../../mod/settings.php:235 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." + +#: ../../mod/settings.php:249 +msgid "Password changed." +msgstr "Password cambiata." + +#: ../../mod/settings.php:251 +msgid "Password update failed. Please try again." +msgstr "Modifica password fallita. Prova ancora." + +#: ../../mod/settings.php:265 +msgid "Not valid email." +msgstr "Email non valida." + +#: ../../mod/settings.php:268 +msgid "Protected email address. Cannot change to that email." +msgstr "È un indirizzo email riservato. Non puoi sceglierlo." + +#: ../../mod/settings.php:277 +msgid "System failure storing new email. Please try again." +msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." + +#: ../../mod/settings.php:518 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." + +#: ../../mod/settings.php:582 ../../mod/settings.php:608 +#: ../../mod/settings.php:644 +msgid "Add application" +msgstr "Aggiungi una app" + +#: ../../mod/settings.php:585 +msgid "Name of application" +msgstr "Nome dell'applicazione" + +#: ../../mod/settings.php:586 ../../mod/settings.php:612 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../mod/settings.php:586 ../../mod/settings.php:587 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" + +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../mod/settings.php:588 ../../mod/settings.php:614 +msgid "Redirect" +msgstr "Redirect" + +#: ../../mod/settings.php:588 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" + +#: ../../mod/settings.php:589 ../../mod/settings.php:615 +msgid "Icon url" +msgstr "Url icona" + +#: ../../mod/settings.php:589 +msgid "Optional" +msgstr "Opzionale" + +#: ../../mod/settings.php:600 +msgid "You can't edit this application." +msgstr "Non puoi modificare questa applicazione." + +#: ../../mod/settings.php:643 +msgid "Connected Apps" +msgstr "App connesse" + +#: ../../mod/settings.php:647 +msgid "Client key starts with" +msgstr "La client key inizia con" + +#: ../../mod/settings.php:648 +msgid "No name" +msgstr "Nessun nome" + +#: ../../mod/settings.php:649 +msgid "Remove authorization" +msgstr "Revoca l'autorizzazione" + +#: ../../mod/settings.php:662 +msgid "No feature settings configured" +msgstr "Non hai componenti aggiuntivi da personalizzare" + +#: ../../mod/settings.php:669 +msgid "Feature/Addon Settings" +msgstr "Impostazioni dei componenti aggiuntivi" + +#: ../../mod/settings.php:692 +msgid "Account Settings" +msgstr "Il tuo account" + +#: ../../mod/settings.php:693 +msgid "Enter New Password:" +msgstr "Inserisci la nuova password:" + +#: ../../mod/settings.php:694 +msgid "Confirm New Password:" +msgstr "Conferma la nuova password:" + +#: ../../mod/settings.php:694 +msgid "Leave password fields blank unless changing" +msgstr "Lascia vuoti questi campi per non cambiare la password" + +#: ../../mod/settings.php:696 ../../mod/settings.php:1027 +msgid "Email Address:" +msgstr "Indirizzo email:" + +#: ../../mod/settings.php:698 +msgid "Remove this account including all its channels" +msgstr "Elimina questo account e tutti i suoi canali" + +#: ../../mod/settings.php:714 +msgid "Off" +msgstr "Off" + +#: ../../mod/settings.php:714 +msgid "On" +msgstr "On" + +#: ../../mod/settings.php:721 +msgid "Additional Features" +msgstr "Funzionalità opzionali" + +#: ../../mod/settings.php:745 +msgid "Connector Settings" +msgstr "Impostazioni del connettore" + +#: ../../mod/settings.php:784 +msgid "No special theme for mobile devices" +msgstr "Nessun tema per dispositivi mobili" + +#: ../../mod/settings.php:787 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Sperimentale)" + +#: ../../mod/settings.php:826 +msgid "Display Settings" +msgstr "Aspetto" + +#: ../../mod/settings.php:827 +msgid "Theme Settings" +msgstr "Impostazioni del tema" + +#: ../../mod/settings.php:828 +msgid "Custom Theme Settings" +msgstr "Personalizzazione del tema" + +#: ../../mod/settings.php:829 +msgid "Content Settings" +msgstr "Impostazioni dei contenuti" + +#: ../../mod/settings.php:835 +msgid "Display Theme:" +msgstr "Tema per schermi medio grandi:" + +#: ../../mod/settings.php:836 +msgid "Mobile Theme:" +msgstr "Tema per dispositivi mobili:" + +#: ../../mod/settings.php:837 +msgid "Enable user zoom on mobile devices" +msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" + +#: ../../mod/settings.php:838 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" + +#: ../../mod/settings.php:838 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" + +#: ../../mod/settings.php:839 +msgid "Maximum number of conversations to load at any time:" +msgstr "Massimo numero di conversazioni da mostrare ogni volta:" + +#: ../../mod/settings.php:839 +msgid "Maximum of 100 items" +msgstr "Massimo 100" + +#: ../../mod/settings.php:840 +msgid "Show emoticons (smilies) as images" +msgstr "Mostra le faccine (smilies) come immagini" + +#: ../../mod/settings.php:841 +msgid "Link post titles to source" +msgstr "Il link del titolo di un post porta al sito originale" + +#: ../../mod/settings.php:842 +msgid "System Page Layout Editor - (advanced)" +msgstr "Modifica i layout di sistema (avanzato)" + +#: ../../mod/settings.php:845 +msgid "Use blog/list mode on channel page" +msgstr "Mostra il canale nella modalità blog" + +#: ../../mod/settings.php:845 ../../mod/settings.php:846 +msgid "(comments displayed separately)" +msgstr "(i commenti sono mostrati separatamente)" + +#: ../../mod/settings.php:846 +msgid "Use blog/list mode on matrix page" +msgstr "Mostra la tua rete in modalità blog" + +#: ../../mod/settings.php:847 +msgid "Channel page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti del canale (in pixel)" + +#: ../../mod/settings.php:847 ../../mod/settings.php:848 +msgid "click to expand content exceeding this height" +msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" + +#: ../../mod/settings.php:848 +msgid "Matrix page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti della tua rete (in pixel)" + +#: ../../mod/settings.php:882 +msgid "Nobody except yourself" +msgstr "Nessuno tranne te" + +#: ../../mod/settings.php:883 +msgid "Only those you specifically allow" +msgstr "Solo chi riceve il mio permesso" + +#: ../../mod/settings.php:884 +msgid "Approved connections" +msgstr "Contatti approvati" + +#: ../../mod/settings.php:885 +msgid "Any connections" +msgstr "Tutti i contatti" + +#: ../../mod/settings.php:886 +msgid "Anybody on this website" +msgstr "Chiunque su questo hub" + +#: ../../mod/settings.php:887 +msgid "Anybody in this network" +msgstr "Chiunque su questa rete" + +#: ../../mod/settings.php:888 +msgid "Anybody authenticated" +msgstr "Chiunque abbia effettuato l'accesso" + +#: ../../mod/settings.php:889 +msgid "Anybody on the internet" +msgstr "Chiunque su internet" + +#: ../../mod/settings.php:963 +msgid "Publish your default profile in the network directory" +msgstr "Mostra il mio profilo predefinito nell'elenco pubblico dei canali" + +#: ../../mod/settings.php:968 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Vuoi essere suggerito come amico ai nuovi membri?" + +#: ../../mod/settings.php:977 +msgid "Your channel address is" +msgstr "L'indirizzo del tuo canale è" + +#: ../../mod/settings.php:1018 +msgid "Channel Settings" +msgstr "Impostazioni del canale" + +#: ../../mod/settings.php:1025 +msgid "Basic Settings" +msgstr "Impostazioni di base" + +#: ../../mod/settings.php:1028 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: ../../mod/settings.php:1029 +msgid "Default Post Location:" +msgstr "Località predefinita:" + +#: ../../mod/settings.php:1029 +msgid "Geographical location to display on your posts" +msgstr "La posizione geografica da mostrare sui tuoi post" + +#: ../../mod/settings.php:1030 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: ../../mod/settings.php:1032 +msgid "Adult Content" +msgstr "Contenuto per adulti" + +#: ../../mod/settings.php:1032 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" + +#: ../../mod/settings.php:1034 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" + +#: ../../mod/settings.php:1036 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" + +#: ../../mod/settings.php:1038 +msgid "Hide my online presence" +msgstr "Nascondi la mia presenza online" + +#: ../../mod/settings.php:1038 +msgid "Prevents displaying in your profile that you are online" +msgstr "Non mostrare sul tuo profilo quando sei online" + +#: ../../mod/settings.php:1040 +msgid "Simple Privacy Settings:" +msgstr "Impostazioni di privacy semplificate" + +#: ../../mod/settings.php:1041 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" + +#: ../../mod/settings.php:1042 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" + +#: ../../mod/settings.php:1043 +msgid "Private - default private, never open or public" +msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" + +#: ../../mod/settings.php:1044 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" + +#: ../../mod/settings.php:1046 +msgid "Allow others to tag your posts" +msgstr "Permetti ad altri di taggare i tuoi post" + +#: ../../mod/settings.php:1046 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" + +#: ../../mod/settings.php:1048 +msgid "Advanced Privacy Settings" +msgstr "Impostazioni di privacy avanzate" + +#: ../../mod/settings.php:1050 +msgid "Expire other channel content after this many days" +msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" + +#: ../../mod/settings.php:1050 +msgid "0 or blank prevents expiration" +msgstr "Lascia vuoto oppure 0 per non impostare scadenze" + +#: ../../mod/settings.php:1051 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo giornaliero di richieste di amicizia:" + +#: ../../mod/settings.php:1051 +msgid "May reduce spam activity" +msgstr "Serve a ridurre lo spam" + +#: ../../mod/settings.php:1052 +msgid "Default Post Permissions" +msgstr "Permessi predefiniti per i post" + +#: ../../mod/settings.php:1057 +msgid "Channel permissions category:" +msgstr "Categorie di permessi dei canali:" + +#: ../../mod/settings.php:1063 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" + +#: ../../mod/settings.php:1063 +msgid "Useful to reduce spamming" +msgstr "Serve e ridurre lo spam" + +#: ../../mod/settings.php:1066 +msgid "Notification Settings" +msgstr "Impostazioni di notifica" + +#: ../../mod/settings.php:1067 +msgid "By default post a status message when:" +msgstr "Pubblica un messaggio di stato quando:" + +#: ../../mod/settings.php:1068 +msgid "accepting a friend request" +msgstr "accetto una nuova amicizia" + +#: ../../mod/settings.php:1069 +msgid "joining a forum/community" +msgstr "entro a far parte di un forum" + +#: ../../mod/settings.php:1070 +msgid "making an interesting profile change" +msgstr "faccio un cambiamento interessante al mio profilo" + +#: ../../mod/settings.php:1071 +msgid "Send a notification email when:" +msgstr "Invia una email di notifica quando:" + +#: ../../mod/settings.php:1072 +msgid "You receive a connection request" +msgstr "Ricevi una richiesta di entrare in contatto" + +#: ../../mod/settings.php:1073 +msgid "Your connections are confirmed" +msgstr "I tuoi contatti sono confermati" + +#: ../../mod/settings.php:1074 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla tua bacheca" + +#: ../../mod/settings.php:1075 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento dopo di te" + +#: ../../mod/settings.php:1076 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: ../../mod/settings.php:1077 +msgid "You receive a friend suggestion" +msgstr "Ti viene suggerito un amico" + +#: ../../mod/settings.php:1078 +msgid "You are tagged in a post" +msgstr "Sei taggato in un post" + +#: ../../mod/settings.php:1079 +msgid "You are poked/prodded/etc. in a post" +msgstr "Ricevi un poke in un post" + +#: ../../mod/settings.php:1082 +msgid "Show visual notifications including:" +msgstr "Mostra queste notifiche a schermo:" + +#: ../../mod/settings.php:1084 +msgid "Unseen matrix activity" +msgstr "Nuove attività nella rete" + +#: ../../mod/settings.php:1085 +msgid "Unseen channel activity" +msgstr "Novità nei canali" + +#: ../../mod/settings.php:1086 +msgid "Unseen private messages" +msgstr "Nuovi messaggi privati" + +#: ../../mod/settings.php:1086 ../../mod/settings.php:1091 +#: ../../mod/settings.php:1092 ../../mod/settings.php:1093 +msgid "Recommended" +msgstr "Consigliato" + +#: ../../mod/settings.php:1087 +msgid "Upcoming events" +msgstr "Prossimi eventi" + +#: ../../mod/settings.php:1088 +msgid "Events today" +msgstr "Eventi di oggi" + +#: ../../mod/settings.php:1089 +msgid "Upcoming birthdays" +msgstr "Prossimi compleanni" + +#: ../../mod/settings.php:1089 +msgid "Not available in all themes" +msgstr "Non disponibile in tutti i temi" + +#: ../../mod/settings.php:1090 +msgid "System (personal) notifications" +msgstr "Notifiche personali dal sistema" + +#: ../../mod/settings.php:1091 +msgid "System info messages" +msgstr "Notifiche di sistema" + +#: ../../mod/settings.php:1092 +msgid "System critical alerts" +msgstr "Avvisi critici di sistema" + +#: ../../mod/settings.php:1093 +msgid "New connections" +msgstr "Nuovi contatti" + +#: ../../mod/settings.php:1094 +msgid "System Registrations" +msgstr "Registrazioni" + +#: ../../mod/settings.php:1095 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" + +#: ../../mod/settings.php:1097 +msgid "Notify me of events this many days in advance" +msgstr "Giorni di anticipo per notificare gli eventi" + +#: ../../mod/settings.php:1097 +msgid "Must be greater than 0" +msgstr "Maggiore di 0" + +#: ../../mod/settings.php:1099 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate" + +#: ../../mod/settings.php:1100 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambia il funzionamento di questo account per necessità particolari" + +#: ../../mod/settings.php:1103 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" + +#: ../../mod/settings.php:1104 +msgid "Miscellaneous Settings" +msgstr "Impostazioni varie" + +#: ../../mod/settings.php:1105 +msgid "Default photo upload folder" +msgstr "Cartella predefinita per le foto caricate" + +#: ../../mod/settings.php:1106 +msgid "Default file upload folder" +msgstr "Cartella predefinita per i file caricati" + +#: ../../mod/settings.php:1108 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personale da mostrare sulle pagine del tuo canale" + +#: ../../mod/settings.php:1110 +msgid "Remove this channel." +msgstr "Elimina questo canale." + +#: ../../mod/xchan.php:6 +msgid "Xchan Lookup" +msgstr "Ricerca canale" + +#: ../../mod/xchan.php:9 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Cerca un canale (o un webbie) che inizia per:" + +#: ../../mod/manage.php:130 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." + +#: ../../mod/manage.php:138 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" + +#: ../../mod/manage.php:161 +msgid "Current Channel" +msgstr "Canale attuale" + +#: ../../mod/manage.php:163 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." + +#: ../../mod/manage.php:164 +msgid "Default Channel" +msgstr "Canale predefinito" + +#: ../../mod/manage.php:165 +msgid "Make Default" +msgstr "Rendi predefinito" + +#: ../../mod/manage.php:168 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" + +#: ../../mod/manage.php:169 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" + +#: ../../mod/manage.php:171 +msgid "Delegated Channels" +msgstr "Canali delegati" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la app" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla app e inserisci questo codice di sicurezza:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Accedi al sito 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 app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" + +#: ../../mod/connections.php:52 ../../mod/connections.php:150 +msgid "Blocked" +msgstr "Bloccati" + +#: ../../mod/connections.php:57 ../../mod/connections.php:157 +msgid "Ignored" +msgstr "Ignorati" + +#: ../../mod/connections.php:62 ../../mod/connections.php:171 +msgid "Hidden" +msgstr "Nascosti" + +#: ../../mod/connections.php:67 ../../mod/connections.php:164 +msgid "Archived" +msgstr "Archiviati" + +#: ../../mod/connections.php:128 +msgid "Suggest new connections" +msgstr "Suggerisci nuovi contatti" + +#: ../../mod/connections.php:131 +msgid "New Connections" +msgstr "Nuovi contatti" + +#: ../../mod/connections.php:134 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" + +#: ../../mod/connections.php:137 ../../mod/profperm.php:139 +msgid "All Connections" +msgstr "Tutti i contatti" + +#: ../../mod/connections.php:140 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" + +#: ../../mod/connections.php:143 +msgid "Unblocked" +msgstr "Non bloccati" + +#: ../../mod/connections.php:146 +msgid "Only show unblocked connections" +msgstr "Mostra solo i contatti non bloccati" + +#: ../../mod/connections.php:153 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" + +#: ../../mod/connections.php:160 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" + +#: ../../mod/connections.php:167 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" + +#: ../../mod/connections.php:174 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" + +#: ../../mod/connections.php:225 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../mod/connections.php:226 +msgid "Edit connection" +msgstr "Modifica il contatto" + +#: ../../mod/connections.php:264 +msgid "Search your connections" +msgstr "Cerca tra i contatti" + +#: ../../mod/connections.php:265 +msgid "Finding: " +msgstr "Ricerca: " + +#: ../../mod/editlayout.php:112 +msgid "Delete layout?" +msgstr "Vuoi eliminare questo layout?" + +#: ../../mod/editlayout.php:178 +msgid "Edit Layout" +msgstr "Modifica il layout" + +#: ../../mod/editwebpage.php:153 +msgid "Delete webpage?" +msgstr "Vuoi eliminare questa pagina web?" + +#: ../../mod/editwebpage.php:172 +msgid "Page link title" +msgstr "Link del titolo" + +#: ../../mod/editwebpage.php:222 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" + +#: ../../mod/group.php:20 +msgid "Collection created." +msgstr "L'insieme di canali è stato creato." + +#: ../../mod/group.php:26 +msgid "Could not create collection." +msgstr "Impossibile creare l'insieme." + +#: ../../mod/group.php:54 +msgid "Collection updated." +msgstr "Insieme aggiornato." + +#: ../../mod/group.php:86 +msgid "Create a collection of channels." +msgstr "Crea un insieme di canali." + +#: ../../mod/group.php:87 ../../mod/group.php:180 +msgid "Collection Name: " +msgstr "Nome dell'insieme:" + +#: ../../mod/group.php:89 ../../mod/group.php:183 +msgid "Members are visible to other channels" +msgstr "I membri potranno vedere gli altri canali dell'insieme" + +#: ../../mod/group.php:107 +msgid "Collection removed." +msgstr "Insieme rimosso." + +#: ../../mod/group.php:109 +msgid "Unable to remove collection." +msgstr "Impossibile rimuovere l'insieme." + +#: ../../mod/group.php:179 +msgid "Collection Editor" +msgstr "Modifica l'insieme" + +#: ../../mod/group.php:193 +msgid "Members" +msgstr "Membri" + +#: ../../mod/group.php:195 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" + +#: ../../mod/group.php:227 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." + +#: ../../mod/connect.php:56 ../../mod/connect.php:104 +msgid "Continue" +msgstr "Continua" + +#: ../../mod/connect.php:85 +msgid "Premium Channel Setup" +msgstr "Canale premium - configurazione" + +#: ../../mod/connect.php:87 +msgid "Enable premium channel connection restrictions" +msgstr "Abilita le restrizioni del canale premium" + +#: ../../mod/connect.php:88 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." + +#: ../../mod/connect.php:90 ../../mod/connect.php:110 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" + +#: ../../mod/connect.php:91 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" + +#: ../../mod/connect.php:92 ../../mod/connect.php:113 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." + +#: ../../mod/connect.php:101 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" + +#: ../../mod/connect.php:109 +msgid "Restricted or Premium Channel" +msgstr "Canale premium - con restrizioni" + +#: ../../mod/viewconnections.php:59 +msgid "No connections." +msgstr "Nessun contatto." + +#: ../../mod/viewconnections.php:72 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: ../../mod/locs.php:21 ../../mod/locs.php:49 +msgid "Location not found." +msgstr "Indirizzo non trovato." + +#: ../../mod/locs.php:57 +msgid "Location lookup failed." +msgstr "La ricerca dell'indirizzo è fallita." + +#: ../../mod/locs.php:61 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." + +#: ../../mod/locs.php:93 +msgid "No locations found." +msgstr "Nessun indirizzo trovato." + +#: ../../mod/locs.php:104 +msgid "Manage Channel Locations" +msgstr "Modifica gli indirizzi del canale" + +#: ../../mod/locs.php:105 +msgid "Location (address)" +msgstr "Indirizzo" + +#: ../../mod/locs.php:106 +msgid "Primary Location" +msgstr "Indirizzo primario" + +#: ../../mod/locs.php:107 +msgid "Drop location" +msgstr "Elimina un indirizzo" + +#: ../../mod/post.php:234 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo." + +#: ../../mod/setup.php:191 +msgid "$Projectname Server - Setup" +msgstr "Server $Projectname - Installazione" + +#: ../../mod/setup.php:195 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." + +#: ../../mod/setup.php:199 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." + +#: ../../mod/setup.php:206 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." + +#: ../../mod/setup.php:211 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." + +#: ../../mod/setup.php:215 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." + +#: ../../mod/setup.php:216 ../../mod/setup.php:284 ../../mod/setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." + +#: ../../mod/setup.php:281 +msgid "System check" +msgstr "Verifica del sistema" + +#: ../../mod/setup.php:286 +msgid "Check again" +msgstr "Verifica di nuovo" + +#: ../../mod/setup.php:308 +msgid "Database connection" +msgstr "Connessione al database" + +#: ../../mod/setup.php:309 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." + +#: ../../mod/setup.php:310 +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/setup.php:311 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." + +#: ../../mod/setup.php:315 +msgid "Database Server Name" +msgstr "Server del database" + +#: ../../mod/setup.php:315 +msgid "Default is localhost" +msgstr "'localhost' è il predefinito" + +#: ../../mod/setup.php:316 +msgid "Database Port" +msgstr "Port del database" + +#: ../../mod/setup.php:316 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" + +#: ../../mod/setup.php:317 +msgid "Database Login Name" +msgstr "Utente database" + +#: ../../mod/setup.php:318 +msgid "Database Login Password" +msgstr "Password database" + +#: ../../mod/setup.php:319 +msgid "Database Name" +msgstr "Nome database" + +#: ../../mod/setup.php:320 +msgid "Database Type" +msgstr "Tipo database" + +#: ../../mod/setup.php:322 ../../mod/setup.php:363 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del hub" + +#: ../../mod/setup.php:322 ../../mod/setup.php:363 +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 di Hubzilla." + +#: ../../mod/setup.php:323 ../../mod/setup.php:365 +msgid "Website URL" +msgstr "URL completo del sito" + +#: ../../mod/setup.php:323 ../../mod/setup.php:365 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." + +#: ../../mod/setup.php:325 ../../mod/setup.php:367 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo hub" + +#: ../../mod/setup.php:352 +msgid "Site settings" +msgstr "Impostazioni del hub" + +#: ../../mod/setup.php:417 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" + +#: ../../mod/setup.php:418 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." + +#: ../../mod/setup.php:422 +msgid "PHP executable path" +msgstr "Path del comando PHP" + +#: ../../mod/setup.php:422 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." + +#: ../../mod/setup.php:427 +msgid "Command line PHP" +msgstr "PHP da riga di comando" + +#: ../../mod/setup.php:436 +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/setup.php:437 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." + +#: ../../mod/setup.php:440 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/setup.php:458 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." + +#: ../../mod/setup.php:463 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puoi regolare queste impostazioni sul server in php.ini" + +#: ../../mod/setup.php:465 +msgid "PHP upload limits" +msgstr "Limiti PHP in upload" + +#: ../../mod/setup.php:488 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" + +#: ../../mod/setup.php:489 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../mod/setup.php:492 +msgid "Generate encryption keys" +msgstr "Genera chiavi di cifratura" + +#: ../../mod/setup.php:504 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" + +#: ../../mod/setup.php:505 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" + +#: ../../mod/setup.php:506 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" + +#: ../../mod/setup.php:507 +msgid "mysqli or postgres PHP module" +msgstr "modulo PHP per mysqli oppure prostgres" + +#: ../../mod/setup.php:508 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" + +#: ../../mod/setup.php:509 +msgid "mcrypt PHP module" +msgstr "modulo PHP mcrypt" + +#: ../../mod/setup.php:510 +msgid "xml PHP module" +msgstr "modulo xml PHP" + +#: ../../mod/setup.php:514 ../../mod/setup.php:516 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" + +#: ../../mod/setup.php:514 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" + +#: ../../mod/setup.php:520 ../../mod/setup.php:523 +msgid "proc_open" +msgstr "proc_open" + +#: ../../mod/setup.php:520 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" + +#: ../../mod/setup.php:528 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." + +#: ../../mod/setup.php:532 +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 installato." + +#: ../../mod/setup.php:536 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." + +#: ../../mod/setup.php:540 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" + +#: ../../mod/setup.php:544 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." + +#: ../../mod/setup.php:548 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Errore: il modulo PHP mcrypt è richiesto ma non installato." + +#: ../../mod/setup.php:552 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." + +#: ../../mod/setup.php:570 +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 di Hubzilla ma non è in grado di farlo." + +#: ../../mod/setup.php:571 +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 "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." + +#: ../../mod/setup.php:572 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." + +#: ../../mod/setup.php:573 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." + +#: ../../mod/setup.php:576 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" + +#: ../../mod/setup.php:590 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." + +#: ../../mod/setup.php:591 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the Red top level folder." +msgstr "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura a %s sotto la cartella di installazione di Hubzilla." + +#: ../../mod/setup.php:592 ../../mod/setup.php:613 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." + +#: ../../mod/setup.php:593 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." + +#: ../../mod/setup.php:596 +#, php-format +msgid "%s is writable" +msgstr "%s è scrivibile" + +#: ../../mod/setup.php:612 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to" +" have write access to the store directory under the Red top level folder" +msgstr "Hubzilla salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di RedMatrix" + +#: ../../mod/setup.php:616 +msgid "store is writable" +msgstr "l'archivio è scrivibile" + +#: ../../mod/setup.php:649 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." + +#: ../../mod/setup.php:650 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" + +#: ../../mod/setup.php:651 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." + +#: ../../mod/setup.php:652 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." + +#: ../../mod/setup.php:653 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." + +#: ../../mod/setup.php:654 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." + +#: ../../mod/setup.php:656 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" + +#: ../../mod/setup.php:662 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" + +#: ../../mod/setup.php:665 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" + +#: ../../mod/setup.php:674 +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 puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." + +#: ../../mod/setup.php:698 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." + +#: ../../mod/setup.php:732 +msgid "

What next

" +msgstr "

I prossimi passi

" + +#: ../../mod/setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." + +#: ../../mod/sharedwithme.php:94 +msgid "Files: shared with me" +msgstr "File: condivisi con me" + +#: ../../mod/sharedwithme.php:96 +msgid "NEW" +msgstr "NOVITÀ" + +#: ../../mod/sharedwithme.php:99 +msgid "Remove all files" +msgstr "Elimina tutti i file" + +#: ../../mod/sharedwithme.php:100 +msgid "Remove this file" +msgstr "Elimina questo file" + +#: ../../mod/suggest.php:35 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." #: ../../mod/profiles.php:18 ../../mod/profiles.php:174 #: ../../mod/profiles.php:231 ../../mod/profiles.php:600 @@ -6495,7 +8727,7 @@ msgstr "Il profilo non è disponibile per l'export." #: ../../mod/profiles.php:241 msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio ." +msgstr "Il nome del profilo è obbligatorio." #: ../../mod/profiles.php:404 msgid "Marital Status" @@ -6525,10 +8757,6 @@ msgstr "Religione" msgid "Political Views" msgstr "Orientamento politico" -#: ../../mod/profiles.php:431 ../../mod/id.php:33 -msgid "Gender" -msgstr "Sesso" - #: ../../mod/profiles.php:435 msgid "Sexual Preference" msgstr "Preferenze sessuali" @@ -6541,10 +8769,6 @@ msgstr "Home page" msgid "Interests" msgstr "Interessi" -#: ../../mod/profiles.php:447 ../../mod/admin.php:953 -msgid "Address" -msgstr "Indirizzo" - #: ../../mod/profiles.php:537 msgid "Profile updated." msgstr "Profilo aggiornato." @@ -6709,7 +8933,7 @@ msgstr "Scuola/educazione" msgid "This is your default profile." msgstr "Questo è il tuo profilo predefinito." -#: ../../mod/profiles.php:728 ../../mod/directory.php:218 +#: ../../mod/profiles.php:728 msgid "Age: " msgstr "Età:" @@ -6719,2216 +8943,238 @@ msgstr "Modifica/gestisci i profili" #: ../../mod/profiles.php:772 msgid "Add profile things" -msgstr "Aggiungi Oggetti al profilo" +msgstr "Aggiungi oggetti al profilo" #: ../../mod/profiles.php:773 msgid "Include desirable objects in your profile" msgstr "Aggiungi oggetti interessanti al tuo profilo" -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Nessuna valutazione" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Valutazioni" +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Valutazione:" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Sito web:" +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "Visibile a" -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Descrizione:" +#: ../../mod/rbmark.php:88 +msgid "Select a bookmark folder" +msgstr "Scegli una cartella di segnalibri" -#: ../../mod/viewsrc.php:38 -msgid "Source of Item" -msgstr "Sorgente" +#: ../../mod/rbmark.php:93 +msgid "Save Bookmark" +msgstr "Salva segnalibro" -#: ../../mod/mitem.php:51 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." +#: ../../mod/rbmark.php:94 +msgid "URL of bookmark" +msgstr "URL del segnalibro" -#: ../../mod/mitem.php:74 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." +#: ../../mod/rbmark.php:99 +msgid "Or enter new bookmark folder name" +msgstr "O inserisci il nome di una nuova cartella di segnalibri" -#: ../../mod/mitem.php:89 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." +#: ../../mod/import_items.php:101 +msgid "Import completed" +msgstr "Importazione completata" -#: ../../mod/mitem.php:151 ../../mod/mitem.php:220 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" +#: ../../mod/import_items.php:119 +msgid "Import Items" +msgstr "Importa i contenuti" -#: ../../mod/mitem.php:154 ../../mod/mitem.php:168 -msgid "Link Name" -msgstr "Nome link" - -#: ../../mod/mitem.php:155 ../../mod/mitem.php:169 -msgid "Link Target" -msgstr "Destinazione link" - -#: ../../mod/mitem.php:156 ../../mod/mitem.php:226 -msgid "Use Hubzilla magic-auth if available" -msgstr "Usa l'autenticazione magica di Hubzilla, se disponibile" - -#: ../../mod/mitem.php:157 ../../mod/mitem.php:227 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:228 -msgid "Order in list" -msgstr "Ordine dell'elenco" - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:228 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" - -#: ../../mod/mitem.php:159 -msgid "Submit and finish" -msgstr "Salva e termina" - -#: ../../mod/mitem.php:160 -msgid "Submit and continue" -msgstr "Salva e continua" - -#: ../../mod/mitem.php:166 -msgid "Menu:" -msgstr "Menu:" - -#: ../../mod/mitem.php:172 -msgid "Edit menu" -msgstr "Modifica il menù" - -#: ../../mod/mitem.php:175 -msgid "Edit element" -msgstr "Modifica l'elemento" - -#: ../../mod/mitem.php:176 -msgid "Drop element" -msgstr "Elimina l'elemento" - -#: ../../mod/mitem.php:177 -msgid "New element" -msgstr "Nuovo elemento" - -#: ../../mod/mitem.php:178 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" - -#: ../../mod/mitem.php:179 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" - -#: ../../mod/mitem.php:180 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" - -#: ../../mod/mitem.php:181 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" - -#: ../../mod/mitem.php:198 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." - -#: ../../mod/mitem.php:209 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." - -#: ../../mod/mitem.php:211 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." - -#: ../../mod/mitem.php:218 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" - -#: ../../mod/mitem.php:224 -msgid "Link text" -msgstr "Testo del link" - -#: ../../mod/mitem.php:225 -msgid "URL of link" -msgstr "Indirizzo del link" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." - -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:286 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Ciao %s. L'autenticazione magica è avvenuta con successo." - -#: ../../mod/directory.php:224 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" - -#: ../../mod/directory.php:236 -msgid "Gender: " -msgstr "Sesso:" - -#: ../../mod/directory.php:238 -msgid "Status: " -msgstr "Stato:" - -#: ../../mod/directory.php:240 -msgid "Homepage: " -msgstr "Homepage:" - -#: ../../mod/directory.php:243 -msgid "Hometown: " -msgstr "Città dove vivo:" - -#: ../../mod/directory.php:245 -msgid "About: " -msgstr "Informazioni:" - -#: ../../mod/directory.php:303 -msgid "Public Forum:" -msgstr "Forum pubblico:" - -#: ../../mod/directory.php:306 -msgid "Keywords: " -msgstr "Parole chiave:" - -#: ../../mod/directory.php:311 -#, php-format -msgid "Common connections: %s" -msgstr "Contatti in comune: %s" - -#: ../../mod/directory.php:363 -msgid "Finding:" -msgstr "Ricerca:" - -#: ../../mod/directory.php:368 -msgid "next page" -msgstr "pagina successiva" - -#: ../../mod/directory.php:368 -msgid "previous page" -msgstr "pagina precedente" - -#: ../../mod/directory.php:385 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." - -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Esporta il canale" - -#: ../../mod/uexport.php:35 +#: ../../mod/import_items.php:120 msgid "" -"Export your basic channel information to a small file. This acts as a " -"backup of your connections, permissions, profile and basic data, which can " -"be used to import your data to a new hub, but\tdoes not contain your " -"content." -msgstr "Esporta le informazioni di base del tuo canale in un piccolo file. E' utile per avere un salvataggio di sicurezza dei tuoi contatti, del tuo profilo ed altre informazioni fondamentali. Può essere usato per importare il tuo canale su un nuovo server, ma\tnon include i contenuti, per esempio articoli e foto." +"Use this form to import existing posts and content from an export file." +msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza." -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Esporta i contenuti" +#: ../../view/theme/redbasic/php/config.php:82 +msgid "Focus (Hubzilla default)" +msgstr "Focus (predefinito)" -#: ../../mod/uexport.php:37 -msgid "" -"Export your channel information and all the content to a JSON backup. This " -"backs up all of your connections, permissions, profile data and all of your " -"content, but is generally not suitable for importing a channel to a new hub " -"as this file may be VERY large. Please be patient - it may take several " -"minutes for this download to begin." -msgstr "Esporta i dati del canale e i contenuti in un file in formato JSON. E' un salvataggio dei tuoi contatti, dei dati del profilo e anche di tutti i contenuti. Questa non è la soluzione opportuna per importare il tuo canale su un nuovo server, visto che il file potrebbe avere dimensioni NOTEVOLI. Devi pazientare - ci vorranno alcuni minuti per raccogliere i dati prima che inizi lo scaricamento." - -#: ../../mod/viewconnections.php:62 -msgid "No connections." -msgstr "Nessun contatto." - -#: ../../mod/viewconnections.php:75 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." - -#: ../../mod/admin.php:93 ../../mod/admin.php:445 -msgid "Site" -msgstr "Sito" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "Account" - -#: ../../mod/admin.php:95 ../../mod/admin.php:945 -msgid "Channels" -msgstr "Canali" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1036 ../../mod/admin.php:1076 -msgid "Plugins" -msgstr "Plugin" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1236 ../../mod/admin.php:1270 -msgid "Themes" -msgstr "Temi" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "Coda di attesa" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "Configurazione del profilo" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "Aggiornamenti al DB" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1355 -msgid "Logs" -msgstr "Log" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Plugin" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Registrazioni in attesa" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "# account" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "# account bloccati" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "# account scaduti" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "# account in scadenza" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "# canali" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "# primari" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "# cloni" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "Coda messaggi in uscita" - -#: ../../mod/admin.php:240 ../../mod/admin.php:444 ../../mod/admin.php:539 -#: ../../mod/admin.php:808 ../../mod/admin.php:944 ../../mod/admin.php:1035 -#: ../../mod/admin.php:1075 ../../mod/admin.php:1235 ../../mod/admin.php:1269 -#: ../../mod/admin.php:1354 -msgid "Administration" -msgstr "Amministrazione" - -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "Riepilogo" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "Account creati" - -#: ../../mod/admin.php:245 ../../mod/admin.php:543 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "Canali creati" - -#: ../../mod/admin.php:247 ../../mod/admin.php:544 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "Versione" - -#: ../../mod/admin.php:359 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." - -#: ../../mod/admin.php:398 -msgid "experimental" -msgstr "sperimentale" - -#: ../../mod/admin.php:400 -msgid "unsupported" -msgstr "non supportato" - -#: ../../mod/admin.php:425 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" - -#: ../../mod/admin.php:431 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" - -#: ../../mod/admin.php:432 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" - -#: ../../mod/admin.php:433 -msgid "My site has free access only" -msgstr "È un servizio gratuito" - -#: ../../mod/admin.php:434 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" - -#: ../../mod/admin.php:447 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registrazione" - -#: ../../mod/admin.php:448 -msgid "File upload" -msgstr "Caricamento file" - -#: ../../mod/admin.php:449 -msgid "Policies" -msgstr "Politiche" - -#: ../../mod/admin.php:454 -msgid "Site name" -msgstr "Nome del sito" - -#: ../../mod/admin.php:455 -msgid "Banner/Logo" -msgstr "Banner o logo" - -#: ../../mod/admin.php:456 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" - -#: ../../mod/admin.php:456 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" - -#: ../../mod/admin.php:457 -msgid "System language" -msgstr "Lingua di sistema" - -#: ../../mod/admin.php:458 -msgid "System theme" -msgstr "Tema di sistema" - -#: ../../mod/admin.php:458 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" - -#: ../../mod/admin.php:459 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" - -#: ../../mod/admin.php:459 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" - -#: ../../mod/admin.php:461 -msgid "Enable Diaspora Protocol" -msgstr "Abilita la comunicazione con Diaspora" - -#: ../../mod/admin.php:461 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Sperimentale - per comunicare con Diaspora e Friendica" - -#: ../../mod/admin.php:462 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" - -#: ../../mod/admin.php:462 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" - -#: ../../mod/admin.php:463 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" - -#: ../../mod/admin.php:463 -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:464 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" - -#: ../../mod/admin.php:465 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" - -#: ../../mod/admin.php:466 -msgid "Register text" -msgstr "Testo di registrazione" - -#: ../../mod/admin.php:466 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: ../../mod/admin.php:467 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" - -#: ../../mod/admin.php:467 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." - -#: ../../mod/admin.php:468 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" - -#: ../../mod/admin.php:468 -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. Lascia vuoto per accettare connessioni da qualsiasi dominio." - -#: ../../mod/admin.php:469 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: ../../mod/admin.php:469 -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. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" - -#: ../../mod/admin.php:470 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" - -#: ../../mod/admin.php:470 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -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:471 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: ../../mod/admin.php:471 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." - -#: ../../mod/admin.php:472 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" - -#: ../../mod/admin.php:472 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." - -#: ../../mod/admin.php:473 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" - -#: ../../mod/admin.php:473 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per mostrare nell'elenco pubblico tutti i profili registrati su questo sito." - -#: ../../mod/admin.php:474 -msgid "Disable discovery tab" -msgstr "Disabilita la funzione 'scopri'" - -#: ../../mod/admin.php:474 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti." - -#: ../../mod/admin.php:475 -msgid "No login on Homepage" -msgstr "Non mostrare il login sulla homepage" - -#: ../../mod/admin.php:475 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato da un canale)." - -#: ../../mod/admin.php:477 -msgid "Proxy user" -msgstr "Utente proxy" - -#: ../../mod/admin.php:478 -msgid "Proxy URL" -msgstr "URL proxy" - -#: ../../mod/admin.php:479 -msgid "Network timeout" -msgstr "Timeout rete" - -#: ../../mod/admin.php:479 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." - -#: ../../mod/admin.php:480 -msgid "Delivery interval" -msgstr "Recapito ritardato" - -#: ../../mod/admin.php:480 -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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." - -#: ../../mod/admin.php:481 -msgid "Poll interval" -msgstr "Intervallo di polling" - -#: ../../mod/admin.php:481 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." - -#: ../../mod/admin.php:482 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" - -#: ../../mod/admin.php:482 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." - -#: ../../mod/admin.php:483 -msgid "Expiration period in days for imported (matrix/network) content" -msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" - -#: ../../mod/admin.php:483 -msgid "0 for no expiration of imported content" -msgstr "0 per non avere scadenza" - -#: ../../mod/admin.php:531 -msgid "No server found" -msgstr "Server non trovato" - -#: ../../mod/admin.php:538 ../../mod/admin.php:822 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:538 -msgid "for channel" -msgstr "per canale" - -#: ../../mod/admin.php:538 -msgid "on server" -msgstr "sul server" - -#: ../../mod/admin.php:538 -msgid "Status" -msgstr "Stato" - -#: ../../mod/admin.php:540 -msgid "Server" -msgstr "Server" - -#: ../../mod/admin.php:557 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." - -#: ../../mod/admin.php:567 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." - -#: ../../mod/admin.php:570 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." - -#: ../../mod/admin.php:574 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." - -#: ../../mod/admin.php:577 -#, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" - -#: ../../mod/admin.php:593 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: ../../mod/admin.php:597 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." - -#: ../../mod/admin.php:599 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." - -#: ../../mod/admin.php:600 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." - -#: ../../mod/admin.php:632 -msgid "Queue Statistics" -msgstr "Statistiche della coda" - -#: ../../mod/admin.php:633 -msgid "Total Entries" -msgstr "Totale" - -#: ../../mod/admin.php:634 -msgid "Priority" -msgstr "Priorità" - -#: ../../mod/admin.php:635 -msgid "Destination URL" -msgstr "URL di destinazione" - -#: ../../mod/admin.php:636 -msgid "Mark hub permanently offline" -msgstr "Questo hub è definitivamente offline" - -#: ../../mod/admin.php:637 -msgid "Empty queue for this hub" -msgstr "Svuota la coda per questo hub" - -#: ../../mod/admin.php:638 -msgid "Last known contact" -msgstr "Ultimo scambio dati" - -#: ../../mod/admin.php:674 -#, 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:682 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: ../../mod/admin.php:718 -msgid "Account not found" -msgstr "Account non trovato" - -#: ../../mod/admin.php:738 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: ../../mod/admin.php:746 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: ../../mod/admin.php:809 ../../mod/admin.php:821 -msgid "Users" -msgstr "Utenti" - -#: ../../mod/admin.php:811 ../../mod/admin.php:947 -msgid "select all" -msgstr "seleziona tutti" - -#: ../../mod/admin.php:812 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: ../../mod/admin.php:813 -msgid "Request date" -msgstr "Data richiesta" - -#: ../../mod/admin.php:814 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: ../../mod/admin.php:815 -msgid "Approve" -msgstr "Approva" - -#: ../../mod/admin.php:816 -msgid "Deny" -msgstr "Nega" - -#: ../../mod/admin.php:818 ../../mod/connedit.php:517 -#: ../../mod/connedit.php:720 -msgid "Block" -msgstr "Blocca" - -#: ../../mod/admin.php:819 ../../mod/connedit.php:517 -#: ../../mod/connedit.php:720 -msgid "Unblock" -msgstr "Sblocca" - -#: ../../mod/admin.php:822 -msgid "Register date" -msgstr "Data registrazione" - -#: ../../mod/admin.php:822 -msgid "Last login" -msgstr "Ultimo accesso" - -#: ../../mod/admin.php:822 -msgid "Expires" -msgstr "Con scadenza" - -#: ../../mod/admin.php:822 -msgid "Service Class" -msgstr "Classe dell'account" - -#: ../../mod/admin.php:824 -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 eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" - -#: ../../mod/admin.php:825 -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à eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?" - -#: ../../mod/admin.php:859 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" - -#: ../../mod/admin.php:866 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" - -#: ../../mod/admin.php:886 -msgid "Channel not found" -msgstr "Canale non trovato" - -#: ../../mod/admin.php:897 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" - -#: ../../mod/admin.php:908 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" - -#: ../../mod/admin.php:908 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" - -#: ../../mod/admin.php:949 -msgid "Censor" -msgstr "Applica una censura" - -#: ../../mod/admin.php:950 -msgid "Uncensor" -msgstr "Rimuovi la censura" - -#: ../../mod/admin.php:953 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:955 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" - -#: ../../mod/admin.php:956 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" - -#: ../../mod/admin.php:996 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." - -#: ../../mod/admin.php:1000 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." - -#: ../../mod/admin.php:1010 ../../mod/admin.php:1208 -msgid "Disable" -msgstr "Disattiva" - -#: ../../mod/admin.php:1013 ../../mod/admin.php:1210 -msgid "Enable" -msgstr "Attiva" - -#: ../../mod/admin.php:1037 ../../mod/admin.php:1237 -msgid "Toggle" -msgstr "Attiva/disattiva" - -#: ../../mod/admin.php:1045 ../../mod/admin.php:1247 -msgid "Author: " -msgstr "Autore:" - -#: ../../mod/admin.php:1046 ../../mod/admin.php:1248 -msgid "Maintainer: " -msgstr "Gestore:" - -#: ../../mod/admin.php:1173 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: ../../mod/admin.php:1229 -msgid "Screenshot" -msgstr "Istantanea dello schermo" - -#: ../../mod/admin.php:1275 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: ../../mod/admin.php:1276 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: ../../mod/admin.php:1300 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." - -#: ../../mod/admin.php:1357 -msgid "Clear" -msgstr "Pulisci" - -#: ../../mod/admin.php:1363 -msgid "Debugging" -msgstr "Debugging" - -#: ../../mod/admin.php:1364 -msgid "Log file" -msgstr "File di log" - -#: ../../mod/admin.php:1364 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato Hubzilla." - -#: ../../mod/admin.php:1365 -msgid "Log level" -msgstr "Livello di log" - -#: ../../mod/admin.php:1411 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" - -#: ../../mod/admin.php:1412 ../../mod/admin.php:1432 -msgid "Field nickname" -msgstr "Nome breve del campo" - -#: ../../mod/admin.php:1412 ../../mod/admin.php:1432 -msgid "System name of field" -msgstr "Nome di sistema del campo" - -#: ../../mod/admin.php:1413 ../../mod/admin.php:1433 -msgid "Input type" -msgstr "Tipo di dati" - -#: ../../mod/admin.php:1414 ../../mod/admin.php:1434 -msgid "Field Name" -msgstr "Nome del campo" - -#: ../../mod/admin.php:1414 ../../mod/admin.php:1434 -msgid "Label on profile pages" -msgstr "Etichetta da mostrare sulla pagina del profilo" - -#: ../../mod/admin.php:1415 ../../mod/admin.php:1435 -msgid "Help text" -msgstr "Testo di aiuto" - -#: ../../mod/admin.php:1415 ../../mod/admin.php:1435 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (opzionali)" - -#: ../../mod/admin.php:1425 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" - -#: ../../mod/admin.php:1431 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Inviato!" - -#: ../../mod/editblock.php:112 -msgid "Edit Block" -msgstr "Modifica il riquadro" - -#: ../../mod/editblock.php:123 -msgid "Delete block?" -msgstr "Vuoi eliminare questo riquadro?" - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "La registrazione su questo sito è soggetta ad approvazione." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrati su un altro server affiliato" - -#: ../../mod/register.php:174 -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:185 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ho più di 13 anni e accetto le %s di questo sito" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo sito è necessario un invito." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Il tuo indirizzo email" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Scegli una password" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" - -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Elimina questo account" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "ATTENZIONE:" - -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Questo comando è definitivo e non può essere annullato!" - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo server saranno rimossi dalla rete." - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: ../../mod/item.php:437 -msgid "Empty post discarded." -msgstr "L'articolo vuoto è stato ignorato." - -#: ../../mod/item.php:479 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." - -#: ../../mod/item.php:885 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Articolo non salvato." - -#: ../../mod/item.php:1103 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare l'articolo dal database." - -#: ../../mod/item.php:1110 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale." - -#: ../../mod/item.php:1117 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." - -#: ../../mod/lockview.php:58 -msgid "Visible to:" -msgstr "Visibile a:" - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:144 -msgid "Block Name" -msgstr "Nome del riquadro" - -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "Nome" - -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "Cognome" - -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "Nick" - -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "Nome e cognome" - -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "Foto del profilo 16px" - -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "Foto del profilo 32px" - -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "Foto del profilo 48px" - -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "Foto del profilo 64px" - -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "Foto del profilo 80px" - -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "Foto del profilo 128px" - -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "Fuso orario" - -#: ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "Indirizzo home page" - -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "Anno di nascita" - -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "Mese di nascita" - -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "Giorno di nascita" - -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "Data di nascita" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Nessun messaggio." - -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: ../../mod/layouts.php:111 -msgid "Help with this feature" -msgstr "La guida per questa funzionalità" - -#: ../../mod/layouts.php:132 -msgid "Layout Name" -msgstr "Nome layout" - -#: ../../mod/layouts.php:171 -msgid "Comanche page description language help" -msgstr "Guida di Comanche Page Description Language" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Voti totali" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Valutazione media" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Elimina questo canale" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Questo canale sarà completamente eliminato dalla rete." - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Rimuovi questo canale e tutti i suoi cloni dalla rete" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" - -#: ../../mod/connedit.php:262 -msgid "is now connected to" -msgstr "ha come nuovo contatto" - -#: ../../mod/connedit.php:375 -msgid "Could not access address book record." -msgstr "Impossibile accedere alle informazioni della rubrica." - -#: ../../mod/connedit.php:389 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Il canale non è disponibile - impossibile aggiornare." - -#: ../../mod/connedit.php:396 -msgid "Channel has been unblocked" -msgstr "Il canale è stato sbloccato" - -#: ../../mod/connedit.php:397 -msgid "Channel has been blocked" -msgstr "Il canale è stato bloccato" - -#: ../../mod/connedit.php:401 ../../mod/connedit.php:413 -#: ../../mod/connedit.php:425 ../../mod/connedit.php:437 -#: ../../mod/connedit.php:453 -msgid "Unable to set address book parameters." -msgstr "Impossibile impostare i parametri della rubrica." - -#: ../../mod/connedit.php:408 -msgid "Channel has been unignored" -msgstr "Il canale non sarà più ignorato" - -#: ../../mod/connedit.php:409 -msgid "Channel has been ignored" -msgstr "Il canale sarà ignorato" - -#: ../../mod/connedit.php:420 -msgid "Channel has been unarchived" -msgstr "Il canale non è più archiviato" - -#: ../../mod/connedit.php:421 -msgid "Channel has been archived" -msgstr "Il canale è stato archiviato" - -#: ../../mod/connedit.php:432 -msgid "Channel has been unhidden" -msgstr "Il canale non è più nascosto" - -#: ../../mod/connedit.php:433 -msgid "Channel has been hidden" -msgstr "Il canale è stato nascosto" - -#: ../../mod/connedit.php:448 -msgid "Channel has been approved" -msgstr "Il canale è stato approvato" - -#: ../../mod/connedit.php:449 -msgid "Channel has been unapproved" -msgstr "Il canale non è più approvato" - -#: ../../mod/connedit.php:477 -msgid "Connection has been removed." -msgstr "Il contatto è stato rimosso." - -#: ../../mod/connedit.php:497 -#, php-format -msgid "View %s's profile" -msgstr "Guarda il profilo di %s" - -#: ../../mod/connedit.php:501 -msgid "Refresh Permissions" -msgstr "Modifica i permessi" - -#: ../../mod/connedit.php:504 -msgid "Fetch updated permissions" -msgstr "Guarda e modifica i permessi assegnati" - -#: ../../mod/connedit.php:508 -msgid "Recent Activity" -msgstr "Attività recenti" - -#: ../../mod/connedit.php:511 -msgid "View recent posts and comments" -msgstr "Leggi i post recenti e i commenti" - -#: ../../mod/connedit.php:520 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" - -#: ../../mod/connedit.php:524 ../../mod/connedit.php:721 -msgid "Unignore" -msgstr "Non ignorare" - -#: ../../mod/connedit.php:524 ../../mod/connedit.php:721 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignora" - -#: ../../mod/connedit.php:527 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" - -#: ../../mod/connedit.php:530 -msgid "Unarchive" -msgstr "Non archiviare" - -#: ../../mod/connedit.php:530 -msgid "Archive" -msgstr "Archivia" - -#: ../../mod/connedit.php:533 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" - -#: ../../mod/connedit.php:536 -msgid "Unhide" -msgstr "Non nascondere" - -#: ../../mod/connedit.php:536 -msgid "Hide" -msgstr "Nascondi" - -#: ../../mod/connedit.php:539 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" - -#: ../../mod/connedit.php:546 -msgid "Delete this connection" -msgstr "Elimina questo contatto" - -#: ../../mod/connedit.php:637 ../../mod/connedit.php:675 -msgid "Approve this connection" -msgstr "Approva questo contatto" - -#: ../../mod/connedit.php:637 -msgid "Accept connection to allow communication" -msgstr "Entra in contatto per poter comunicare" - -#: ../../mod/connedit.php:653 -#, php-format -msgid "Connections: settings for %s" -msgstr "Contatti: impostazioni per %s" - -#: ../../mod/connedit.php:654 -msgid "Apply these permissions automatically" -msgstr "Applica automaticamente questi permessi" - -#: ../../mod/connedit.php:658 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Applica i permessi indicati su questa pagina a tutti i nuovi contatti." - -#: ../../mod/connedit.php:662 -msgid "Slide to adjust your degree of friendship" -msgstr "Trascina per restringere il grado di amicizia da mostrare" - -#: ../../mod/connedit.php:671 -msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." -msgstr "I tuoi nuovi contatti potrebbero non essere abilitati a comunicare con te finché non salverai questa pagina (perché non hai permessi impostati). Sono stati selezionati i permessi standard per il tipo di canale che hai scelto. Non sono stati ancora salvati però. Puoi verificare le impostazioni e fare i cambiamenti che preferisci prima di salvare. " - -#: ../../mod/connedit.php:674 -msgid "inherited" -msgstr "derivato" - -#: ../../mod/connedit.php:677 -msgid "Connection has no individual permissions!" -msgstr "Non hai assegnato permessi individuali a questo contatto!" - -#: ../../mod/connedit.php:678 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Questo corrisponde alle tue impostazioni di privacy, ma puoi anche dare un'occhiata ai 'Permessi avanzati' per opzioni più dettagliate." - -#: ../../mod/connedit.php:680 -msgid "Profile Visibility" -msgstr "Visibilità del profilo" - -#: ../../mod/connedit.php:681 -#, 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/connedit.php:682 -msgid "Contact Information / Notes" -msgstr "Informazioni e annotazioni sul contatto" - -#: ../../mod/connedit.php:683 -msgid "Edit contact notes" -msgstr "Modifica le informazioni sul contatto" - -#: ../../mod/connedit.php:685 -msgid "Their Settings" -msgstr "Permessi concessi a te" - -#: ../../mod/connedit.php:686 -msgid "My Settings" -msgstr "I permessi che concedo" - -#: ../../mod/connedit.php:688 -msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." -msgstr "A questo canale sono stati applicati i permessi predefiniti ma non sono stati salvati. In realtà non esistono ancora dei permessi predefiniti da usare su questo sito. Controlla e verifica le impostazioni, [Salva] per confermare." - -#: ../../mod/connedit.php:689 -msgid "Clear/Disable Automatic Permissions" -msgstr "Rimuovi/disabilita i permessi automatici" - -#: ../../mod/connedit.php:690 -msgid "Forum Members" -msgstr "Membro di un forum" - -#: ../../mod/connedit.php:691 -msgid "Soapbox" -msgstr "Comunicati e annunci" - -#: ../../mod/connedit.php:692 -msgid "Full Sharing (typical social network permissions)" -msgstr "Condivisione completa (permessi tipici dei social network)" - -#: ../../mod/connedit.php:693 -msgid "Cautious Sharing " -msgstr "Condivisione prudente" - -#: ../../mod/connedit.php:694 -msgid "Follow Only" -msgstr "Follower" - -#: ../../mod/connedit.php:695 -msgid "Individual Permissions" -msgstr "Permessi individuali" - -#: ../../mod/connedit.php:696 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "I permessi nelle impostazioni di privacy hanno priorità su quelli mostrati in questa pagina. Non avrà alcun effetto cambiarli qui, se sono indicati come derivati." - -#: ../../mod/connedit.php:697 -msgid "Advanced Permissions" -msgstr "Permessi avanzati" - -#: ../../mod/connedit.php:698 -msgid "Simple Permissions (select one and submit)" -msgstr "Permessi semplificati (seleziona e salva)" - -#: ../../mod/connedit.php:702 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" - -#: ../../mod/connedit.php:703 -msgid "Block/Unblock contact" -msgstr "Blocca/sblocca contatto" - -#: ../../mod/connedit.php:704 -msgid "Ignore contact" -msgstr "Ignora il contatto" - -#: ../../mod/connedit.php:705 -msgid "Repair URL settings" -msgstr "Ripara le impostazioni URL" - -#: ../../mod/connedit.php:706 -msgid "View conversations" -msgstr "Leggi le conversazioni" - -#: ../../mod/connedit.php:708 -msgid "Delete contact" -msgstr "Elimina contatto" - -#: ../../mod/connedit.php:712 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" - -#: ../../mod/connedit.php:714 -msgid "Update public posts" -msgstr "Aggiorna gli articoli pubblici" - -#: ../../mod/connedit.php:716 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: ../../mod/connedit.php:722 -msgid "Currently blocked" -msgstr "Attualmente bloccato" - -#: ../../mod/connedit.php:723 -msgid "Currently ignored" -msgstr "Attualmente ignorato" - -#: ../../mod/connedit.php:724 -msgid "Currently archived" -msgstr "Attualmente archiviato" - -#: ../../mod/connedit.php:725 -msgid "Currently pending" -msgstr "Attualmente da approvare" - -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." - -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "Messaggio di errore ricevuto:" - -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Autenticazione fallita." - -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Autenticazione a distanza" - -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" - -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Autenticazione" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Messaggio revocato." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "A:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Oggetto:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Invia" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Messaggio non trovato." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Revoca il messaggio" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Conversazione privata" - -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcuna tecnologia per comunicare in modo sicuro. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Rifiuta" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Effettua l'accesso." - -#: ../../mod/post.php:235 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "L'autenticazione magica dal tuo sito non è disponibile. Hai accesso solamente a questo sito. Puoi provare a disconnetterti per tentare di nuovo." - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Aggiungi un canale" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "I contenuti che pubblichi sono mostrati nel tuo \"canale\". Un canale può essere usato come bacheca personale, come blog, oppure può essere un forum di discussione, un gruppo di interesse, una pagina di celebrità e molto altro. Puoi creare tanti canali quanti ne permette il tuo sito." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Oppure importa un tuo canale esistente da un altro server/hub" - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa più usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. Hubzilla sceglierà per te i permessi più adatti." - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Tipo di canale" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installata" - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "App non corretta" - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Inserisci del codice" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Modifica app" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Crea una app" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Nome app" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL icona" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "ID versione" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Prezzo app" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "Impossibile trovare l'insieme" - -#: ../../mod/network.php:129 -msgid "No such channel" -msgstr "Canale sconosciuto" - -#: ../../mod/network.php:143 -msgid "Search Results For:" -msgstr "Cerca risultati con:" - -#: ../../mod/network.php:198 -msgid "Collection is empty" -msgstr "L'insieme di canali è vuoto" - -#: ../../mod/network.php:207 -msgid "Collection: " -msgstr "Insieme:" - -#: ../../mod/network.php:226 -msgid "Connection: " -msgstr "Contatto:" - -#: ../../mod/network.php:233 -msgid "Invalid connection." -msgstr "Contatto non valido." - -#: ../../mod/page.php:119 -msgid "Ipsum Lorem" -msgstr "Ipsum Lorem" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "I miei segnalibri" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" - -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Sondaggio" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Guarda i risultati" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Non esistono restrizioni su questa classe di account." - -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "File: condivisi con me" - -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "NOVITÀ" - -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "Elimina tutti i file" - -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "Elimina questo file" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Schema predefinito" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-serif" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "Impostazioni del tema" -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Schema" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set font-size for posts and comments" -msgstr "Dimensioni del carattere per articoli e commenti" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Tipo di carattere" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Icone" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Ombra grande, predefinita 15px 15px 15px" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Ombra piccola, predefinita 5px 5px 5px" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Colore dell'ombra, predefinito #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Raggio degli angoli, predefinito 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Altezza della riga per articoli e commenti" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Immagine di sfondo" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Allega uno sfondo" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Colore di sfondo" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Immagine di sfondo della sezione" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Colore di sfondo dell'area principale" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Colore degli elementi della pagina - esadecimale" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Colore dei link - esadecimale" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Larghezza massima degli elementi della pagina. Predefinita: 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Larghezza minima degli elementi della pagina. Predefinita: 240px" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Larghezza di tutta l'area dei contenuti. Predefinita: 48%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Colore dei caratteri - esadecimale" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Background-size element" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Opacità degli elementi della pagina" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Mostra le anteprime solo degli articoli" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Mostra la colonna laterale sulla pagina del canale" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Colore della barra di navigazione" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Float degli oggetti della pagina" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Margine sinistro dell'area principale" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Margine destro dell'area principale" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Larghezza dell'area principale" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Margine sinistro della colonna laterale" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Margine destro della colonna laterale" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Hubzilla default)" -msgstr "Light (predefinito)" - -#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:103 msgid "Select scheme" msgstr "Scegli uno schema" -#: ../../view/theme/redbasic/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:104 msgid "Narrow navbar" msgstr "Barra di navigazione ristretta" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:105 msgid "Navigation bar background color" msgstr "Barra di navigazione: Colore di sfondo" -#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Navigation bar gradient top color" msgstr "Barra di navigazione: Gradiente superiore" -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:107 msgid "Navigation bar gradient bottom color" msgstr "Barra di navigazione: Gradiente inferiore" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Navigation active button gradient top color" msgstr "Bottone di navigazione attivo: Gradiente superiore" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Navigation active button gradient bottom color" msgstr "Bottone di navigazione attivo: Gradiente inferiore" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Navigation bar border color " msgstr "Barra di navigazione: Colore del bordo" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Navigation bar icon color " msgstr "Barra di navigazione: Colore delle icone" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar active icon color " msgstr "Barra di navigazione: Colore dell'icona attiva" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:113 msgid "link color" msgstr "colore del link" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Set font-color for banner" msgstr "Colore del font del banner" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Set the background color" -msgstr "Imposta il colore di sfondo" +msgstr "Colore di sfondo" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Set the background image" msgstr "Immagine di sfondo" -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color of items" -msgstr "Imposta il colore di sfondo degli oggetti" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background color of comments" -msgstr "Imposta il colore di sfondo dei commenti" - #: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the border color of comments" -msgstr "Imposta il colore del bordo dei commenti" +msgid "Set the background color of items" +msgstr "Colore di sfondo degli oggetti" #: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the indent for comments" -msgstr "Imposta il lo spostamento a destra dei commenti" +msgid "Set the background color of comments" +msgstr "Colore di sfondo dei commenti" #: ../../view/theme/redbasic/php/config.php:119 +msgid "Set the border color of comments" +msgstr "Colore del bordo dei commenti" + +#: ../../view/theme/redbasic/php/config.php:120 +msgid "Set the indent for comments" +msgstr "Spostamento a destra dei commenti" + +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set the basic color for item icons" msgstr "Colore di base per le icone" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the hover color for item icons" msgstr "Colore per le icone in mouse-over" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set font-size for the entire application" msgstr "Dimensione font per tutto il sito" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Example: 14px" msgstr "Esempio: 14px" -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-color for posts and comments" -msgstr "Imposta il colore del carattere per articoli e commenti" - #: ../../view/theme/redbasic/php/config.php:124 +msgid "Set font-size for posts and comments" +msgstr "Dimensioni del carattere per post e commenti" + +#: ../../view/theme/redbasic/php/config.php:125 +msgid "Set font-color for posts and comments" +msgstr "Colore del carattere per post e commenti" + +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set radius of corners" msgstr "Raggio degli angoli stondati" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set shadow depth of photos" msgstr "Profondità dell'ombra delle foto" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set maximum width of content region in pixel" msgstr "Larghezza massima dell'area dei contenuti in pixel" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Leave empty for default width" msgstr "Lascia vuoto per usare il valore predefinito" -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Center page content" -msgstr "Centra il contenuto della pagina" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Imposta l'opacità minima della barra di navigazione per nasconderla" - #: ../../view/theme/redbasic/php/config.php:129 +msgid "Left align page content" +msgstr "Allinea a sinistra il contenuto della pagina" + +#: ../../view/theme/redbasic/php/config.php:130 +msgid "Set minimum opacity of nav bar - to hide it" +msgstr "Opacità minima della barra di navigazione - per nasconderla" + +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set size of conversation author photo" msgstr "Dimensione foto dell'autore della conversazione" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set size of followup author photos" msgstr "Dimensione foto dei partecipanti alla conversazione" -#: ../../boot.php:1345 +#: ../../boot.php:1302 #, php-format msgid "Update %s failed. See error logs." msgstr "%s: aggiornamento fallito. Controlla i log di errore." -#: ../../boot.php:1348 +#: ../../boot.php:1305 #, php-format msgid "Update Error at %s" msgstr "Errore di aggiornamento su %s" -#: ../../boot.php:1515 +#: ../../boot.php:1472 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Registrati per accedere ai servizi e alle applicazioni di Hubzilla" -#: ../../boot.php:1543 +#: ../../boot.php:1500 msgid "Password" msgstr "Password" -#: ../../boot.php:1544 +#: ../../boot.php:1501 msgid "Remember me" msgstr "Resta connesso" -#: ../../boot.php:1547 +#: ../../boot.php:1504 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: ../../boot.php:2166 +#: ../../boot.php:2130 msgid "toggle mobile" msgstr "attiva/disattiva versione mobile" -#: ../../boot.php:2301 +#: ../../boot.php:2265 msgid "Website SSL certificate is not valid. Please correct." msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." -#: ../../boot.php:2304 +#: ../../boot.php:2268 #, php-format -msgid "[red] Website SSL error for %s" -msgstr "[red] Errore SSL %s " +msgid "[hubzilla] Website SSL error for %s" +msgstr "[hubzilla] Errore SSL su %s" -#: ../../boot.php:2341 +#: ../../boot.php:2305 msgid "Cron/Scheduled tasks not running." -msgstr "Processi/cron non avviati." +msgstr "Processi cron non avviati." -#: ../../boot.php:2345 +#: ../../boot.php:2309 #, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "[red] Processi non avviati su %s" +msgid "[hubzilla] Cron tasks not running on %s" +msgstr "[hubzilla] Cron non è stato eseguito %s" diff --git a/view/it/hstrings.php b/view/it/hstrings.php index 38b8c745c..72fc2fa60 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -5,38 +5,69 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["Profile Photos"] = "Foto del profilo"; -$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."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; -$a->strings["created a new post"] = "Ha creato un nuovo articolo"; -$a->strings["commented on %s's post"] = "ha commentato l'articolo di %s"; -$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."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire"; -$a->strings["All Channels"] = "Tutti i canali"; -$a->strings["edit"] = "modifica"; -$a->strings["Collections"] = "Insiemi di canali"; -$a->strings["Edit collection"] = "Modifica l'insieme di canali"; -$a->strings["Add new collection"] = "Nuovo insieme"; -$a->strings["Channels not in any collection"] = "Canali che non sono in un insieme"; -$a->strings["add"] = "aggiungi"; -$a->strings["Not a valid email address"] = "Email non valida"; -$a->strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; -$a->strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; -$a->strings["An invitation is required."] = "È necessario un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non può essere verificato."; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; -$a->strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; -$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s"; -$a->strings["Administrator"] = "Amministratore"; -$a->strings["your registration password"] = "la password di registrazione"; -$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -$a->strings["Account approved."] = "Account approvato."; -$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -$a->strings["Account verified. Please login."] = "Registrazione verificata. Adesso puoi effettuare login."; -$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; -$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +$a->strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; +$a->strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; +$a->strings["Import completed."] = "L'importazione è terminata con successo."; +$a->strings["parent"] = "cartella superiore"; +$a->strings["Collection"] = "Cartella"; +$a->strings["Principal"] = "Principale"; +$a->strings["Addressbook"] = "Rubrica"; +$a->strings["Calendar"] = "Calendario"; +$a->strings["Schedule Inbox"] = "Appuntamenti ricevuti"; +$a->strings["Schedule Outbox"] = "Appuntamenti inviati"; +$a->strings["Unknown"] = "Sconosciuto"; +$a->strings["%1\$s used"] = "%1\$s occupati"; +$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s occupati di %2\$s (%3\$s%)"; +$a->strings["Files"] = "Archivio file"; +$a->strings["Total"] = "Totale"; +$a->strings["Shared"] = "Condiviso"; +$a->strings["Create"] = "Crea"; +$a->strings["Upload"] = "Carica"; +$a->strings["Name"] = "Nome"; +$a->strings["Type"] = "Tipo"; +$a->strings["Size"] = "Dimensione"; +$a->strings["Last Modified"] = "Ultima modifica"; +$a->strings["Edit"] = "Modifica"; +$a->strings["Delete"] = "Elimina"; +$a->strings["Create new folder"] = "Nuova cartella"; +$a->strings["Upload file"] = "Carica un file"; +$a->strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; +$a->strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale"; +$a->strings["Can view my connections"] = "Può vedere i miei contatti"; +$a->strings["Can view my file storage and photos"] = "Può vedere il mio archivio file e foto"; +$a->strings["Can view my webpages"] = "Può vedere le mie pagine web"; +$a->strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; +$a->strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +$a->strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei post"; +$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; +$a->strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; +$a->strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; +$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; +$a->strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +$a->strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +$a->strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; +$a->strings["Can edit my webpages"] = "Può modificare le mie pagine web"; +$a->strings["Can source my public posts in derived channels"] = "Può usare i miei post pubblici per creare canali derivati"; +$a->strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; +$a->strings["Social Networking"] = "Social network"; +$a->strings["Mostly Public"] = "Prevalentemente pubblico"; +$a->strings["Restricted"] = "Con restrizioni"; +$a->strings["Private"] = "Privato"; +$a->strings["Community Forum"] = "Forum di discussione"; +$a->strings["Feed Republish"] = "Aggregatore di feed esterni"; +$a->strings["Special Purpose"] = "Per finalità speciali"; +$a->strings["Celebrity/Soapbox"] = "Pagina per fan"; +$a->strings["Group Repository"] = "Repository di gruppo"; +$a->strings["Other"] = "Altro"; +$a->strings["Custom/Expert Mode"] = "Personalizzazione per esperti"; +$a->strings["Missing room name"] = "Chat senza nome"; +$a->strings["Duplicate room name"] = "Il nome della chat è duplicato"; +$a->strings["Invalid room specifier."] = "Il nome della chat non è valido."; +$a->strings["Room not found."] = "Chat non trovata."; +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["Room is full"] = "La chat è al completo"; $a->strings["Miscellaneous"] = "Altro"; $a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; $a->strings["Required"] = "Obbligatorio"; @@ -59,31 +90,69 @@ $a->strings["seconds"] = "secondi"; $a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa"; $a->strings["%1\$s's birthday"] = "Compleanno di %1\$s"; $a->strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s"; -$a->strings["New Page"] = "Nuova pagina web"; -$a->strings["Edit"] = "Modifica"; -$a->strings["View"] = "Guarda"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["Actions"] = "Azioni"; -$a->strings["Page Link"] = "Link alla pagina"; -$a->strings["Title"] = "Titolo"; -$a->strings["Created"] = "Creato"; -$a->strings["Edited"] = "Modificato"; -$a->strings["Public Timeline"] = "Diario pubblico"; +$a->strings["General Features"] = "Funzionalità di base"; +$a->strings["Content Expiration"] = "Scadenza"; +$a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; +$a->strings["Multiple Profiles"] = "Profili multipli"; +$a->strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; +$a->strings["Advanced Profiles"] = "Profili avanzati"; +$a->strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; +$a->strings["Profile Import/Export"] = "Importa/esporta il profilo"; +$a->strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; +$a->strings["Web Pages"] = "Pagine web"; +$a->strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; +$a->strings["Private Notes"] = "Note private"; +$a->strings["Enables a tool to store notes and reminders"] = "Abilita il riquadro per scrivere le tue annotazioni"; +$a->strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu"; +$a->strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione"; +$a->strings["Photo Location"] = "Posizione geografica"; +$a->strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; +$a->strings["Expert Mode"] = "Modalità esperto"; +$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate"; +$a->strings["Premium Channel"] = "Canale premium"; +$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale"; +$a->strings["Post Composition Features"] = "Modalità di scrittura post"; +$a->strings["Use Markdown"] = "Usa il markdown"; +$a->strings["Allow use of \"Markdown\" to format posts"] = "Consenti l'uso del markdown per formattare i post"; +$a->strings["Large Photos"] = "Foto grandi"; +$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Includi anteprime grandi delle foto nei post (640px). Se disabilitato le anteprime saranno piccole (320px)"; +$a->strings["Channel Sources"] = "Sorgenti del canale"; +$a->strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; +$a->strings["Even More Encryption"] = "Cifratura addizionale"; +$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi"; +$a->strings["Enable voting tools"] = "Permetti i post con votazione"; +$a->strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare"; +$a->strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; +$a->strings["Search by Date"] = "Ricerca per data"; +$a->strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; +$a->strings["Collections Filter"] = "Filtra per insiemi di canali"; +$a->strings["Enable widget to display Network posts only from selected collections"] = "Mostra il riquadro per filtrare i post di certi insiemi di canali"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; +$a->strings["Network Personal Tab"] = "Attività personale"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; +$a->strings["Network New Tab"] = "Contenuti nuovi"; +$a->strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; +$a->strings["Affinity Tool"] = "Filtro per affinità"; +$a->strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; +$a->strings["Connection Filtering"] = "Filtro sui contatti"; +$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; +$a->strings["Suggest Channels"] = "Suggerisci canali"; +$a->strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; +$a->strings["Post/Comment Tools"] = "Gestione post e commenti"; +$a->strings["Tagging"] = "Tag"; +$a->strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; +$a->strings["Post Categories"] = "Categorie dei post"; +$a->strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; +$a->strings["Saved Folders"] = "Cartelle salvate"; +$a->strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; +$a->strings["Dislike Posts"] = "Non mi piace"; +$a->strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; +$a->strings["Star Posts"] = "Post con stella"; +$a->strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; +$a->strings["Tag Cloud"] = "Nuvola di tag"; +$a->strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; $a->strings["Default"] = "Predefinito"; -$a->strings["Directory Options"] = "Opzioni elenco pubblico"; -$a->strings["Alphabetic"] = "Alfabetico"; -$a->strings["Reverse Alphabetic"] = "Alfabetico inverso"; -$a->strings["Newest to Oldest"] = "Prima i più recenti"; -$a->strings["Oldest to Newest"] = "Prima i più vecchi"; -$a->strings["Sort"] = "Ordinamento"; -$a->strings["Safe Mode"] = "Modalità SafeSearch"; -$a->strings["Public Forums Only"] = "Solo forum pubblici"; -$a->strings["This Website Only"] = "Solo in questo sito"; -$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -$a->strings["Starts:"] = "Inizio:"; -$a->strings["Finishes:"] = "Fine:"; -$a->strings["Location:"] = "Luogo:"; -$a->strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; $a->strings["Delete this item?"] = "Eliminare questo elemento?"; $a->strings["Comment"] = "Commento"; $a->strings["[+] show all"] = "[+] mostra tutto"; @@ -93,8 +162,8 @@ $a->strings["[-] collapse"] = "[-] riduci"; $a->strings["Password too short"] = "Password troppo corta"; $a->strings["Passwords do not match"] = "Le password non corrispondono"; $a->strings["everybody"] = "tutti"; -$a->strings["Secret Passphrase"] = "Chiave segreta"; -$a->strings["Passphrase hint"] = "Suggerimento per la chiave segreta"; +$a->strings["Secret Passphrase"] = "Parola chiave per decifrare"; +$a->strings["Passphrase hint"] = "Suggerimento per la parola chiave"; $a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; $a->strings["close all"] = "chiudi tutto"; $a->strings["Nothing new here"] = "Niente di nuovo qui"; @@ -121,137 +190,244 @@ $a->strings["about a year"] = "circa un anno"; $a->strings["%d years"] = "%d anni"; $a->strings[" "] = " "; $a->strings["timeago.numbers"] = "timeago.numbers"; -$a->strings["parent"] = "cartella superiore"; -$a->strings["Collection"] = "Cartella"; -$a->strings["Principal"] = "Principale"; -$a->strings["Addressbook"] = "Rubrica"; -$a->strings["Calendar"] = "Calendario"; -$a->strings["Schedule Inbox"] = "Appuntamenti ricevuti"; -$a->strings["Schedule Outbox"] = "Appuntamenti inviati"; -$a->strings["Unknown"] = "Sconosciuto"; -$a->strings["%1\$s used"] = "%1\$s occupati"; -$a->strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s occupati di %2\$s (%3\$s%)"; -$a->strings["Files"] = "Archivio file"; -$a->strings["Total"] = "Totale"; -$a->strings["Shared"] = "Condiviso"; -$a->strings["Create"] = "Crea"; -$a->strings["Upload"] = "Carica"; -$a->strings["Name"] = "Nome"; -$a->strings["Type"] = "Tipo"; -$a->strings["Size"] = "Dimensione"; -$a->strings["Last Modified"] = "Ultima modifica"; -$a->strings["Delete"] = "Elimina"; -$a->strings["Create new folder"] = "Crea una nuova cartella"; -$a->strings["Upload file"] = "Carica un file"; -$a->strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; -$a->strings["view full size"] = "guarda nelle dimensioni reali"; -$a->strings["General Features"] = "Funzionalità di base"; -$a->strings["Content Expiration"] = "Scadenza"; -$a->strings["Remove posts/comments and/or private messages at a future time"] = "Elimina gli articoli, i commenti o i messaggi privati dopo un lasso di tempo"; -$a->strings["Multiple Profiles"] = "Profili multipli"; -$a->strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; -$a->strings["Advanced Profiles"] = "Profili avanzati"; -$a->strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; -$a->strings["Profile Import/Export"] = "Importa/esporta il profilo"; -$a->strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su canali o siti diversi"; -$a->strings["Web Pages"] = "Pagine web"; -$a->strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; -$a->strings["Private Notes"] = "Note private"; -$a->strings["Enables a tool to store notes and reminders"] = "Abilita il riquadro per scrivere annotazioni"; -$a->strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu"; -$a->strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione"; -$a->strings["Photo Location"] = "Posizione geografica"; -$a->strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; -$a->strings["Expert Mode"] = "Modalità esperto"; -$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate"; -$a->strings["Premium Channel"] = "Canale premium"; -$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare delle restrizioni e dei termini d'uso a chi segue il canale"; -$a->strings["Post Composition Features"] = "Modalità di scrittura articoli"; -$a->strings["Use Markdown"] = "Usa il markdown"; -$a->strings["Allow use of \"Markdown\" to format posts"] = "Consenti l'uso del markdown per formattare gli articoli"; -$a->strings["Large Photos"] = "Foto grandi"; -$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Includi anteprime grandi delle foto nei post (640px). Se disabilitato le anteprime saranno piccole (320px)"; -$a->strings["Channel Sources"] = "Sorgenti del canale"; -$a->strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; -$a->strings["Even More Encryption"] = "Crittografia addizionale"; -$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crittografia tra mittente e destinatario che condividono una chiave segreta"; -$a->strings["Enable voting tools"] = "Permetti i post con votazione"; -$a->strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di articoli in cui sarà possibile votare"; -$a->strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; -$a->strings["Search by Date"] = "Ricerca per data"; -$a->strings["Ability to select posts by date ranges"] = "Per selezionare gli articoli in un intervallo tra date"; -$a->strings["Collections Filter"] = "Filtra per insiemi di canali"; -$a->strings["Enable widget to display Network posts only from selected collections"] = "Mostra il riquadro per filtrare gli articoli di certi insiemi di canali"; -$a->strings["Saved Searches"] = "Ricerche salvate"; -$a->strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; -$a->strings["Network Personal Tab"] = "Attività personale"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; -$a->strings["Network New Tab"] = "Contenuti nuovi"; -$a->strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; -$a->strings["Affinity Tool"] = "Filtro per affinità"; -$a->strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; -$a->strings["Suggest Channels"] = "Suggerisci canali"; -$a->strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; -$a->strings["Post/Comment Tools"] = "Gestione articoli e commenti"; -$a->strings["Tagging"] = "Tag"; -$a->strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su articoli già esistenti"; -$a->strings["Post Categories"] = "Categorie degli articoli"; -$a->strings["Add categories to your posts"] = "Abilita le categorie per i tuoi articoli"; -$a->strings["Saved Folders"] = "Cartelle salvate"; -$a->strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; -$a->strings["Dislike Posts"] = "Non mi piace"; -$a->strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi articoli"; -$a->strings["Star Posts"] = "Articoli stella (preferiti)"; -$a->strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per scegliere gli articoli preferiti"; -$a->strings["Tag Cloud"] = "Nuvola di tag"; -$a->strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; -$a->strings["Categories"] = "Categorie"; -$a->strings["Apps"] = "Apps"; -$a->strings["System"] = "Sistema"; -$a->strings["Personal"] = "Personali"; -$a->strings["Create Personal App"] = "Crea una app personale"; -$a->strings["Edit Personal App"] = "Modifica una app personale"; +$a->strings["January"] = "gennaio"; +$a->strings["February"] = "febbraio"; +$a->strings["March"] = "marzo"; +$a->strings["April"] = "aprile"; +$a->strings["__ctx:long__ May"] = "maggio"; +$a->strings["June"] = "giugno"; +$a->strings["July"] = "luglio"; +$a->strings["August"] = "agosto"; +$a->strings["September"] = "settembre"; +$a->strings["October"] = "ottobre"; +$a->strings["November"] = "novembre"; +$a->strings["December"] = "dicembre"; +$a->strings["Jan"] = "Gen"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Apr"; +$a->strings["__ctx:short__ May"] = "maggio"; +$a->strings["Jun"] = "Mag"; +$a->strings["Jul"] = "Giu"; +$a->strings["Aug"] = "Ago"; +$a->strings["Sep"] = "Set"; +$a->strings["Oct"] = "Ott"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dic"; +$a->strings["Sunday"] = "domenica"; +$a->strings["Monday"] = "lunedì"; +$a->strings["Tuesday"] = "martedì"; +$a->strings["Wednesday"] = "mercoledì"; +$a->strings["Thursday"] = "giovedì"; +$a->strings["Friday"] = "venerdì"; +$a->strings["Saturday"] = "sabato"; +$a->strings["Sun"] = "Dom"; +$a->strings["Mon"] = "Lun"; +$a->strings["Tue"] = "Mar"; +$a->strings["Wed"] = "Mer"; +$a->strings["Thu"] = "Gio"; +$a->strings["Fri"] = "Ven"; +$a->strings["Sat"] = "Sab"; +$a->strings["__ctx:calendar__ today"] = "oggi"; +$a->strings["__ctx:calendar__ month"] = "mese"; +$a->strings["__ctx:calendar__ week"] = "settimana"; +$a->strings["__ctx:calendar__ day"] = "giorno"; +$a->strings["__ctx:calendar__ All day"] = "Tutto il giorno"; +$a->strings["Frequently"] = "Frequentemente"; +$a->strings["Hourly"] = "Ogni ora"; +$a->strings["Twice daily"] = "Due volte al giorno"; +$a->strings["Daily"] = "Ogni giorno"; +$a->strings["Weekly"] = "Ogni settimana"; +$a->strings["Monthly"] = "Ogni mese"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Email"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings[" and "] = "e"; +$a->strings["public profile"] = "profilo pubblico"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; $a->strings["Connect"] = "Aggiungi"; -$a->strings["Ignore/Hide"] = "Ignora/nascondi"; -$a->strings["Suggestions"] = "Suggerimenti"; -$a->strings["See more..."] = "Altro..."; -$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; -$a->strings["Add New Connection"] = "Aggiungi un contatto"; -$a->strings["Enter the channel address"] = "Scrivi l'indirizzo del canale"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Per esempio: mario@pippo.it oppure http://pluto.com/barbara"; -$a->strings["Notes"] = "Note"; -$a->strings["Save"] = "Salva"; -$a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Archives"] = "Archivi"; -$a->strings["Me"] = "Io"; -$a->strings["Family"] = "Famiglia"; -$a->strings["Friends"] = "Amici"; -$a->strings["Acquaintances"] = "Conoscenti"; -$a->strings["All"] = "Tutti"; -$a->strings["Refresh"] = "Aggiorna"; -$a->strings["Account settings"] = "Il tuo account"; -$a->strings["Channel settings"] = "Impostazioni del canale"; -$a->strings["Additional features"] = "Funzionalità opzionali"; -$a->strings["Feature/Addon settings"] = "Impostazioni dei componenti aggiuntivi"; -$a->strings["Display settings"] = "Aspetto"; -$a->strings["Connected apps"] = "App connesse"; -$a->strings["Export channel"] = "Esporta il canale"; -$a->strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti"; -$a->strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Check Mail"] = "Controlla i messaggi"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["Chat Rooms"] = "Aree chat attive"; -$a->strings["Bookmarked Chatrooms"] = "Aree chat nei segnalibri"; -$a->strings["Suggested Chatrooms"] = "Aree chat suggerite"; -$a->strings["photo/image"] = "foto/immagine"; -$a->strings["Rate Me"] = "Valutami"; -$a->strings["View Ratings"] = "Vedi le valutazioni ricevute"; -$a->strings["Public Hubs"] = "Hub pubblici"; -$a->strings["Hubzilla Notification"] = "Notifica di Hubzilla"; -$a->strings["hubzilla"] = "Hubzilla"; +$a->strings["New window"] = "Nuova finestra"; +$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; +$a->strings["User '%s' deleted"] = "Utente '%s' eliminato"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["photo"] = "la foto"; +$a->strings["event"] = "l'evento"; +$a->strings["channel"] = "il canale"; +$a->strings["status"] = "il messaggio di stato"; +$a->strings["comment"] = "il commento"; +$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["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; +$a->strings["poked"] = "ha ricevuto un poke"; +$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; +$a->strings["__ctx:title__ Likes"] = "Mi piace"; +$a->strings["__ctx:title__ Dislikes"] = "Non mi piace"; +$a->strings["__ctx:title__ Agree"] = "D'accordo"; +$a->strings["__ctx:title__ Disagree"] = "Non d'accordo"; +$a->strings["__ctx:title__ Abstain"] = "Astenuti"; +$a->strings["__ctx:title__ Attending"] = "Partecipano"; +$a->strings["__ctx:title__ Not attending"] = "Non partecipano"; +$a->strings["__ctx:title__ Might attend"] = "Forse partecipano"; +$a->strings["Select"] = "Scegli"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["Message signature validated"] = "Messaggio con firma verificata"; +$a->strings["Message signature incorrect"] = "Massaggio con firma non corretta"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Classificato come:"; +$a->strings["from %s"] = "da %s"; +$a->strings["last edited: %s"] = "ultima modifica: %s"; +$a->strings["Expires: %s"] = "Scadenza: %s"; +$a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["Please wait"] = "Attendere"; +$a->strings["remove"] = "rimuovi"; +$a->strings["Loading..."] = "Caricamento in corso..."; +$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; +$a->strings["View Source"] = "Vedi il sorgente"; +$a->strings["Follow Thread"] = "Segui la discussione"; +$a->strings["View Status"] = "Guarda il messaggio di stato"; +$a->strings["View Profile"] = "Profilo"; +$a->strings["View Photos"] = "Foto"; +$a->strings["Activity/Posts"] = "Attività e Post"; +$a->strings["Edit Connection"] = "Modifica il contatto"; +$a->strings["Send PM"] = "Messaggio privato"; +$a->strings["Poke"] = "Poke"; +$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."] = array( + 0 => "", + 1 => "Piace a %2\$d persone.", +); +$a->strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "Non piace a %2\$d persone.", +); +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => "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 link URL:"] = "Inserisci l'indirizzo del link:"; +$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:"; +$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Save to Folder:"] = "Salva nella cartella:"; +$a->strings["Where are you right now?"] = "Dove sei ora?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; +$a->strings["Preview"] = "Anteprima"; +$a->strings["Share"] = "Condividi"; +$a->strings["Page link name"] = "Nome del link alla pagina"; +$a->strings["Post as"] = "Pubblica come "; +$a->strings["Bold"] = "Grassetto"; +$a->strings["Italic"] = "Corsivo"; +$a->strings["Underline"] = "Sottolineato"; +$a->strings["Quote"] = "Citazione"; +$a->strings["Code"] = "Codice"; +$a->strings["Upload photo"] = "Carica foto"; +$a->strings["upload photo"] = "carica foto"; +$a->strings["Attach file"] = "Allega file"; +$a->strings["attach file"] = "allega file"; +$a->strings["Insert web link"] = "Inserisci un indirizzo web"; +$a->strings["web link"] = "link web"; +$a->strings["Insert video link"] = "Inserisci l'indirizzo del video"; +$a->strings["video link"] = "link video"; +$a->strings["Insert audio link"] = "Inserisci l'indirizzo dell'audio"; +$a->strings["audio link"] = "link audio"; +$a->strings["Set your location"] = "La tua località"; +$a->strings["set location"] = "la tua località"; +$a->strings["Toggle voting"] = "Abilita/disabilita il voto"; +$a->strings["Clear browser location"] = "Rimuovi la località data dal browser"; +$a->strings["clear location"] = "rimuovi la località"; +$a->strings["Title (optional)"] = "Titolo (opzionale)"; +$a->strings["Categories (optional, comma-separated list)"] = "Categorie (lista separata da virgole)"; +$a->strings["Permission settings"] = "Permessi dei tuoi contatti"; +$a->strings["permissions"] = "permessi"; +$a->strings["Public post"] = "Post pubblico"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com"; +$a->strings["Set expiration date"] = "Data di scadenza"; +$a->strings["Encrypt text"] = "Cifratura del messaggio"; +$a->strings["OK"] = "OK"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["Discover"] = "Scopri"; +$a->strings["Imported public streams"] = "Contenuti pubblici importati"; +$a->strings["Commented Order"] = "Ultimi commenti"; +$a->strings["Sort by Comment Date"] = "Per data del commento"; +$a->strings["Posted Order"] = "Ultimi post"; +$a->strings["Sort by Post Date"] = "Per data di creazione"; +$a->strings["Personal"] = "Personali"; +$a->strings["Posts that mention or involve you"] = "Post che ti riguardano"; +$a->strings["New"] = "Novità"; +$a->strings["Activity Stream - by date"] = "Elenco attività - per data"; +$a->strings["Starred"] = "Preferiti"; +$a->strings["Favourite Posts"] = "Post preferiti"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Post marcati come spam"; +$a->strings["Channel"] = "Canale"; +$a->strings["Status Messages and Posts"] = "Post e messaggi di stato"; +$a->strings["About"] = "Informazioni"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["Photos"] = "Foto"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["Files and Storage"] = "Archivio file"; +$a->strings["Chatrooms"] = "Chat"; +$a->strings["Bookmarks"] = "Segnalibri"; +$a->strings["Saved Bookmarks"] = "Segnalibri salvati"; +$a->strings["Webpages"] = "Pagine web"; +$a->strings["Manage Webpages"] = "Gestisci le pagine web"; +$a->strings["View all"] = "Vedi tutto"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +$a->strings["__ctx:noun__ Attending"] = array( + 0 => "Partecipa", + 1 => "Partecipano", +); +$a->strings["__ctx:noun__ Not Attending"] = array( + 0 => "Non partecipa", + 1 => "Non partecipano", +); +$a->strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso", + 1 => "Indecisi", +); +$a->strings["__ctx:noun__ Agree"] = array( + 0 => "D'accordo", + 1 => "D'accordo", +); +$a->strings["__ctx:noun__ Disagree"] = array( + 0 => "Non d'accordo", + 1 => "Non d'accordo", +); +$a->strings["__ctx:noun__ Abstain"] = array( + 0 => "Astenuto", + 1 => "Astenuti", +); +$a->strings["Public Timeline"] = "Diario pubblico"; +$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; +$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Photo storage failed."] = "Impossibile salvare la foto."; +$a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["\$Projectname Notification"] = "Notifica \$Projectname"; +$a->strings["\$projectname"] = "\$projectname"; $a->strings["Thank You,"] = "Grazie,"; $a->strings["%s Administrator"] = "L'amministratore di %s"; $a->strings["%s "] = "%s "; @@ -275,9 +451,9 @@ $a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3 $a->strings["[Red:Notify] %1\$s poked you"] = "[Hubzilla] %1\$s ti ha mandato un poke"; $a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s"; $a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl]."; -$a->strings["[Red:Notify] %s tagged your post"] = "[Hubzilla] %s ha taggato il tuo articolo"; -$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo articolo su %3\$s"; -$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo articolo[/zrl]"; +$a->strings["[Red:Notify] %s tagged your post"] = "[Hubzilla] %s ha taggato il tuo post"; +$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo post su %3\$s"; +$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo post[/zrl]"; $a->strings["[Red:Notify] Introduction received"] = "[Hubzilla] Hai una richiesta di amicizia"; $a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s"; $a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s."; @@ -290,99 +466,10 @@ $a->strings["Name:"] = "Nome:"; $a->strings["Photo:"] = "Foto:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; $a->strings["[Red:Notify]"] = "[Hubzilla]"; -$a->strings["Frequently"] = "Frequentemente"; -$a->strings["Hourly"] = "Ogni ora"; -$a->strings["Twice daily"] = "Due volte al giorno"; -$a->strings["Daily"] = "Ogni giorno"; -$a->strings["Weekly"] = "Ogni settimana"; -$a->strings["Monthly"] = "Ogni mese"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "Email"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["No recipient provided."] = "Devi scegliere un destinatario."; -$a->strings["[no subject]"] = "[nessun titolo]"; -$a->strings["Unable to determine sender."] = "Impossibile determinare il mittente."; -$a->strings["Stored post could not be verified."] = "Non è stato possibile verificare l'articolo inserito."; -$a->strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; -$a->strings["Channel location missing."] = "Manca l'indirizzo del canale."; -$a->strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; -$a->strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; -$a->strings["Protocol disabled."] = "Protocollo disabilitato."; -$a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; -$a->strings["local account not found."] = "l'account locale non è stato trovato."; -$a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["Select"] = "Seleziona"; -$a->strings["Save to Folder"] = "Salva nella cartella"; -$a->strings["I will attend"] = "Parteciperò"; -$a->strings["I will not attend"] = "Non parteciperò"; -$a->strings["I might attend"] = "Forse parteciperò"; -$a->strings["I agree"] = "Sono d'accordo"; -$a->strings["I disagree"] = "Non sono d'accordo"; -$a->strings["I abstain"] = "Mi astengo"; -$a->strings["View all"] = "Vedi tutto"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); -$a->strings["Add Star"] = "Aggiungi ai preferiti"; -$a->strings["Remove Star"] = "Rimuovi dai preferiti"; -$a->strings["Toggle Star Status"] = "Attiva/disattiva preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["Message signature validated"] = "Messaggio con firma verificata"; -$a->strings["Message signature incorrect"] = "Massaggio con firma non corretta"; -$a->strings["Add Tag"] = "Aggiungi un tag"; -$a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -$a->strings["like"] = "mi piace"; -$a->strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share This"] = "Condividi"; -$a->strings["share"] = "condividi"; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", -); -$a->strings["View %s's profile - %s"] = "Guarda 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["from %s"] = "da %s"; -$a->strings["last edited: %s"] = "ultima modifica: %s"; -$a->strings["Expires: %s"] = "Scadenza: %s"; -$a->strings["Save Bookmarks"] = "Salva segnalibro"; -$a->strings["Add to Calendar"] = "Aggiungi al calendario"; -$a->strings["Mark all seen"] = "Marca tutto come letto"; -$a->strings["__ctx:noun__ Likes"] = "Mi piace"; -$a->strings["__ctx:noun__ Dislikes"] = "Non mi piace"; -$a->strings["Close"] = "Chiudi"; -$a->strings["Please wait"] = "Attendere"; -$a->strings["This is you"] = "Questo sei tu"; -$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["Insert Link"] = "Collegamento"; -$a->strings["Video"] = "Video"; -$a->strings["Encrypt text"] = "Crittografia del testo"; -$a->strings["New window"] = "Nuova finestra"; -$a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; -$a->strings["User '%s' deleted"] = "Utente '%s' eliminato"; -$a->strings["Attachments:"] = "Allegati:"; -$a->strings["Hubzilla event notification:"] = "Notifica eventi Hubzilla:"; +$a->strings["view full size"] = "guarda nelle dimensioni reali"; +$a->strings["Administrator"] = "Amministratore"; +$a->strings["No Subject"] = "Nessun titolo"; +$a->strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; $a->strings["prev"] = "prec"; $a->strings["first"] = "inizio"; $a->strings["last"] = "fine"; @@ -396,8 +483,8 @@ $a->strings["%d Connection"] = array( ); $a->strings["View Connections"] = "Elenco contatti"; $a->strings["Search"] = "Cerca"; +$a->strings["Save"] = "Salva"; $a->strings["poke"] = "poke"; -$a->strings["poked"] = "ha ricevuto un poke"; $a->strings["ping"] = "ping"; $a->strings["pinged"] = "ha ricevuto un ping"; $a->strings["prod"] = "spintone"; @@ -429,25 +516,7 @@ $a->strings["depressed"] = "in depressione"; $a->strings["motivated"] = "motivato"; $a->strings["relaxed"] = "rilassato"; $a->strings["surprised"] = "sorpreso"; -$a->strings["Monday"] = "lunedì"; -$a->strings["Tuesday"] = "martedì"; -$a->strings["Wednesday"] = "mercoledì"; -$a->strings["Thursday"] = "giovedì"; -$a->strings["Friday"] = "venerdì"; -$a->strings["Saturday"] = "sabato"; -$a->strings["Sunday"] = "domenica"; -$a->strings["January"] = "gennaio"; -$a->strings["February"] = "febbraio"; -$a->strings["March"] = "marzo"; -$a->strings["April"] = "aprile"; $a->strings["May"] = "maggio"; -$a->strings["June"] = "giugno"; -$a->strings["July"] = "luglio"; -$a->strings["August"] = "agosto"; -$a->strings["September"] = "settembre"; -$a->strings["October"] = "ottobre"; -$a->strings["November"] = "novembre"; -$a->strings["December"] = "dicembre"; $a->strings["unknown.???"] = "sconosciuto???"; $a->strings["bytes"] = "byte"; $a->strings["remove category"] = "rimuovi la categoria"; @@ -456,315 +525,20 @@ $a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; $a->strings["Link to Source"] = "Link al sito d'origine"; $a->strings["default"] = "predefinito"; $a->strings["Page layout"] = "Layout della pagina"; -$a->strings["You can create your own with the layouts tool"] = "Con gli strumenti di design puoi creare il tuo"; +$a->strings["You can create your own with the layouts tool"] = "Con la configurazione del layout puoi crearne uno tuo"; $a->strings["Page content type"] = "Tipo di contenuto della pagina"; $a->strings["Select an alternate language"] = "Seleziona una lingua diversa"; -$a->strings["photo"] = "la foto"; -$a->strings["event"] = "l'evento"; -$a->strings["status"] = "il messaggio di stato"; -$a->strings["comment"] = "il commento"; $a->strings["activity"] = "l'attività"; $a->strings["Design Tools"] = "Strumenti di design"; $a->strings["Blocks"] = "Riquadri"; $a->strings["Menus"] = "Menù"; $a->strings["Layouts"] = "Layout"; $a->strings["Pages"] = "Pagine"; -$a->strings["Logout"] = "Esci"; -$a->strings["End this session"] = "Chiudi questa sessione"; -$a->strings["Home"] = "Bacheca"; -$a->strings["Your posts and conversations"] = "I tuoi articoli e conversazioni"; -$a->strings["View Profile"] = "Profilo"; -$a->strings["Your profile page"] = "Il tuo profilo"; -$a->strings["Edit Profiles"] = "Modifica i profili"; -$a->strings["Manage/Edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Edit Profile"] = "Modifica il profilo"; -$a->strings["Edit your profile"] = "Modifica il profilo"; -$a->strings["Photos"] = "Foto"; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Your files"] = "I tuoi file"; -$a->strings["Chat"] = "Area chat"; -$a->strings["Your chatrooms"] = "Le tue aree chat"; -$a->strings["Bookmarks"] = "Segnalibri"; -$a->strings["Your bookmarks"] = "I tuoi segnalibri"; -$a->strings["Webpages"] = "Pagine web"; -$a->strings["Your webpages"] = "Le tue pagine web"; -$a->strings["Login"] = "Accedi"; -$a->strings["Sign in"] = "Accedi"; -$a->strings["%s - click to logout"] = "%s - clicca per uscire"; -$a->strings["Remote authentication"] = "Autenticazione magica dal tuo server"; -$a->strings["Click to authenticate to your home hub"] = "Clicca per autenticarti sul tuo server principale"; -$a->strings["Home Page"] = "Bacheca"; -$a->strings["Register"] = "Iscriviti"; -$a->strings["Create an account"] = "Crea un account"; -$a->strings["Help"] = "Guida"; -$a->strings["Help and documentation"] = "Guida e documentazione"; -$a->strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; -$a->strings["Search site content"] = "Cerca nel sito"; -$a->strings["Directory"] = "Elenco pubblico"; -$a->strings["Channel Directory"] = "Elenco pubblico canali"; -$a->strings["Matrix"] = "Hubzilla"; -$a->strings["Your matrix"] = "La tua rete"; -$a->strings["Mark all matrix notifications seen"] = "Segna come lette le notifiche della tua rete"; -$a->strings["Channel Home"] = "Bacheca del canale"; -$a->strings["Channel home"] = "Bacheca del canale"; -$a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; -$a->strings["Connections"] = "Contatti"; -$a->strings["Notices"] = "Avvisi"; -$a->strings["Notifications"] = "Notifiche"; -$a->strings["See all notifications"] = "Vedi tutte le notifiche"; -$a->strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; -$a->strings["Mail"] = "Messaggi"; -$a->strings["Private mail"] = "Messaggi privati"; -$a->strings["See all private messages"] = "Guarda tutti i messaggi privati"; -$a->strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; -$a->strings["Inbox"] = "In arrivo"; -$a->strings["Outbox"] = "Inviati"; -$a->strings["Events"] = "Eventi"; -$a->strings["Event Calendar"] = "Calendario"; -$a->strings["See all events"] = "Guarda tutti gli eventi"; -$a->strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; -$a->strings["Channel Manager"] = "Gestione canali"; -$a->strings["Manage Your Channels"] = "Gestisci i tuoi canali"; -$a->strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; -$a->strings["Admin"] = "Amministrazione"; -$a->strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; -$a->strings["Loading..."] = "Caricamento in corso..."; -$a->strings["@name, #tag, content"] = "@nome, #tag, testo"; -$a->strings["Please wait..."] = "Attendere..."; -$a->strings["Tags"] = "Tag"; -$a->strings["Keywords"] = "Parole chiave"; -$a->strings["have"] = "ho"; -$a->strings["has"] = "ha"; -$a->strings["want"] = "voglio"; -$a->strings["wants"] = "vuole"; -$a->strings["likes"] = "gli piace"; -$a->strings["dislikes"] = "non gli piace"; -$a->strings[" and "] = "e"; -$a->strings["public profile"] = "profilo pubblico"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -$a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; -$a->strings["Image/photo"] = "Immagine"; -$a->strings["Encrypted content"] = "Contenuto crittografato"; -$a->strings["Install design element: "] = "Installa il componente di design:"; -$a->strings["QR code"] = "QR code"; -$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; -$a->strings["post"] = "l'articolo"; -$a->strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; -$a->strings["$1 spoiler"] = "$1 spoiler"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["(Unknown)"] = "(Sconosciuto)"; -$a->strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; -$a->strings["Visible to you only."] = "Visibile solo a te."; -$a->strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; -$a->strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; -$a->strings["Visible to anybody on %s."] = "Visibile a tutti in %s."; -$a->strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; -$a->strings["Visible to approved connections."] = "Visibile ai contatti approvati."; -$a->strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Permission denied."] = "Permesso negato."; -$a->strings["Collection not found."] = "Insieme di canali non trovato."; -$a->strings["Collection is empty."] = "L'insieme di canali è vuoto."; -$a->strings["Collection: %s"] = "Insieme: %s"; -$a->strings["Connection: %s"] = "Contatto: %s"; -$a->strings["Connection not found."] = "Contatto non trovato."; -$a->strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e articoli normali"; -$a->strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale"; -$a->strings["Can view my photo albums"] = "Può vedere i miei album fotografici"; -$a->strings["Can view my connections"] = "Può vedere i miei contatti"; -$a->strings["Can view my file storage"] = "Può vedere i miei file condivisi"; -$a->strings["Can view my webpages"] = "Può vedere le mie pagine web"; -$a->strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; -$a->strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -$a->strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei articoli"; -$a->strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; -$a->strings["Can post photos to my photo albums"] = "Può aggiungere foto ai miei album"; -$a->strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\""; -$a->strings["Profiles and things other than posts/comments"] = "Profili e tutto ciò che non è articoli e commenti"; -$a->strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare articoli a tutti i contatti del canale tramite una @menzione"; -$a->strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -$a->strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -$a->strings["Can write to my file storage"] = "Può scrivere sul mio archivio file"; -$a->strings["Can edit my webpages"] = "Può modificare le mie pagine web"; -$a->strings["Can source my public posts in derived channels"] = "Può usare i miei articoli pubblici per creare canali derivati"; -$a->strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -$a->strings["Social Networking"] = "Social network"; -$a->strings["Mostly Public"] = "Prevalentemente pubblico"; -$a->strings["Restricted"] = "Con restrizioni"; -$a->strings["Private"] = "Privato"; -$a->strings["Community Forum"] = "Forum di discussione"; -$a->strings["Feed Republish"] = "Aggregatore di feed esterni"; -$a->strings["Special Purpose"] = "Per finalità speciali"; -$a->strings["Celebrity/Soapbox"] = "Pagina per fan"; -$a->strings["Group Repository"] = "Repository di gruppo"; -$a->strings["Other"] = "Altro"; -$a->strings["Custom/Expert Mode"] = "Personalizzazione per esperti"; -$a->strings["channel"] = "canale"; -$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["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; -$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; -$a->strings["__ctx:title__ Likes"] = "Mi piace"; -$a->strings["__ctx:title__ Dislikes"] = "Non mi piace"; -$a->strings["__ctx:title__ Agree"] = "D'accordo"; -$a->strings["__ctx:title__ Disagree"] = "Non d'accordo"; -$a->strings["__ctx:title__ Abstain"] = "Astenuti"; -$a->strings["__ctx:title__ Attending"] = "Partecipano"; -$a->strings["__ctx:title__ Not attending"] = "Non partecipano"; -$a->strings["__ctx:title__ Might attend"] = "Forse partecipano"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Classificato come:"; -$a->strings["View in context"] = "Vedi nel contesto"; -$a->strings["remove"] = "rimuovi"; -$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; -$a->strings["View Source"] = "Vedi il sorgente"; -$a->strings["Follow Thread"] = "Segui la discussione"; -$a->strings["View Status"] = "Guarda il messaggio di stato"; -$a->strings["View Photos"] = "Guarda le foto"; -$a->strings["Matrix Activity"] = "Attività nella tua rete"; -$a->strings["Edit Contact"] = "Modifica il contatto"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Poke"] = "Poke"; -$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."] = array( - 0 => "", - 1 => "Piace a %2\$d persone.", -); -$a->strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "Non piace a %2\$d persone.", -); -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = array( - 0 => "", - 1 => "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 link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Save to Folder:"] = "Salva nella cartella:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; -$a->strings["Share"] = "Condividi"; -$a->strings["Page link name"] = "Nome del link alla pagina"; -$a->strings["Post as"] = "Pubblica come "; -$a->strings["Upload photo"] = "Carica foto"; -$a->strings["upload photo"] = "carica foto"; -$a->strings["Attach file"] = "Allega file"; -$a->strings["attach file"] = "allega file"; -$a->strings["Insert web link"] = "Inserisci un indirizzo web"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserisci l'indirizzo di un video"; -$a->strings["video link"] = "link video"; -$a->strings["Insert audio link"] = "Inserisci l'indirizzo di un audio"; -$a->strings["audio link"] = "link audio"; -$a->strings["Set your location"] = "La tua località"; -$a->strings["set location"] = "la tua località"; -$a->strings["Toggle voting"] = "Abilita/disabilita il voto"; -$a->strings["Clear browser location"] = "Rimuovi la località data dal browser"; -$a->strings["clear location"] = "rimuovi la località"; -$a->strings["Title (optional)"] = "Titolo (opzionale)"; -$a->strings["Categories (optional, comma-separated list)"] = "Categorie (lista separata da virgole)"; -$a->strings["Permission settings"] = "Impostazioni permessi"; -$a->strings["permissions"] = "permessi"; -$a->strings["Public post"] = "Articolo pubblico"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com"; -$a->strings["Set expiration date"] = "Data di scadenza"; -$a->strings["OK"] = "OK"; -$a->strings["Cancel"] = "Annulla"; -$a->strings["Discover"] = "Scopri"; -$a->strings["Imported public streams"] = "Contenuti pubblici importati"; -$a->strings["Commented Order"] = "Ultimi commenti"; -$a->strings["Sort by Comment Date"] = "Per data del commento"; -$a->strings["Posted Order"] = "Ultimi articoli"; -$a->strings["Sort by Post Date"] = "Per data di creazione"; -$a->strings["Posts that mention or involve you"] = "Articoli che ti riguardano o ti menzionano"; -$a->strings["New"] = "Novità"; -$a->strings["Activity Stream - by date"] = "Elenco attività - per data"; -$a->strings["Starred"] = "Preferiti"; -$a->strings["Favourite Posts"] = "Articoli preferiti"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Articoli marcati come spam"; -$a->strings["Channel"] = "Canale"; -$a->strings["Status Messages and Posts"] = "Articoli e messaggi di stato"; -$a->strings["About"] = "Informazioni"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Photo Albums"] = "Album foto"; -$a->strings["Files and Storage"] = "Archivio file"; -$a->strings["Chatrooms"] = "Area chat"; -$a->strings["Saved Bookmarks"] = "Segnalibri salvati"; -$a->strings["Manage Webpages"] = "Gestisci le pagine web"; -$a->strings["__ctx:noun__ Attending"] = array( - 0 => "Partecipa", - 1 => "Partecipano", -); -$a->strings["__ctx:noun__ Not Attending"] = array( - 0 => "Non partecipa", - 1 => "Non partecipano", -); -$a->strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso", - 1 => "Indecisi", -); -$a->strings["__ctx:noun__ Agree"] = array( - 0 => "D'accordo", - 1 => "D'accordo", -); -$a->strings["__ctx:noun__ Disagree"] = array( - 0 => "Non d'accordo", - 1 => "Non d'accordo", -); -$a->strings["__ctx:noun__ Abstain"] = array( - 0 => "Astenuto", - 1 => "Astenuti", -); -$a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; -$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Photo storage failed."] = "Impossibile caricare la foto."; -$a->strings["Upload New Photos"] = "Carica nuove foto"; -$a->strings["Invalid data packet"] = "Dati non validi"; -$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -$a->strings["Embedded content"] = "Contenuti incorporati"; -$a->strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["Failed authentication"] = "Autenticazione fallita"; -$a->strings["Login failed."] = "Accesso fallito."; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Advanced"] = "Avanzate"; -$a->strings["Find Channels"] = "Ricerca canali"; -$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse"; -$a->strings["Connect/Follow"] = "Aggiungi"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; -$a->strings["Find"] = "Cerca"; -$a->strings["Channel Suggestions"] = "Canali suggeriti"; -$a->strings["Random Profile"] = "Profilo casuale"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; -$a->strings["%d connection in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -$a->strings["show more"] = "mostra tutto"; $a->strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; $a->strings["Show"] = "Mostra"; $a->strings["Don't show"] = "Non mostrare"; $a->strings["Permissions"] = "Permessi"; +$a->strings["Close"] = "Chiudi"; $a->strings["Item was not found."] = "Elemento non trovato."; $a->strings["No source file."] = "Nessun file di origine."; $a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; @@ -779,63 +553,20 @@ $a->strings["duplicate filename or path"] = "il file o il percorso del file è d $a->strings["Path not found."] = "Percorso del file non trovato."; $a->strings["mkdir failed."] = "mkdir fallito."; $a->strings["database storage failed."] = "scrittura su database fallita."; -$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; -$a->strings["Empty name"] = "Nome vuoto"; -$a->strings["Name too long"] = "Nome troppo lungo"; -$a->strings["No account identifier"] = "Account senza identificativo"; -$a->strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; -$a->strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; -$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; -$a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; -$a->strings["Default Profile"] = "Profilo predefinito"; -$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; -$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; -$a->strings["Change profile photo"] = "Cambia la foto del profilo"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$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"] = "Cambia la visibilità"; -$a->strings["Gender:"] = "Sesso:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Home page:"; -$a->strings["Online Now"] = "Online adesso"; -$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["Profile"] = "Profilo"; -$a->strings["Full Name:"] = "Nome completo:"; -$a->strings["Like this channel"] = "Mi piace questo canale"; -$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["Sexual Preference:"] = "Preferenze sessuali:"; -$a->strings["Hometown:"] = "Città dove vivo:"; -$a->strings["Tags:"] = "Tag:"; -$a->strings["Political Views:"] = "Orientamento politico:"; -$a->strings["Religion:"] = "Religione:"; -$a->strings["About:"] = "Informazioni:"; -$a->strings["Hobbies/Interests:"] = "Interessi e hobby:"; -$a->strings["Likes:"] = "Mi piace:"; -$a->strings["Dislikes:"] = "Non mi piace:"; -$a->strings["Contact information and Social Networks:"] = "Contatti e social network:"; -$a->strings["My other channels:"] = "I miei altri canali:"; -$a->strings["Musical interests:"] = "Gusti 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["Like this thing"] = "Mi piace questo Oggetto"; +$a->strings["Empty path"] = "La posizione è vuota"; +$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; +$a->strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +$a->strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; +$a->strings["created a new post"] = "Ha creato un nuovo post"; +$a->strings["commented on %s's post"] = "ha commentato il post di %s"; +$a->strings["New Page"] = "Nuova pagina web"; +$a->strings["View"] = "Guarda"; +$a->strings["Actions"] = "Azioni"; +$a->strings["Page Link"] = "Link alla pagina"; +$a->strings["Title"] = "Titolo"; +$a->strings["Created"] = "Creato"; +$a->strings["Edited"] = "Modificato"; +$a->strings["Profile Photos"] = "Foto del profilo"; $a->strings["Male"] = "Maschio"; $a->strings["Female"] = "Femmina"; $a->strings["Currently Male"] = "Al momento maschio"; @@ -871,6 +602,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 qualcosa in più"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Impegnato"; @@ -892,38 +624,1137 @@ $a->strings["Uncertain"] = "Incerto/a"; $a->strings["It's complicated"] = "Relazione complicata"; $a->strings["Don't care"] = "Chi se ne frega"; $a->strings["Ask me"] = "Chiedimelo"; +$a->strings["Embedded content"] = "Contenuti incorporati"; +$a->strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +$a->strings["Starts:"] = "Inizio:"; +$a->strings["Finishes:"] = "Fine:"; +$a->strings["Location:"] = "Luogo:"; +$a->strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; +$a->strings["Not specified"] = "Non specificato"; +$a->strings["Needs Action"] = "Necessita di un intervento"; +$a->strings["Completed"] = "Completato"; +$a->strings["In Process"] = "In corso"; +$a->strings["Cancelled"] = "Annullato"; $a->strings["Site Admin"] = "Amministrazione sito"; $a->strings["Address Book"] = "Rubrica"; +$a->strings["Login"] = "Accedi"; +$a->strings["Channel Manager"] = "Gestione canali"; +$a->strings["Matrix"] = "Rete"; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Channel Home"] = "Bacheca del canale"; +$a->strings["Profile"] = "Profilo"; +$a->strings["Events"] = "Eventi"; +$a->strings["Directory"] = "Elenco pubblico"; +$a->strings["Help"] = "Guida"; +$a->strings["Mail"] = "Messaggi"; $a->strings["Mood"] = "Umore"; +$a->strings["Chat"] = "Chat"; $a->strings["Probe"] = "Diagnostica"; $a->strings["Suggest"] = "Suggerisci"; $a->strings["Random Channel"] = "Canale casuale"; $a->strings["Invite"] = "Invita"; $a->strings["Features"] = "Funzionalità"; $a->strings["Language"] = "Lingua"; -$a->strings["Post"] = "Articolo"; +$a->strings["Post"] = "Post"; $a->strings["Profile Photo"] = "Foto del profilo"; $a->strings["Update"] = "Aggiorna"; $a->strings["Install"] = "Installa"; $a->strings["Purchase"] = "Acquista"; -$a->strings["Missing room name"] = "Area chat senza nome"; -$a->strings["Duplicate room name"] = "Il nome dell'area chat è duplicato"; -$a->strings["Invalid room specifier."] = "Il nome dell'area chat non è valido."; -$a->strings["Room not found."] = "Area chat non trovata."; -$a->strings["Room is full"] = "L'area chat è al completo"; +$a->strings["Logged out."] = "Uscita effettuata."; +$a->strings["Failed authentication"] = "Autenticazione fallita"; +$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; +$a->strings["Image/photo"] = "Immagine"; +$a->strings["Encrypted content"] = "Contenuto cifrato"; +$a->strings["Install %s element: "] = "Installa l'elemento %s:"; +$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; +$a->strings["webpage"] = "pagina web"; +$a->strings["layout"] = "layout"; +$a->strings["block"] = "riquadro"; +$a->strings["menu"] = "menu"; +$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; +$a->strings["post"] = "il post"; +$a->strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; +$a->strings["$1 spoiler"] = "$1 spoiler"; +$a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Not a valid email address"] = "Email non valida"; +$a->strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; +$a->strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; +$a->strings["An invitation is required."] = "È necessario un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non può essere verificato."; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; +$a->strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; +$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +$a->strings["your registration password"] = "la password di registrazione"; +$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +$a->strings["Account approved."] = "Account approvato."; +$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +$a->strings["Account verified. Please login."] = "Registrazione verificata. Adesso puoi effettuare login."; +$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; +$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +$a->strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; +$a->strings["Channel location missing."] = "Manca l'indirizzo del canale."; +$a->strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; +$a->strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; +$a->strings["Protocol disabled."] = "Protocollo disabilitato."; +$a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; +$a->strings["local account not found."] = "l'account locale non è stato trovato."; +$a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; +$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."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Advanced"] = "Avanzate"; +$a->strings["Find Channels"] = "Ricerca canali"; +$a->strings["Enter name or interest"] = "Scrivi un nome o un interesse"; +$a->strings["Connect/Follow"] = "Aggiungi"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; +$a->strings["Find"] = "Cerca"; +$a->strings["Channel Suggestions"] = "Canali suggeriti"; +$a->strings["Random Profile"] = "Profilo casuale"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Categories"] = "Categorie"; +$a->strings["%d connection in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +$a->strings["show more"] = "mostra tutto"; +$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."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."; +$a->strings["Add new connections to this collection (privacy group)"] = "Aggiungi altri contatti a questo insieme (privacy di gruppo)"; +$a->strings["All Channels"] = "Tutti i canali"; +$a->strings["edit"] = "modifica"; +$a->strings["Collections"] = "Insiemi di canali"; +$a->strings["Edit collection"] = "Modifica l'insieme di canali"; +$a->strings["Add new collection"] = "Nuovo insieme"; +$a->strings["Channels not in any collection"] = "Canali che non sono in un insieme"; +$a->strings["add"] = "aggiungi"; +$a->strings["Tags"] = "Tag"; +$a->strings["Keywords"] = "Parole chiave"; +$a->strings["have"] = "ho"; +$a->strings["has"] = "ha"; +$a->strings["want"] = "voglio"; +$a->strings["wants"] = "vuole"; +$a->strings["like"] = "mi piace"; +$a->strings["likes"] = "gli piace"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["dislikes"] = "non gli piace"; +$a->strings["Directory Options"] = "Opzioni elenco pubblico"; +$a->strings["Safe Mode"] = "Modalità SafeSearch"; +$a->strings["No"] = "No"; +$a->strings["Yes"] = "Si"; +$a->strings["Public Forums Only"] = "Solo forum pubblici"; +$a->strings["This Website Only"] = "Solo in questo sito"; +$a->strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; +$a->strings["Empty name"] = "Nome vuoto"; +$a->strings["Name too long"] = "Nome troppo lungo"; +$a->strings["No account identifier"] = "Account senza identificativo"; +$a->strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; +$a->strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; +$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; +$a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; +$a->strings["Default Profile"] = "Profilo predefinito"; +$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; +$a->strings["Change profile photo"] = "Cambia la foto del profilo"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["Create New Profile"] = "Crea un nuovo profilo"; +$a->strings["Edit Profile"] = "Modifica il profilo"; +$a->strings["Profile Image"] = "Immagine del profilo"; +$a->strings["visible to everybody"] = "visibile a tutti"; +$a->strings["Edit visibility"] = "Cambia la visibilità"; +$a->strings["Gender:"] = "Sesso:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Home page:"; +$a->strings["Online Now"] = "Online adesso"; +$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 della settimana:"; +$a->strings["Full Name:"] = "Nome completo:"; +$a->strings["Like this channel"] = "Mi piace questo canale"; +$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["Sexual Preference:"] = "Preferenze sessuali:"; +$a->strings["Hometown:"] = "Città dove vivo:"; +$a->strings["Tags:"] = "Tag:"; +$a->strings["Political Views:"] = "Orientamento politico:"; +$a->strings["Religion:"] = "Religione:"; +$a->strings["About:"] = "Informazioni:"; +$a->strings["Hobbies/Interests:"] = "Interessi e hobby:"; +$a->strings["Likes:"] = "Mi piace:"; +$a->strings["Dislikes:"] = "Non mi piace:"; +$a->strings["Contact information and Social Networks:"] = "Contatti e social network:"; +$a->strings["My other channels:"] = "I miei altri canali:"; +$a->strings["Musical interests:"] = "Gusti 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["Like this thing"] = "Mi piace"; +$a->strings["No recipient provided."] = "Devi scegliere un destinatario."; +$a->strings["[no subject]"] = "[nessun titolo]"; +$a->strings["Unable to determine sender."] = "Impossibile determinare il mittente."; +$a->strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; +$a->strings["Save to Folder"] = "Salva nella cartella"; +$a->strings["I will attend"] = "Parteciperò"; +$a->strings["I will not attend"] = "Non parteciperò"; +$a->strings["I might attend"] = "Forse parteciperò"; +$a->strings["I agree"] = "Sono d'accordo"; +$a->strings["I disagree"] = "Non sono d'accordo"; +$a->strings["I abstain"] = "Mi astengo"; +$a->strings["Add Star"] = "Aggiungi ai preferiti"; +$a->strings["Remove Star"] = "Rimuovi dai preferiti"; +$a->strings["Toggle Star Status"] = "Attiva/disattiva preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["Add Tag"] = "Aggiungi un tag"; +$a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; +$a->strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; +$a->strings["Share This"] = "Condividi"; +$a->strings["share"] = "condividi"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +$a->strings["View %s's profile - %s"] = "Guarda 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["Delivery Report"] = "Rapporto di trasmissione"; +$a->strings["Save Bookmarks"] = "Salva segnalibro"; +$a->strings["Add to Calendar"] = "Aggiungi al calendario"; +$a->strings["Mark all seen"] = "Marca tutto come letto"; +$a->strings["__ctx:noun__ Likes"] = "Mi piace"; +$a->strings["__ctx:noun__ Dislikes"] = "Non mi piace"; +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Image"] = "Immagine"; +$a->strings["Insert Link"] = "Collegamento"; +$a->strings["Video"] = "Video"; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["(Unknown)"] = "(Sconosciuto)"; +$a->strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; +$a->strings["Visible to you only."] = "Visibile solo a te."; +$a->strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; +$a->strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; +$a->strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; +$a->strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; +$a->strings["Visible to approved connections."] = "Visibile ai contatti approvati."; +$a->strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; +$a->strings["Item not found."] = "Elemento non trovato."; +$a->strings["Collection not found."] = "Insieme di canali non trovato."; +$a->strings["Collection is empty."] = "L'insieme di canali è vuoto."; +$a->strings["Collection: %s"] = "Insieme: %s"; +$a->strings["Connection: %s"] = "Contatto: %s"; +$a->strings["Connection not found."] = "Contatto non trovato."; +$a->strings["Apps"] = "App"; +$a->strings["System"] = "Sistema"; +$a->strings["Create Personal App"] = "Crea app personale"; +$a->strings["Edit Personal App"] = "Modifica app personale"; +$a->strings["Ignore/Hide"] = "Ignora/nascondi"; +$a->strings["Suggestions"] = "Suggerimenti"; +$a->strings["See more..."] = "Altro..."; +$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; +$a->strings["Add New Connection"] = "Aggiungi un contatto"; +$a->strings["Enter the channel address"] = "Scrivi l'indirizzo del canale"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Per esempio: mario@pippo.it oppure http://pluto.com/barbara"; +$a->strings["Notes"] = "Note"; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Archives"] = "Archivi"; +$a->strings["Me"] = "Me"; +$a->strings["Family"] = "Famiglia"; +$a->strings["Acquaintances"] = "Conoscenti"; +$a->strings["All"] = "Tutti"; +$a->strings["Refresh"] = "Aggiorna"; +$a->strings["Account settings"] = "Il tuo account"; +$a->strings["Channel settings"] = "Impostazioni del canale"; +$a->strings["Additional features"] = "Funzionalità opzionali"; +$a->strings["Feature/Addon settings"] = "Componenti aggiuntivi"; +$a->strings["Display settings"] = "Aspetto"; +$a->strings["Connected apps"] = "App connesse"; +$a->strings["Export channel"] = "Esporta il canale"; +$a->strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti"; +$a->strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +$a->strings["Private Mail Menu"] = "Menu messaggi privati"; +$a->strings["Check Mail"] = "Controlla i messaggi"; +$a->strings["Combined View"] = "Vista combinata"; +$a->strings["Inbox"] = "In arrivo"; +$a->strings["Outbox"] = "Inviati"; +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["Conversations"] = "Conversazioni"; +$a->strings["Received Messages"] = "Ricevuti"; +$a->strings["Sent Messages"] = "Inviati"; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["Chat Rooms"] = "Chat"; +$a->strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +$a->strings["Suggested Chatrooms"] = "Chat suggerite"; +$a->strings["photo/image"] = "foto/immagine"; +$a->strings["Rate Me"] = "Valutami"; +$a->strings["View Ratings"] = "Vedi le valutazioni ricevute"; +$a->strings["Public Hubs"] = "Hub pubblici"; +$a->strings["Forums"] = "Forum"; +$a->strings["Tasks"] = "Attività"; +$a->strings["Documentation"] = "Guida"; +$a->strings["Project/Site Information"] = "Informazioni sul sito/progetto"; +$a->strings["For Members"] = "Per gli utenti"; +$a->strings["For Administrators"] = "Per gli amministratori"; +$a->strings["For Developers"] = "Per sviluppatori"; +$a->strings["Site"] = "Sito"; +$a->strings["Accounts"] = "Account"; +$a->strings["Channels"] = "Canali"; +$a->strings["Plugins"] = "Plugin"; +$a->strings["Themes"] = "Temi"; +$a->strings["Inspect queue"] = "Coda di attesa"; +$a->strings["Profile Config"] = "Configurazione del profilo"; +$a->strings["DB updates"] = "Aggiornamenti al DB"; +$a->strings["Logs"] = "Log"; +$a->strings["Admin"] = "Amministrazione"; +$a->strings["Plugin Features"] = "Plugin"; +$a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa"; +$a->strings["Invalid data packet"] = "Dati ricevuti non validi"; +$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +$a->strings["invalid target signature"] = "la firma ricevuta non è valida"; +$a->strings["Logout"] = "Esci"; +$a->strings["End this session"] = "Chiudi questa sessione"; +$a->strings["Home"] = "Bacheca"; +$a->strings["Your posts and conversations"] = "I tuoi post e conversazioni"; +$a->strings["Your profile page"] = "Il tuo profilo"; +$a->strings["Edit Profiles"] = "Modifica i tuoi profili"; +$a->strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; +$a->strings["Edit your profile"] = "Modifica il tuo profilo"; +$a->strings["Your photos"] = "Le tue foto"; +$a->strings["Your files"] = "I tuoi file"; +$a->strings["Your chatrooms"] = "Le tue chat"; +$a->strings["Your bookmarks"] = "I tuoi segnalibri"; +$a->strings["Your webpages"] = "Le tue pagine web"; +$a->strings["Sign in"] = "Accedi"; +$a->strings["%s - click to logout"] = "%s - clicca per uscire"; +$a->strings["Remote authentication"] = "Accedi dal tuo hub"; +$a->strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; +$a->strings["Home Page"] = "Bacheca"; +$a->strings["Register"] = "Registrati"; +$a->strings["Create an account"] = "Crea un account"; +$a->strings["Help and documentation"] = "Guida e documentazione"; +$a->strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; +$a->strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; +$a->strings["Channel Directory"] = "Elenco pubblico canali"; +$a->strings["Grid"] = "Rete"; +$a->strings["Your grid"] = "La tua rete"; +$a->strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; +$a->strings["Channel home"] = "Bacheca del canale"; +$a->strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; +$a->strings["Connections"] = "Contatti"; +$a->strings["Notices"] = "Avvisi"; +$a->strings["Notifications"] = "Notifiche"; +$a->strings["See all notifications"] = "Vedi tutte le notifiche"; +$a->strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; +$a->strings["Private mail"] = "Messaggi privati"; +$a->strings["See all private messages"] = "Guarda tutti i messaggi privati"; +$a->strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; +$a->strings["Event Calendar"] = "Calendario"; +$a->strings["See all events"] = "Guarda tutti gli eventi"; +$a->strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +$a->strings["Manage Your Channels"] = "Gestisci i tuoi canali"; +$a->strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; +$a->strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; +$a->strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; +$a->strings["Please wait..."] = "Attendere..."; $a->strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; -$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -$a->strings["Create a new channel"] = "Crea un nuovo canale"; -$a->strings["Current Channel"] = "Canale attuale"; -$a->strings["Switch to one of your channels by selecting it."] = "Per passare a un altro tuo canale selezionalo."; -$a->strings["Default Channel"] = "Canale predefinito"; -$a->strings["Make Default"] = "Rendi predefinito"; -$a->strings["%d new messages"] = "%d nuovi messaggi"; -$a->strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; -$a->strings["Delegated Channels"] = "Canali delegati"; +$a->strings["Contact not found."] = "Contatto non trovato."; +$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["Public access denied."] = "Accesso pubblico negato."; +$a->strings["%d rating"] = array( + 0 => "%d valutazione", + 1 => "%d valutazioni", +); +$a->strings["Gender: "] = "Sesso:"; +$a->strings["Status: "] = "Stato:"; +$a->strings["Homepage: "] = "Homepage:"; +$a->strings["Description:"] = "Descrizione:"; +$a->strings["Public Forum:"] = "Forum pubblico:"; +$a->strings["Keywords: "] = "Parole chiave:"; +$a->strings["Don't suggest"] = "Non fornire suggerimenti"; +$a->strings["Common connections:"] = "Contatti in comune:"; +$a->strings["Global Directory"] = "Elenco globale dei canali"; +$a->strings["Local Directory"] = "Elenco canali su questo server"; +$a->strings["Finding:"] = "Ricerca:"; +$a->strings["next page"] = "pagina successiva"; +$a->strings["previous page"] = "pagina precedente"; +$a->strings["Sort options"] = "Opzioni di ordinamento"; +$a->strings["Alphabetic"] = "Alfabetico"; +$a->strings["Reverse Alphabetic"] = "Alfabetico inverso"; +$a->strings["Newest to Oldest"] = "Prima i più recenti"; +$a->strings["Oldest to Newest"] = "Prima i più vecchi"; +$a->strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; +$a->strings["Bookmark added"] = "Segnalibro aggiunto"; +$a->strings["My Bookmarks"] = "I miei segnalibri"; +$a->strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; +$a->strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."; +$a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo."; +$a->strings["Invalid item."] = "Elemento non valido."; +$a->strings["Channel not found."] = "Canale non trovato."; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["First Name"] = "Nome"; +$a->strings["Last Name"] = "Cognome"; +$a->strings["Nickname"] = "Nick"; +$a->strings["Full Name"] = "Nome e cognome"; +$a->strings["Profile Photo 16px"] = "Foto del profilo 16px"; +$a->strings["Profile Photo 32px"] = "Foto del profilo 32px"; +$a->strings["Profile Photo 48px"] = "Foto del profilo 48px"; +$a->strings["Profile Photo 64px"] = "Foto del profilo 64px"; +$a->strings["Profile Photo 80px"] = "Foto del profilo 80px"; +$a->strings["Profile Photo 128px"] = "Foto del profilo 128px"; +$a->strings["Timezone"] = "Fuso orario"; +$a->strings["Homepage URL"] = "Indirizzo home page"; +$a->strings["Birth Year"] = "Anno di nascita"; +$a->strings["Birth Month"] = "Mese di nascita"; +$a->strings["Birth Day"] = "Giorno di nascita"; +$a->strings["Birthdate"] = "Data di nascita"; +$a->strings["Gender"] = "Sesso"; +$a->strings["Like/Dislike"] = "Mi piace/Non mi piace"; +$a->strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; +$a->strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; +$a->strings["Invalid request."] = "Richiesta non valida."; +$a->strings["thing"] = "Oggetto"; +$a->strings["Channel unavailable."] = "Canale non trovato."; +$a->strings["Previous action reversed."] = "Il comando precedente è stato annullato."; +$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; +$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; +$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; +$a->strings["Action completed."] = "Comando completato."; +$a->strings["Thank you."] = "Grazie."; +$a->strings["Export Channel"] = "Esporta il canale"; +$a->strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato."; +$a->strings["Export Content"] = "Esporta i contenuti"; +$a->strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento."; +$a->strings["Export your posts from a given year."] = "Esporta i tuoi post a partire dall'anno scelto."; +$a->strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date."; +$a->strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2\$s "; +$a->strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2\$s"; +$a->strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Questi contenuti potranno essere importati o ripristinati visitando %2\$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)"; +$a->strings["Away"] = "Assente"; +$a->strings["Online"] = "Online"; +$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["No channel."] = "Nessun canale."; +$a->strings["Common connections"] = "Contatti in comune"; +$a->strings["No connections in common."] = "Nessun contatto in comune."; +$a->strings["sent you a private message"] = "ti ha inviato un messaggio privato"; +$a->strings["added your channel"] = "ha aggiunto il tuo canale"; +$a->strings["posted an event"] = "ha creato un evento"; +$a->strings["Documentation Search"] = "Ricerca nella guida"; +$a->strings["Help:"] = "Guida:"; +$a->strings["Not Found"] = "Non disponibile"; +$a->strings["\$Projectname Documentation"] = "Guida di \$Projectname"; +$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password."; +$a->strings["Remove This Channel"] = "Elimina questo canale"; +$a->strings["WARNING: "] = "ATTENZIONE:"; +$a->strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete."; +$a->strings["This action is permanent and can not be undone!"] = "Questo comando è definitivo e non può essere annullato!"; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Remove this channel and all its clones from the network"] = "Rimuovi questo canale e tutti i suoi cloni dalla rete"; +$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; +$a->strings["Remove Channel"] = "Elimina questo canale"; +$a->strings["- select -"] = "- scegli -"; +$a->strings["Menu not found."] = "Menù non trovato."; +$a->strings["Unable to create element."] = "Impossibile creare l'elemento."; +$a->strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; +$a->strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; +$a->strings["Not found."] = "Non trovato."; +$a->strings["Menu Item Permissions"] = "Permessi del menu"; +$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; +$a->strings["Link Name"] = "Nome link"; +$a->strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; +$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; +$a->strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; +$a->strings["Open link in new window"] = "Apri il link in una nuova finestra"; +$a->strings["Order in list"] = "Ordine dell'elenco"; +$a->strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; +$a->strings["Submit and finish"] = "Salva e termina"; +$a->strings["Submit and continue"] = "Salva e continua"; +$a->strings["Menu:"] = "Menu:"; +$a->strings["Link Target"] = "Destinazione link"; +$a->strings["Edit menu"] = "Modifica il menù"; +$a->strings["Edit element"] = "Modifica l'elemento"; +$a->strings["Drop element"] = "Elimina l'elemento"; +$a->strings["New element"] = "Nuovo elemento"; +$a->strings["Edit this menu container"] = "Modifica il contenitore del menù"; +$a->strings["Add menu element"] = "Aggiungi un elemento al menù"; +$a->strings["Delete this menu item"] = "Elimina questo elemento del menù"; +$a->strings["Edit this menu item"] = "Modifica questo elemento del menù"; +$a->strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; +$a->strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; +$a->strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; +$a->strings["Edit Menu Element"] = "Modifica l'elemento del menù"; +$a->strings["Link text"] = "Testo del link"; +$a->strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; +$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; +$a->strings["Connection updated."] = "Contatto aggiornato."; +$a->strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; +$a->strings["is now connected to"] = "ha come nuovo contatto"; +$a->strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; +$a->strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; +$a->strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; +$a->strings["Connection has been removed."] = "Il contatto è stato rimosso."; +$a->strings["View %s's profile"] = "Guarda il profilo di %s"; +$a->strings["Refresh Permissions"] = "Modifica i permessi"; +$a->strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati"; +$a->strings["Recent Activity"] = "Attività recenti"; +$a->strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; +$a->strings["Unblock"] = "Sblocca"; +$a->strings["Block"] = "Blocca"; +$a->strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; +$a->strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!"; +$a->strings["Unignore"] = "Non ignorare"; +$a->strings["Ignore"] = "Ignora"; +$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; +$a->strings["This connection is ignored!"] = "Questa connessione è tra quelle ignorate!"; +$a->strings["Unarchive"] = "Non archiviare"; +$a->strings["Archive"] = "Archivia"; +$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; +$a->strings["This connection is archived!"] = "Questa connessione è tra quelle archiviate!"; +$a->strings["Unhide"] = "Non nascondere"; +$a->strings["Hide"] = "Nascondi"; +$a->strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"; +$a->strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!"; +$a->strings["Delete this connection"] = "Elimina questo contatto"; +$a->strings["Approve this connection"] = "Approva questo contatto"; +$a->strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; +$a->strings["Set Affinity"] = "Scegli l'affinità"; +$a->strings["Set Profile"] = "Scegli il profilo da mostrare"; +$a->strings["Set Affinity & Profile"] = "Affinità e profilo"; +$a->strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi"; +$a->strings["This connection's address is"] = "Indirizzo di questo contatto"; +$a->strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi."; +$a->strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; +$a->strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione"; +$a->strings["Optionally explain your rating"] = "Commento opzionale"; +$a->strings["Custom Filter"] = "Filtro personalizzato"; +$a->strings["Only import posts with this text"] = "Importa solo i post che contengono queste parole chiave"; +$a->strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "una parola per riga, oppure #tag o /pattern/ oppure lascia vuoto per importare tutto"; +$a->strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave"; +$a->strings["This information is public!"] = "Questa informazione è pubblica!"; +$a->strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; +$a->strings["Connection Request"] = "Richiesta di entrare in contatto"; +$a->strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) vorrebbe entrare in contatto con te. Per permettere la comunicazione è necessario che tu approvi."; +$a->strings["Approve"] = "Approva"; +$a->strings["Approve Later"] = "Approva più tardi"; +$a->strings["inherited"] = "derivato"; +$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 dopo aver effettuato l'accesso."; +$a->strings["Their Settings"] = "Permessi concessi a te"; +$a->strings["My Settings"] = "Permessi che concedo"; +$a->strings["Individual Permissions"] = "Permessi individuali"; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle."; +$a->strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; +$a->strings["Last update:"] = "Ultimo aggiornamento:"; +$a->strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; +$a->strings["Hub not found."] = "Hub non trovato."; +$a->strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; +$a->strings["Configuration Editor"] = "Editor di configurazione"; +$a->strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."; +$a->strings["Public Sites"] = "Siti pubblici"; +$a->strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; +$a->strings["Rate this hub"] = "Valuta questo hub"; +$a->strings["Site URL"] = "URL del sito"; +$a->strings["Access Type"] = "Tipo di accesso"; +$a->strings["Registration Policy"] = "Politica di registrazione"; +$a->strings["Location"] = "Posizione geografica"; +$a->strings["View hub ratings"] = "Vedi le valutazioni del hub"; +$a->strings["Rate"] = "Valuta"; +$a->strings["View ratings"] = "Vedi le valutazioni"; +$a->strings["Permission Denied."] = "Permesso negato."; +$a->strings["File not found."] = "File non trovato."; +$a->strings["Edit file permissions"] = "Modifica i permessi del file"; +$a->strings["Set/edit permissions"] = "Modifica i permessi"; +$a->strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; +$a->strings["Return to file list"] = "Torna all'elenco dei file"; +$a->strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un post"; +$a->strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; +$a->strings["Share this file"] = "Condividi questo file"; +$a->strings["Show URL to this file"] = "Mostra l'URL del file"; +$a->strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; +$a->strings["Layout Name"] = "Nome layout"; +$a->strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; +$a->strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; +$a->strings["Layout Description"] = "Descrizione del layout"; +$a->strings["Download PDL file"] = "Scarica il file PDL"; +$a->strings["Poke/Prod"] = "Poke/Prod"; +$a->strings["poke, prod or do other things to somebody"] = "Manda un poke, un prod o altro"; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; +$a->strings["Make this post private"] = "Rendi privato questo post"; +$a->strings["No such group"] = "Impossibile trovare l'insieme"; +$a->strings["No such channel"] = "Canale sconosciuto"; +$a->strings["forum"] = "forum"; +$a->strings["Search Results For:"] = "Cerca risultati con:"; +$a->strings["Collection is empty"] = "L'insieme di canali è vuoto"; +$a->strings["Collection: "] = "Insieme:"; +$a->strings["Invalid connection."] = "Contatto non valido."; +$a->strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; +$a->strings["Room not found"] = "Chat non trovata"; +$a->strings["Leave Room"] = "Lascia la chat"; +$a->strings["Delete This Room"] = "Elimina questa chat"; +$a->strings["I am away right now"] = "Non sono presente"; +$a->strings["I am online"] = "Sono online"; +$a->strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri"; +$a->strings["New Chatroom"] = "Nuova chat"; +$a->strings["Chatroom Name"] = "Nome della chat"; +$a->strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; +$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; +$a->strings["Search results for: %s"] = "Risultati ricerca: %s"; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; +$a->strings["Item not found"] = "Elemento non trovato"; +$a->strings["Item is not editable"] = "L'elemento non è modificabile"; +$a->strings["Delete item?"] = "Eliminare questo elemento?"; +$a->strings["Insert YouTube video"] = "Inserisci video da YouTube"; +$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]"; +$a->strings["Edit post"] = "Modifica post"; +$a->strings["Invalid message"] = "Messaggio non valido"; +$a->strings["no results"] = "nessun risultato"; +$a->strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; +$a->strings["channel sync processed"] = "sincronizzazione del canale effettuata"; +$a->strings["queued"] = "in coda"; +$a->strings["posted"] = "inviato"; +$a->strings["accepted for delivery"] = "accettato per la spedizione"; +$a->strings["updated"] = "aggiornato"; +$a->strings["update ignored"] = "aggiornamento ignorato"; +$a->strings["permission denied"] = "permessi non sufficienti"; +$a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?"; +$a->strings["Edit Block"] = "Modifica il riquadro"; +$a->strings["\$Projectname"] = "\$Projectname"; +$a->strings["Welcome to %s"] = "%s ti dà il benvenuto"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; +$a->strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; +$a->strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; +$a->strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; +$a->strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; +$a->strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; +$a->strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; +$a->strings["Post successful."] = "Inviato!"; +$a->strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; +$a->strings["# Accounts"] = "# account"; +$a->strings["# blocked accounts"] = "# account bloccati"; +$a->strings["# expired accounts"] = "# account scaduti"; +$a->strings["# expiring accounts"] = "# account in scadenza"; +$a->strings["# Channels"] = "# canali"; +$a->strings["# primary"] = "# primari"; +$a->strings["# clones"] = "# cloni"; +$a->strings["Message queues"] = "Coda messaggi in uscita"; +$a->strings["Administration"] = "Amministrazione"; +$a->strings["Summary"] = "Riepilogo"; +$a->strings["Registered accounts"] = "Account creati"; +$a->strings["Pending registrations"] = "Registrazioni da approvare"; +$a->strings["Registered channels"] = "Canali creati"; +$a->strings["Active plugins"] = "Plugin attivi"; +$a->strings["Version"] = "Versione"; +$a->strings["Site settings updated."] = "Impostazioni del sito salvate correttamente."; +$a->strings["mobile"] = "mobile"; +$a->strings["experimental"] = "sperimentale"; +$a->strings["unsupported"] = "non supportato"; +$a->strings["Yes - with approval"] = "Sì - con approvazione"; +$a->strings["My site is not a public server"] = "Non è un server pubblico"; +$a->strings["My site has paid access only"] = "È un servizio a pagamento"; +$a->strings["My site has free access only"] = "È un servizio gratuito"; +$a->strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; +$a->strings["Registration"] = "Registrazione"; +$a->strings["File upload"] = "Caricamento file"; +$a->strings["Policies"] = "Politiche"; +$a->strings["Site name"] = "Nome del sito"; +$a->strings["Banner/Logo"] = "Banner o logo"; +$a->strings["Administrator Information"] = "Informazioni sull'amministratore"; +$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; +$a->strings["System language"] = "Lingua di sistema"; +$a->strings["System theme"] = "Tema di sistema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; +$a->strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili"; +$a->strings["Theme for mobile devices"] = "Tema per i dispositivi mobili"; +$a->strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti"; +$a->strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)"; +$a->strings["Maximum image size"] = "Dimensione massima immagini"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; +$a->strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; +$a->strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; +$a->strings["Register text"] = "Testo di registrazione"; +$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; +$a->strings["Site homepage to show visitors (default: login box)"] = "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)"; +$a->strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file."; +$a->strings["Preserve site homepage URL"] = "Conserva l'URL della homepage"; +$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect."; +$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; +$a->strings["Allowed friend domains"] = "Domini fidati e consentiti"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; +$a->strings["Allowed email domains"] = "Domini email consentiti"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; +$a->strings["Not allowed email domains"] = "Domini email non consentiti"; +$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "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."; +$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 impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; +$a->strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; +$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; +$a->strings["Force publish"] = "Forza la publicazione del profilo"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare nell'elenco pubblico tutti i profili registrati su questo sito."; +$a->strings["Disable discovery tab"] = "Disabilita la funzione 'scopri'"; +$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti."; +$a->strings["login on Homepage"] = "Mostra il login sulla homepage"; +$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti."; +$a->strings["Proxy user"] = "Utente proxy"; +$a->strings["Proxy URL"] = "URL proxy"; +$a->strings["Network timeout"] = "Timeout rete"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; +$a->strings["Delivery interval"] = "Recapito ritardato"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; +$a->strings["Deliveries per process"] = "Tentativi di recapito per processo"; +$a->strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5"; +$a->strings["Poll interval"] = "Intervallo di polling"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; +$a->strings["Maximum Load Average"] = "Carico massimo medio"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; +$a->strings["Expiration period in days for imported (matrix/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)"; +$a->strings["0 for no expiration of imported content"] = "0 per non avere scadenza"; +$a->strings["No server found"] = "Server non trovato"; +$a->strings["ID"] = "ID"; +$a->strings["for channel"] = "per il canale"; +$a->strings["on server"] = "sul server"; +$a->strings["Status"] = "Stato"; +$a->strings["Server"] = "Server"; +$a->strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; +$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; +$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; +$a->strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; +$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; +$a->strings["Failed Updates"] = "Aggiornamenti falliti."; +$a->strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; +$a->strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; +$a->strings["Queue Statistics"] = "Statistiche della coda"; +$a->strings["Total Entries"] = "Totale"; +$a->strings["Priority"] = "Priorità"; +$a->strings["Destination URL"] = "URL di destinazione"; +$a->strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline"; +$a->strings["Empty queue for this hub"] = "Svuota la coda per questo hub"; +$a->strings["Last known contact"] = "Ultimo scambio dati"; +$a->strings["%s account blocked/unblocked"] = array( + 0 => "Modificato il blocco su %s account", + 1 => "Modificato il blocco verso %s", +); +$a->strings["%s account deleted"] = array( + 0 => "%s account eliminato", + 1 => "%s account eliminati", +); +$a->strings["Account not found"] = "Account non trovato"; +$a->strings["Account '%s' deleted"] = "Account '%s' eliminato"; +$a->strings["Account '%s' blocked"] = "Aggiunto un blocco verso '%s'"; +$a->strings["Account '%s' unblocked"] = "Rimosso il blocco verso '%s'"; +$a->strings["Users"] = "Utenti"; +$a->strings["select all"] = "seleziona tutti"; +$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; +$a->strings["Request date"] = "Data richiesta"; +$a->strings["No registrations."] = "Nessuna registrazione."; +$a->strings["Deny"] = "Nega"; +$a->strings["Register date"] = "Data registrazione"; +$a->strings["Last login"] = "Ultimo accesso"; +$a->strings["Expires"] = "Con scadenza"; +$a->strings["Service Class"] = "Classe dell'account"; +$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"; +$a->strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"; +$a->strings["%s channel censored/uncensored"] = array( + 0 => "Censura modificata per %s canale", + 1 => "Censura modificata per %s canali", +); +$a->strings["%s channel code allowed/disallowed"] = array( + 0 => "%s canale permette/non permette codice nei contenuti", + 1 => "%s canali permettono/non permettono codice nei contenuti", +); +$a->strings["%s channel deleted"] = array( + 0 => "%s canale è stato rimosso", + 1 => "%s canali sono stati rimossi", +); +$a->strings["Channel not found"] = "Canale non trovato"; +$a->strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; +$a->strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; +$a->strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; +$a->strings["Channel '%s' code allowed"] = "Il canale '%s' permette codice nei contenuti"; +$a->strings["Channel '%s' code disallowed"] = "Il canale '%s' non permette codice nei contenuti"; +$a->strings["Censor"] = "Applica una censura"; +$a->strings["Uncensor"] = "Rimuovi la censura"; +$a->strings["Allow Code"] = "Permetti codice nei contenuti"; +$a->strings["Disallow Code"] = "Non permettere codice nei contenuti"; +$a->strings["UID"] = "UID"; +$a->strings["Address"] = "Indirizzo"; +$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +$a->strings["Plugin %s disabled."] = "Plugin %s non attivo."; +$a->strings["Plugin %s enabled."] = "Plugin %s attivo."; +$a->strings["Disable"] = "Disattiva"; +$a->strings["Enable"] = "Attiva"; +$a->strings["Toggle"] = "Attiva/disattiva"; +$a->strings["Author: "] = "Autore:"; +$a->strings["Maintainer: "] = "Gestore:"; +$a->strings["No themes found."] = "Nessun tema trovato."; +$a->strings["Screenshot"] = "Istantanea dello schermo"; +$a->strings["[Experimental]"] = "[Sperimentale]"; +$a->strings["[Unsupported]"] = "[Non supportato]"; +$a->strings["Log settings updated."] = "Impostazioni di log aggiornate."; +$a->strings["Clear"] = "Pulisci"; +$a->strings["Debugging"] = "Debugging"; +$a->strings["Log file"] = "File di log"; +$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato Hubzilla."; +$a->strings["Log level"] = "Livello di log"; +$a->strings["New Profile Field"] = "Nuovo campo del profilo"; +$a->strings["Field nickname"] = "Nome breve del campo"; +$a->strings["System name of field"] = "Nome di sistema del campo"; +$a->strings["Input type"] = "Tipo di dati"; +$a->strings["Field Name"] = "Nome del campo"; +$a->strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo"; +$a->strings["Help text"] = "Testo di aiuto"; +$a->strings["Additional info (optional)"] = "Informazioni aggiuntive (opzionali)"; +$a->strings["Field definition not found"] = "Impossibile trovare la definizione del campo"; +$a->strings["Edit Profile Field"] = "Modifica campo del profilo"; +$a->strings["App installed."] = "App installata"; +$a->strings["Malformed app."] = "L'app contiene errori"; +$a->strings["Embed code"] = "Inserisci il codice"; +$a->strings["Edit App"] = "Modifica app"; +$a->strings["Create App"] = "Crea una app"; +$a->strings["Name of app"] = "Nome app"; +$a->strings["Location (URL) of app"] = "Indirizzo (URL) della app"; +$a->strings["Description"] = "Descrizione"; +$a->strings["Photo icon URL"] = "URL icona"; +$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; +$a->strings["Version ID"] = "ID versione"; +$a->strings["Price of app"] = "Prezzo app"; +$a->strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; +$a->strings["Unable to update menu."] = "Impossibile aggiornare il menù."; +$a->strings["Unable to create menu."] = "Impossibile creare il menù."; +$a->strings["Menu Name"] = "Nome del menu"; +$a->strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; +$a->strings["Menu Title"] = "Titolo del menu"; +$a->strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; +$a->strings["Allow Bookmarks"] = "Permetti i segnalibri"; +$a->strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; +$a->strings["Submit and proceed"] = "Salva e procedi"; +$a->strings["Drop"] = "Elimina"; +$a->strings["Bookmarks allowed"] = "Permetti segnalibri"; +$a->strings["Delete this menu"] = "Elimina questo menù"; +$a->strings["Edit menu contents"] = "Modifica i contenuti del menù"; +$a->strings["Edit this menu"] = "Modifica questo menù"; +$a->strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; +$a->strings["Edit Menu"] = "Modifica menù"; +$a->strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; +$a->strings["Menu name"] = "Nome del menù"; +$a->strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; +$a->strings["Menu title"] = "Titolo del menù"; +$a->strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; +$a->strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; +$a->strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; +$a->strings["System Notifications"] = "Notifiche di sistema"; +$a->strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +$a->strings["Add a Channel"] = "Aggiungi un canale"; +$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "I contenuti che pubblichi sono mostrati nel tuo \"canale\". Un canale può essere usato come bacheca personale, come blog, oppure può essere un forum di discussione, un gruppo di interesse, una pagina di celebrità e molto altro. Puoi creare tanti canali quanti te ne permette il tuo sito."; +$a->strings["Channel Name"] = "Nome del canale"; +$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; +$a->strings["Choose a short nickname"] = "Scegli un nome breve"; +$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti."; +$a->strings["Or import an existing channel from another location"] = "Oppure importa un tuo canale esistente da un altro hub"; +$a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa più usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. Hubzilla sceglierà per te i permessi più adatti."; +$a->strings["Channel Type"] = "Tipo di canale"; +$a->strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; +$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +$a->strings["Discard"] = "Rifiuta"; +$a->strings["Layout updated."] = "Layout aggiornato."; +$a->strings["Edit System Page Description"] = "Modifica i layout di sistema"; +$a->strings["Layout not found."] = "Layout non trovato."; +$a->strings["Module Name:"] = "Nome del modulo:"; +$a->strings["Layout Help"] = "Guida al layout"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$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["Site Member (%s)"] = "Utente del sito (%s)"; +$a->strings["Password reset requested at %s"] = "È stato richiesto di reimpostare 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 (potresti averla già usata precedentemente). La password non sarà reimpostata."; +$a->strings["Password Reset"] = "Reimposta la password"; +$a->strings["Your password has been reset as requested."] = "La 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 accedere"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; +$a->strings["Your password has changed at %s"] = "La tua password su %s è 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. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; +$a->strings["Email Address"] = "Indirizzo email"; +$a->strings["Reset"] = "Reimposta"; +$a->strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; +$a->strings["Album not found."] = "Album non trovato."; +$a->strings["Delete Album"] = "Elimina album"; +$a->strings["Delete Photo"] = "Elimina foto"; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$a->strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; +$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; +$a->strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; +$a->strings["Upload Photos"] = "Carica foto"; +$a->strings["Enter an album name"] = "Scegli il nome dell'album"; +$a->strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; +$a->strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; +$a->strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; +$a->strings["Contact Photos"] = "Foto dei contatti"; +$a->strings["Show Newest First"] = "Prima i più recenti"; +$a->strings["Show Oldest First"] = "Prima i più vecchi"; +$a->strings["View Photo"] = "Guarda la foto"; +$a->strings["Edit Album"] = "Modifica album"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; +$a->strings["Photo not available"] = "Foto non disponibile"; +$a->strings["Use as profile photo"] = "Usa come foto del profilo"; +$a->strings["Private Photo"] = "Foto privata"; +$a->strings["Previous"] = "Precendente"; +$a->strings["View Full Size"] = "Vedi nelle dimensioni originali"; +$a->strings["Next"] = "Successivo"; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["Edit photo"] = "Modifica la foto"; +$a->strings["Rotate CW (right)"] = "Ruota (senso orario)"; +$a->strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; +$a->strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; +$a->strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; +$a->strings["Caption"] = "Didascalia"; +$a->strings["Add a Tag"] = "Aggiungi tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; +$a->strings["Flag as adult in album view"] = "Marca come 'per adulti'"; +$a->strings["In This Photo:"] = "In questa foto:"; +$a->strings["Map"] = "Mappa"; +$a->strings["View Album"] = "Guarda l'album"; +$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["\$Projectname channel"] = "Canale \$Projectname"; +$a->strings["Website:"] = "Sito web:"; +$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +$a->strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; +$a->strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; +$a->strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; +$a->strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; +$a->strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; +$a->strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; +$a->strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; +$a->strings["Event not found."] = "Evento non trovato."; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Modifica l'evento"; +$a->strings["Delete event"] = "Elimina l'evento"; +$a->strings["calendar"] = "calendario"; +$a->strings["Create New Event"] = "Crea un nuovo evento"; +$a->strings["Export"] = "Esporta"; +$a->strings["Import"] = "Importa"; +$a->strings["Event removed"] = "Evento eliminato"; +$a->strings["Failed to remove event"] = "Impossibile eliminare l'evento"; +$a->strings["Event details"] = "Dettagli evento"; +$a->strings["Starting date and Title are required."] = "Titolo e data d'inizio sono obbligatori."; +$a->strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; +$a->strings["Event Starts:"] = "Inizio:"; +$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è rilevante"; +$a->strings["Event Finishes:"] = "Fine:"; +$a->strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; +$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono online ma con l'orario di un luogo particolare."; +$a->strings["Title:"] = "Titolo:"; +$a->strings["Share this event"] = "Condividi questo evento"; +$a->strings["%s element installed"] = "%s elemento installato"; +$a->strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; +$a->strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; +$a->strings["is interested in:"] = "interessi personali:"; +$a->strings["No matches"] = "Nessun risultato"; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Image resize failed."] = "Il ridimensionamento dell'immagine è 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["Image upload failed."] = "Il caricamento dell'immagine è fallito."; +$a->strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +$a->strings["female"] = "femmina"; +$a->strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +$a->strings["male"] = "maschio"; +$a->strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +$a->strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +$a->strings["profile photo"] = "foto del profilo"; +$a->strings["Photo not available."] = "Foto non disponibile."; +$a->strings["Upload File:"] = "Carica un file:"; +$a->strings["Select a profile:"] = "Seleziona un profilo:"; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$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'immagine per migliorarne la visualizzazione."; +$a->strings["Done Editing"] = "Modifica terminata"; +$a->strings["Channel added."] = "Canale aggiunto."; +$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["No ratings"] = "Nessuna valutazione"; +$a->strings["Ratings"] = "Valutazioni"; +$a->strings["Rating: "] = "Valutazione:"; +$a->strings["Website: "] = "Sito web:"; +$a->strings["Description: "] = "Descrizione:"; +$a->strings["This site is not a directory server"] = "Questo non è un server di elenchi di canali"; +$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; +$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; +$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Message deleted."] = "Messaggio eliminato."; +$a->strings["Message recalled."] = "Messaggio revocato."; +$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["Send"] = "Invia"; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["Recall message"] = "Revoca il messaggio"; +$a->strings["Message has been recalled."] = "Il messaggio è stato revocato."; +$a->strings["Delete Conversation"] = "Elimina la conversazione"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["Page Title"] = "Titolo della pagina"; +$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; +$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; +$a->strings["Passwords do not match."] = "Le password non corrispondono."; +$a->strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; +$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; +$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; +$a->strings["Registration on this site/hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; +$a->strings["Register at another affiliated site/hub"] = "Registrati su un altro hub affiliato"; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +$a->strings["Terms of Service"] = "Condizioni d'Uso"; +$a->strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; +$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; +$a->strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; +$a->strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; +$a->strings["Your email address"] = "Il tuo indirizzo email"; +$a->strings["Choose a password"] = "Scegli una password"; +$a->strings["Please re-enter your password"] = "Ripeti la password per verifica"; +$a->strings["Block Name"] = "Nome del riquadro"; +$a->strings["Block Title"] = "Titolo del riquadro"; +$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password."; +$a->strings["Remove This Account"] = "Elimina questo account"; +$a->strings["This account and all its channels will be completely removed from the network. "] = "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete."; +$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati."; +$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete."; +$a->strings["Remove Account"] = "Elimina l'account"; +$a->strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; +$a->strings["Item not available."] = "Elemento non disponibile."; +$a->strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato."; +$a->strings["Source created."] = "Sorgente creata."; +$a->strings["Source updated."] = "Sorgente aggiornata."; +$a->strings["*"] = "*"; +$a->strings["Manage remote sources of content for your channel."] = "Gestisci le sorgenti dei contenuti del tuo canale."; +$a->strings["New Source"] = "Nuova sorgente"; +$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente."; +$a->strings["Only import content with these words (one per line)"] = "Importa solo i contenuti che hanno queste parole (una per riga)"; +$a->strings["Leave blank to import all public content"] = "Lascia vuoto per importare tutti i contenuti pubblici"; +$a->strings["Source not found."] = "Sorgente non trovata."; +$a->strings["Edit Source"] = "Modifica la sorgente"; +$a->strings["Delete Source"] = "Elimina la sorgente"; +$a->strings["Source removed"] = "Sorgente eliminata"; +$a->strings["Unable to remove source."] = "Impossibile rimuovere la sorgente."; +$a->strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["network"] = "rete"; +$a->strings["RSS"] = "RSS"; +$a->strings["Please login."] = "Effettua l'accesso."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; +$a->strings["The error message was:"] = "Messaggio di errore ricevuto:"; +$a->strings["Authentication failed."] = "Autenticazione fallita."; +$a->strings["Remote Authentication"] = "Accedi tramite il tuo hub"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; +$a->strings["Authenticate"] = "Accedi"; +$a->strings["This directory server requires an access token"] = "Questo server di elenchi pubblici necessita di un token di autenticazione"; +$a->strings["Version %s"] = "Versione %s"; +$a->strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; +$a->strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; +$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Questo è un hub di \$Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. "; +$a->strings["Tag: "] = "Tag: "; +$a->strings["Last background fetch: "] = "Ultima acquisizione:"; +$a->strings["Current load average: "] = "Carico medio attuale:"; +$a->strings["Running at web location"] = "In esecuzione sull'indirizzo web"; +$a->strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Visita RedMatrix.me per scoprire di più su \$Projectname."; +$a->strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; +$a->strings["\$projectname issues"] = "Problematiche note su \$projectname"; +$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"; +$a->strings["Site Administrators"] = "Amministratori del sito"; +$a->strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; +$a->strings["Nothing to import."] = "Non c'è niente da importare."; +$a->strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; +$a->strings["Imported file is empty."] = "Il file da importare è vuoto."; +$a->strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; +$a->strings["No channel. Import failed."] = "Nessun canale. Import fallito."; +$a->strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; +$a->strings["Import Channel"] = "Importa un canale"; +$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."; +$a->strings["File to Upload"] = "File da caricare"; +$a->strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; +$a->strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; +$a->strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; +$a->strings["Your old login password"] = "La password per il vecchio hub"; +$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."; +$a->strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; +$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; +$a->strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; +$a->strings["Thing updated"] = "L'oggetto è stato aggiornato"; +$a->strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; +$a->strings["Thing added"] = "L'Oggetto è stato aggiunto"; +$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +$a->strings["Show Thing"] = "Mostra l'oggetto"; +$a->strings["item not found."] = "non trovato."; +$a->strings["Edit Thing"] = "Modifica l'oggetto"; +$a->strings["Select a profile"] = "Scegli un profilo"; +$a->strings["Post an activity"] = "Pubblica un'attività"; +$a->strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi può vedere il profilo"; +$a->strings["Name of thing e.g. something"] = "Nome dell'oggetto"; +$a->strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto (opzionale)"; +$a->strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; +$a->strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; +$a->strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; +$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +$a->strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; +$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["Send invitations"] = "Spedisci inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; +$a->strings["You will need to supply this invitation code: "] = "Dovrai fornire questo codice di invito:"; +$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; +$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; +$a->strings["or visit "] = "oppure visita "; +$a->strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; +$a->strings["Source of Item"] = "Sorgente"; $a->strings["Name is required"] = "Il nome è obbligatorio"; $a->strings["Key and Secret are required"] = "Key e Secret sono richiesti"; -$a->strings["Diaspora Policy Settings updated."] = "Le regole per Diaspora sono state aggiornate."; $a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; $a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; $a->strings["Password changed."] = "Password cambiata."; @@ -932,15 +1763,13 @@ $a->strings["Not valid email."] = "Email non valida."; $a->strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; $a->strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; $a->strings["Settings updated."] = "Impostazioni aggiornate."; -$a->strings["No"] = "No"; -$a->strings["Yes"] = "Si"; $a->strings["Add application"] = "Aggiungi una app"; $a->strings["Name of application"] = "Nome dell'applicazione"; $a->strings["Consumer Key"] = "Consumer Key"; $a->strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; $a->strings["Consumer Secret"] = "Consumer Secret"; $a->strings["Redirect"] = "Redirect"; -$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione."; +$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"; $a->strings["Icon url"] = "Url icona"; $a->strings["Optional"] = "Opzionale"; $a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione."; @@ -950,16 +1779,11 @@ $a->strings["No name"] = "Nessun nome"; $a->strings["Remove authorization"] = "Revoca l'autorizzazione"; $a->strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; $a->strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; -$a->strings["Settings for the built-in Diaspora emulator"] = "Interconnessione con Diaspora"; -$a->strings["Allow any Diaspora member to comment on your public posts"] = "Permetti a tutti gli utenti di Diaspora di commentare i tuoi post pubblici"; -$a->strings["Diaspora Policy Settings"] = "Regole per Diaspora"; -$a->strings["Prevent your hashtags from being redirected to other sites"] = "Impedisci che i tuoi #tag puntino su altri siti"; $a->strings["Account Settings"] = "Il tuo account"; $a->strings["Enter New Password:"] = "Inserisci la nuova password:"; $a->strings["Confirm New Password:"] = "Conferma la nuova password:"; -$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non cambiare la password"; +$a->strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; $a->strings["Email Address:"] = "Indirizzo email:"; -$a->strings["Remove Account"] = "Elimina l'account"; $a->strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; $a->strings["Off"] = "Off"; $a->strings["On"] = "On"; @@ -967,8 +1791,10 @@ $a->strings["Additional Features"] = "Funzionalità opzionali"; $a->strings["Connector Settings"] = "Impostazioni del connettore"; $a->strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; $a->strings["%s - (Experimental)"] = "%s - (Sperimentale)"; -$a->strings["mobile"] = "mobile"; $a->strings["Display Settings"] = "Aspetto"; +$a->strings["Theme Settings"] = "Impostazioni del tema"; +$a->strings["Custom Theme Settings"] = "Personalizzazione del tema"; +$a->strings["Content Settings"] = "Impostazioni dei contenuti"; $a->strings["Display Theme:"] = "Tema per schermi medio grandi:"; $a->strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; $a->strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili"; @@ -977,52 +1803,50 @@ $a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun li $a->strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:"; $a->strings["Maximum of 100 items"] = "Massimo 100"; $a->strings["Show emoticons (smilies) as images"] = "Mostra le faccine (smilies) come immagini"; -$a->strings["Link post titles to source"] = "Il link del titolo di un articolo porta al sito originale"; +$a->strings["Link post titles to source"] = "Il link del titolo di un post porta al sito originale"; $a->strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)"; $a->strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog"; $a->strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)"; $a->strings["Use blog/list mode on matrix page"] = "Mostra la tua rete in modalità blog"; $a->strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)"; -$a->strings["click to expand content exceeding this height"] = "dovrai cliccare per mostrare i contenuti di dimensioni maggiori"; +$a->strings["click to expand content exceeding this height"] = "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori"; $a->strings["Matrix page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)"; $a->strings["Nobody except yourself"] = "Nessuno tranne te"; $a->strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso"; $a->strings["Approved connections"] = "Contatti approvati"; $a->strings["Any connections"] = "Tutti i contatti"; -$a->strings["Anybody on this website"] = "Chiunque su questo sito"; -$a->strings["Anybody in this network"] = "Chiunque su Red"; -$a->strings["Anybody authenticated"] = "Chiunque sia autenticato"; +$a->strings["Anybody on this website"] = "Chiunque su questo hub"; +$a->strings["Anybody in this network"] = "Chiunque su questa rete"; +$a->strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso"; $a->strings["Anybody on the internet"] = "Chiunque su internet"; $a->strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito nell'elenco pubblico dei canali"; $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; -$a->strings["or"] = "o"; $a->strings["Your channel address is"] = "L'indirizzo del tuo canale è"; $a->strings["Channel Settings"] = "Impostazioni del canale"; $a->strings["Basic Settings"] = "Impostazioni di base"; $a->strings["Your Timezone:"] = "Il tuo fuso orario:"; $a->strings["Default Post Location:"] = "Località predefinita:"; -$a->strings["Geographical location to display on your posts"] = "Posizione geografica da mostrare sui tuoi post"; +$a->strings["Geographical location to display on your posts"] = "La posizione geografica da mostrare sui tuoi post"; $a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; $a->strings["Adult Content"] = "Contenuto per adulti"; $a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"; $a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; $a->strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"; $a->strings["Hide my online presence"] = "Nascondi la mia presenza online"; -$a->strings["Prevents displaying in your profile that you are online"] = "Evita che sul tuo profilo compaia la tua presenza online"; +$a->strings["Prevents displaying in your profile that you are online"] = "Non mostrare sul tuo profilo quando sei online"; $a->strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate"; $a->strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)"; $a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"; $a->strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico"; $a->strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; -$a->strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi articoli"; +$a->strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi post"; $a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; $a->strings["Advanced Privacy Settings"] = "Impostazioni di privacy avanzate"; $a->strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; $a->strings["0 or blank prevents expiration"] = "Lascia vuoto oppure 0 per non impostare scadenze"; $a->strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; -$a->strings["May reduce spam activity"] = "Serve e ridurre lo spam"; -$a->strings["Default Post Permissions"] = "Permessi predefiniti per gli articoli"; -$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; +$a->strings["May reduce spam activity"] = "Serve a ridurre lo spam"; +$a->strings["Default Post Permissions"] = "Permessi predefiniti per i post"; $a->strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; $a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"; $a->strings["Useful to reduce spamming"] = "Serve e ridurre lo spam"; @@ -1035,11 +1859,11 @@ $a->strings["Send a notification email when:"] = "Invia una email di notifica qu $a->strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto"; $a->strings["Your connections are confirmed"] = "I tuoi contatti sono confermati"; $a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca"; -$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo articolo"; +$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento dopo di te"; $a->strings["You receive a private message"] = "Ricevi un messaggio privato"; $a->strings["You receive a friend suggestion"] = "Ti viene suggerito un amico"; -$a->strings["You are tagged in a post"] = "Sei taggato in un articolo"; -$a->strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un articolo"; +$a->strings["You are tagged in a post"] = "Sei taggato in un post"; +$a->strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un post"; $a->strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:"; $a->strings["Unseen matrix activity"] = "Nuove attività nella rete"; $a->strings["Unseen channel activity"] = "Novità nei canali"; @@ -1054,240 +1878,32 @@ $a->strings["System info messages"] = "Notifiche di sistema"; $a->strings["System critical alerts"] = "Avvisi critici di sistema"; $a->strings["New connections"] = "Nuovi contatti"; $a->strings["System Registrations"] = "Registrazioni"; -$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi articoli, i messaggi privati e i nuovi contatti"; +$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti"; $a->strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi"; $a->strings["Must be greater than 0"] = "Maggiore di 0"; $a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; $a->strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; $a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)"; $a->strings["Miscellaneous Settings"] = "Impostazioni varie"; +$a->strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate"; +$a->strings["Default file upload folder"] = "Cartella predefinita per i file caricati"; $a->strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale"; -$a->strings["Remove Channel"] = "Elimina questo canale"; $a->strings["Remove this channel."] = "Elimina questo canale."; $a->strings["Xchan Lookup"] = "Ricerca canale"; $a->strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; -$a->strings["Not found."] = "Non trovato."; +$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +$a->strings["Create a new channel"] = "Crea un nuovo canale"; +$a->strings["Current Channel"] = "Canale attuale"; +$a->strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; +$a->strings["Default Channel"] = "Canale predefinito"; +$a->strings["Make Default"] = "Rendi predefinito"; +$a->strings["%d new messages"] = "%d nuovi messaggi"; +$a->strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; +$a->strings["Delegated Channels"] = "Canali delegati"; $a->strings["Authorize application connection"] = "Autorizza la app"; $a->strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:"; $a->strings["Please login to continue."] = "Accedi al sito 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 app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; -$a->strings["Channel added."] = "Canale aggiunto."; -$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["Continue"] = "Continua"; -$a->strings["Premium Channel Setup"] = "Canale premium - installazione"; -$a->strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; -$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; -$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; -$a->strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; -$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; -$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; -$a->strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; -$a->strings["Thing updated"] = "L'Oggetto è stato aggiornato"; -$a->strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; -$a->strings["Thing added"] = "L'Oggetto è stato aggiunto"; -$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -$a->strings["Show Thing"] = "Mostra l'Oggetto"; -$a->strings["item not found."] = "non trovato."; -$a->strings["Edit Thing"] = "Modifica l'Oggetto"; -$a->strings["Select a profile"] = "Scegli un profilo"; -$a->strings["Post an activity"] = "Pubblica un'attività"; -$a->strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi segue il relativo canale"; -$a->strings["Name of thing e.g. something"] = "Nome dell'Oggetto"; -$a->strings["URL of thing (optional)"] = "Indirizzo web dell'Oggetto (opzionale)"; -$a->strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'Oggetto (facoltativo)"; -$a->strings["Add Thing to your Profile"] = "Aggiungi l'Oggetto al tuo profilo"; -$a->strings["Item not available."] = "Elemento non disponibile."; -$a->strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -$a->strings["Hubzilla - "The Network""] = "Hubzilla - "La tua rete""; -$a->strings["Welcome to %s"] = "%s ti dà il benvenuto"; -$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -$a->strings["Image resize failed."] = "Il ridimensionamento dell'immagine è 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["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; -$a->strings["Unable to process image."] = "Impossibile elaborare l'immagine."; -$a->strings["Photo not available."] = "Foto non disponibile."; -$a->strings["Upload File:"] = "Carica un file:"; -$a->strings["Select a profile:"] = "Seleziona un profilo:"; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$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'immagine per migliorarne la visualizzazione."; -$a->strings["Done Editing"] = "Modifica terminata"; -$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; -$a->strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; -$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -$a->strings["Invalid item."] = "Elemento non valido."; -$a->strings["Channel not found."] = "Canale non trovato."; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["Like/Dislike"] = "Mi piace/Non mi piace"; -$a->strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; -$a->strings["Please login with your Hubzilla ID or register as a new Redmatrix.member to continue."] = "Per favore accedi con il tuo identificativo Hubzilla o registrati su Hubzilla per continuare."; -$a->strings["Invalid request."] = "Richiesta non valida."; -$a->strings["thing"] = "Oggetto"; -$a->strings["Channel unavailable."] = "Canale non trovato."; -$a->strings["Previous action reversed."] = "Il comando precedente è stato annullato."; -$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; -$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; -$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non ha preso una decisione"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; -$a->strings["Action completed."] = "Comando completato."; -$a->strings["Thank you."] = "Grazie."; -$a->strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; -$a->strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; -$a->strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; -$a->strings["Event not found."] = "Evento non trovato."; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Modifica l'evento"; -$a->strings["Delete event"] = "Elimina l'evento"; -$a->strings["Create New Event"] = "Crea un nuovo evento"; -$a->strings["Previous"] = "Precendente"; -$a->strings["Next"] = "Successivo"; -$a->strings["Export"] = "Esporta"; -$a->strings["Event removed"] = "Evento eliminato"; -$a->strings["Failed to remove event"] = "Impossibile eliminare l'evento"; -$a->strings["Event details"] = "Dettagli evento"; -$a->strings["Starting date and Title are required."] = "Titolo e data d'inizio sono obbligatori."; -$a->strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; -$a->strings["Event Starts:"] = "Inizio:"; -$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è rilevante"; -$a->strings["Event Finishes:"] = "Fine:"; -$a->strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; -$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono in base all'orario di un luogo particolare."; -$a->strings["Description:"] = "Descrizione:"; -$a->strings["Title:"] = "Titolo:"; -$a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Public Sites"] = "Siti pubblici"; -$a->strings["The listed sites allow public registration into the Hubzilla. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Gli indirizzi elencati permettono la registrazione su Hubzilla. Tutti i siti di questa rete sono interconnessi, quindi essere registrati su uno è come essere registrati ovunque. Alcuni potrebbero richiedere un'iscrizione a pagamento o prevedere diverse tipologie di abbonamento. Eventualmente potrai trovare maggiori informazioni visitando ciascun sito."; -$a->strings["Rate this hub"] = "Valuta questo hub"; -$a->strings["Site URL"] = "URL del sito"; -$a->strings["Access Type"] = "Tipo di accesso"; -$a->strings["Registration Policy"] = "Politica di registrazione"; -$a->strings["Location"] = "Posizione geografica"; -$a->strings["View hub ratings"] = "Vedi le valutazioni del hub"; -$a->strings["Rate"] = "Valuta"; -$a->strings["View ratings"] = "Vedi le valutazioni"; -$a->strings["Edit post"] = "Modifica articolo"; -$a->strings["Hubzilla channel"] = "Canale Hubzilla"; -$a->strings["Collection created."] = "L'insieme di canali è stato creato."; -$a->strings["Could not create collection."] = "Impossibile creare l'insieme."; -$a->strings["Collection updated."] = "Insieme aggiornato."; -$a->strings["Create a collection of channels."] = "Crea un insieme di canali."; -$a->strings["Collection Name: "] = "Nome dell'insieme:"; -$a->strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali dell'insieme"; -$a->strings["Collection removed."] = "Insieme rimosso."; -$a->strings["Unable to remove collection."] = "Impossibile rimuovere l'insieme."; -$a->strings["Collection Editor"] = "Modifica l'insieme"; -$a->strings["Members"] = "Membri"; -$a->strings["All Connected Channels"] = "Tutti i canali connessi"; -$a->strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -$a->strings["Version %s"] = "Versione %s"; -$a->strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; -$a->strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; -$a->strings["Red"] = "Hubzilla"; -$a->strings["This is a hub of hubzilla - a global cooperative network of decentralized privacy enhanced websites."] = "Questo è un hub di Hubzilla - una rete cooperativa e decentralizzata di siti ad elevata privacy. "; -$a->strings["Tag: "] = "Tag: "; -$a->strings["Last background fetch: "] = "Ultima acquisizione:"; -$a->strings["Running at web location"] = "In esecuzione sull'indirizzo web"; -$a->strings["Please visit redmatrix.me to learn more about the Hubzilla."] = "Visita Redmatrix.me per scoprire cosa è Hubzilla."; -$a->strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; -$a->strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"hubzilla\" at librelist - dot com"; -$a->strings["Site Administrators"] = "Amministratori del sito"; -$a->strings["Help:"] = "Guida:"; -$a->strings["Not Found"] = "Non disponibile"; -$a->strings["Hubzilla Server - Setup"] = "Hubzilla Server - Installazione"; -$a->strings["Could not connect to database."] = " Impossibile connettersi al database."; -$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; -$a->strings["Could not create table."] = "Impossibile creare le tabelle."; -$a->strings["Your site database has been installed."] = "Il database del sito è stato installato."; -$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; -$a->strings["System check"] = "Verifica del sistema"; -$a->strings["Check again"] = "Verifica di nuovo"; -$a->strings["Database connection"] = "Connessione al database"; -$a->strings["In order to install Hubzilla we need to know how to connect to your database."] = "Per installare Hubzilla è necessario conoscere i parametri di connessione al 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 deve già esistere. Se non esiste, crealo prima di continuare."; -$a->strings["Database Server Name"] = "Server del database"; -$a->strings["Default is localhost"] = "'localhost' è il predefinito"; -$a->strings["Database Port"] = "Port del database"; -$a->strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard"; -$a->strings["Database Login Name"] = "Utente database"; -$a->strings["Database Login Password"] = "Password utente database"; -$a->strings["Database Name"] = "Nome database"; -$a->strings["Database Type"] = "Tipo 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["Website URL"] = "URL completo del sito"; -$a->strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; -$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 del sito"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile 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."] = "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron."; -$a->strings["PHP executable path"] = "Path del comando PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."; -$a->strings["Command line PHP"] = "PHP da riga di comando"; -$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' necessario perché funzioni 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\" su 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 usando un server 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 or postgres PHP module"] = "modulo PHP per mysqli oppure prostgres"; -$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; -$a->strings["mcrypt PHP module"] = "modulo PHP mcrypt"; -$a->strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato"; -$a->strings["proc_open"] = "proc_open"; -$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non 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 installato."; -$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; -$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato"; -$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Errore: il modulo PHP mcrypt è richiesto ma non 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 di Hubzilla 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."] = "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella 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 Red top folder."] = "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; -$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura a %s sotto la cartella di installazione di Hubzilla."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Assicurati che il tuo web server sia in esecuzione da parte di un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."; -$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene."; -$a->strings["%s is writable"] = "%s è scrivibile"; -$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Hubzilla salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di Hubzilla"; -$a->strings["store is writable"] = "l'archivio è scrivibile"; -$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito."; -$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati generati da te!"; -$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; -$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser."; -$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; -$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; -$a->strings["SSL certificate validation"] = "Validazione del certificato SSL"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:"; -$a->strings["Url rewrite is working"] = "Url rewrite funziona correttamente"; -$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 puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito."; -$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -$a->strings["

What next

"] = "

I prossimi passi

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; -$a->strings["No channel."] = "Nessun canale."; -$a->strings["Common connections"] = "Contatti in comune"; -$a->strings["No connections in common."] = "Nessun contatto in comune."; -$a->strings["This site is not a directory server"] = "Questo sito non è un server di elenchi pubblici"; -$a->strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; -$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; -$a->strings["Connection updated."] = "Contatto aggiornato."; -$a->strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; $a->strings["Blocked"] = "Bloccati"; $a->strings["Ignored"] = "Ignorati"; $a->strings["Hidden"] = "Nascosti"; @@ -1307,229 +1923,139 @@ $a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; $a->strings["Edit connection"] = "Modifica il contatto"; $a->strings["Search your connections"] = "Cerca tra i contatti"; $a->strings["Finding: "] = "Ricerca: "; -$a->strings["webpage"] = "pagina web"; -$a->strings["block"] = "riquadro"; -$a->strings["layout"] = "layout"; -$a->strings["%s element installed"] = "%s elemento installato"; -$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["Hubzilla - Guests: Username: {your email address}, Password: +++"] = "Accesso a Hubzilla. {Inserisci l'email con cui sei registrato e la password.}"; -$a->strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; -$a->strings["Album not found."] = "Album non trovato."; -$a->strings["Delete Album"] = "Elimina album"; -$a->strings["Delete Photo"] = "Elimina foto"; -$a->strings["Public access denied."] = "Accesso pubblico negato."; -$a->strings["No photos selected"] = "Nessuna foto selezionata"; -$a->strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; -$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; -$a->strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; -$a->strings["Upload Photos"] = "Carica foto"; -$a->strings["Enter a new album name"] = "Inserisci il nome di un nuovo album"; -$a->strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; -$a->strings["Create a status post for this upload"] = "Pubblica l'oggetto caricato sulla bacheca"; -$a->strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["Show Newest First"] = "Prima i più recenti"; -$a->strings["Show Oldest First"] = "Prima i più vecchi"; -$a->strings["View Photo"] = "Guarda la foto"; -$a->strings["Edit Album"] = "Modifica album"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; -$a->strings["Photo not available"] = "Foto non disponibile"; -$a->strings["Use as profile photo"] = "Usa come foto del profilo"; -$a->strings["Private Photo"] = "Foto privata"; -$a->strings["View Full Size"] = "Vedi nelle dimensioni originali"; -$a->strings["Edit photo"] = "Modifica la foto"; -$a->strings["Rotate CW (right)"] = "Ruota (senso orario)"; -$a->strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; -$a->strings["Caption"] = "Titolo"; -$a->strings["Add a Tag"] = "Aggiungi tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; -$a->strings["Flag as adult in album view"] = "Marca come 'per adulti'"; -$a->strings["In This Photo:"] = "In questa foto:"; -$a->strings["Map"] = "Mappa"; -$a->strings["View Album"] = "Guarda l'album"; -$a->strings["Recent Photos"] = "Foto recenti"; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; -$a->strings["is interested in:"] = "interessi personali:"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["Away"] = "Assente"; -$a->strings["Online"] = "Online"; -$a->strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; -$a->strings["Save Bookmark"] = "Salva segnalibro"; -$a->strings["URL of bookmark"] = "URL del segnalibro"; -$a->strings["Description"] = "Descrizione"; -$a->strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; -$a->strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; -$a->strings["System Notifications"] = "Notifiche di sistema"; -$a->strings["network"] = "rete"; -$a->strings["RSS"] = "RSS"; -$a->strings["Layout updated."] = "Layout aggiornato."; -$a->strings["Edit System Page Description"] = "Modifica i layout di sistema"; -$a->strings["Layout not found."] = "Layout non trovato."; -$a->strings["Module Name:"] = "Nome del modulo:"; -$a->strings["Layout Help"] = "Guida al layout"; -$a->strings["- select -"] = "- scegli -"; -$a->strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; -$a->strings["Nothing to import."] = "Non c'è niente da importare."; -$a->strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio server"; -$a->strings["Imported file is empty."] = "Il file da importare è vuoto."; -$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; -$a->strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; -$a->strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; -$a->strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; -$a->strings["Import completed."] = "L'importazione è terminata con successo!"; -$a->strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; -$a->strings["Import Channel"] = "Importa un canale"; -$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi scaricare i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file che hai esportato. Saranno importati solamente l'identità e i contatti. L'importazione dei contenuti non è ancora disponibile."; -$a->strings["File to Upload"] = "File da caricare"; -$a->strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio server/hub"; -$a->strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; -$a->strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio server"; -$a->strings["Your old login password"] = "La password per il vecchio server"; -$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo server, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i server, ma solamente uno sarà indicato come posizione in cui risiedono i tuoi file, foto, ecc."; -$a->strings["Make this hub my primary location"] = "Rendi questo server il mio indirizzo primario"; -$a->strings["Import existing posts if possible"] = "Importazione dei post esistenti, se possibile"; -$a->strings["Item not found"] = "Elemento non trovato"; -$a->strings["Edit Layout"] = "Modifica il layout"; $a->strings["Delete layout?"] = "Vuoi eliminare questo layout?"; -$a->strings["Insert YouTube video"] = "Inserisci video da YouTube"; -$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]"; -$a->strings["Delete Layout"] = "Elimina il layout"; -$a->strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; -$a->strings["Room not found"] = "Area chat non trovata"; -$a->strings["Leave Room"] = "Lascia l'area chat"; -$a->strings["Delete This Room"] = "Elimina questa area chat"; -$a->strings["I am away right now"] = "Non sono presente"; -$a->strings["I am online"] = "Sono online"; -$a->strings["Bookmark this room"] = "Aggiungi l'area chat ai segnalibri"; -$a->strings["New Chatroom"] = "Nuova area chat"; -$a->strings["Chatroom Name"] = "Nome dell'area chat"; -$a->strings["%1\$s's Chatrooms"] = "Le aree chat di %1\$s"; +$a->strings["Edit Layout"] = "Modifica il layout"; $a->strings["Delete webpage?"] = "Vuoi eliminare questa pagina web?"; $a->strings["Page link title"] = "Link del titolo"; $a->strings["Edit Webpage"] = "Modifica la pagina web"; -$a->strings["This directory server requires an access token"] = "Questo server di elenchi pubblici necessita di un token di autenticazione"; -$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["Site Member (%s)"] = "Utente del sito (%s)"; -$a->strings["Password reset requested at %s"] = "È stato richiesto di reimpostare 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 (potresti averla già usata precedentemente). La password non sarà reimpostata."; -$a->strings["Password Reset"] = "Reimposta la password"; -$a->strings["Your password has been reset as requested."] = "La 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 accedere"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; -$a->strings["Your password has changed at %s"] = "La tua password su %s è 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. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; -$a->strings["Email Address"] = "Indirizzo email"; -$a->strings["Reset"] = "Reimposta"; -$a->strings["Website:"] = "Sito web:"; -$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; -$a->strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -$a->strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; -$a->strings["Item is not editable"] = "L'elemento non è modificabile"; -$a->strings["Delete item?"] = "Eliminare questo elemento?"; -$a->strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Red"] = "Vieni con noi su Hubzilla"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; -$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["Send invitations"] = "Spedisci inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["Please join my community on Hubzilla."] = "Entra a far parte della mia comunità su Hubzilla."; -$a->strings["You will need to supply this invitation code: "] = "Dovrai fornire questo codice di invito:"; -$a->strings["1. Register at any Hubzilla location (they are all inter-connected)"] = "1. Registrati su un qualsiasi sito Hubzilla (sono tutti interconnessi)"; -$a->strings["2. Enter my Hubzilla network address into the site searchbar."] = "2. Inserisci il mio indirizzo Hubzilla nella barra di ricerca che compare nella pagina."; -$a->strings["or visit "] = "oppure visita "; -$a->strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; +$a->strings["Collection created."] = "L'insieme di canali è stato creato."; +$a->strings["Could not create collection."] = "Impossibile creare l'insieme."; +$a->strings["Collection updated."] = "Insieme aggiornato."; +$a->strings["Create a collection of channels."] = "Crea un insieme di canali."; +$a->strings["Collection Name: "] = "Nome dell'insieme:"; +$a->strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali dell'insieme"; +$a->strings["Collection removed."] = "Insieme rimosso."; +$a->strings["Unable to remove collection."] = "Impossibile rimuovere l'insieme."; +$a->strings["Collection Editor"] = "Modifica l'insieme"; +$a->strings["Members"] = "Membri"; +$a->strings["All Connected Channels"] = "Tutti i canali connessi"; +$a->strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; +$a->strings["Continue"] = "Continua"; +$a->strings["Premium Channel Setup"] = "Canale premium - configurazione"; +$a->strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; +$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; +$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; +$a->strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; +$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; +$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; +$a->strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; +$a->strings["No connections."] = "Nessun contatto."; +$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; $a->strings["Location not found."] = "Indirizzo non trovato."; -$a->strings["Primary location cannot be removed."] = "L'indirizzo principale non può essere rimosso."; +$a->strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; +$a->strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; $a->strings["No locations found."] = "Nessun indirizzo trovato."; $a->strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; $a->strings["Location (address)"] = "Indirizzo"; $a->strings["Primary Location"] = "Indirizzo primario"; $a->strings["Drop location"] = "Elimina un indirizzo"; -$a->strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato."; -$a->strings["Source created."] = "Sorgente creata."; -$a->strings["Source updated."] = "Sorgente aggiornata."; -$a->strings["*"] = "*"; -$a->strings["Manage remote sources of content for your channel."] = "Gestisci le sorgenti dei contenuti del tuo canale."; -$a->strings["New Source"] = "Nuova sorgente"; -$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente."; -$a->strings["Only import content with these words (one per line)"] = "Importa solo i contenuti che hanno queste parole (una per riga)"; -$a->strings["Leave blank to import all public content"] = "Lascia vuoto per importare tutti i contenuti pubblici"; -$a->strings["Channel Name"] = "Nome del canale"; -$a->strings["Source not found."] = "Sorgente non trovata."; -$a->strings["Edit Source"] = "Modifica la sorgente"; -$a->strings["Delete Source"] = "Elimina la sorgente"; -$a->strings["Source removed"] = "Sorgente eliminata"; -$a->strings["Unable to remove source."] = "Impossibile rimuovere la sorgente."; -$a->strings["Unable to update menu."] = "Impossibile aggiornare il menù."; -$a->strings["Unable to create menu."] = "Impossibile creare il menù."; -$a->strings["Menu Name"] = "Nome del menu"; -$a->strings["Unique name (not visible on webpage) - required"] = "Identificativo unico (non visibile sulla pagina) - obbligatorio"; -$a->strings["Menu Title"] = "Titolo del menu"; -$a->strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; -$a->strings["Allow Bookmarks"] = "Permetti l'aggiunta ai segnalibri"; -$a->strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; -$a->strings["Submit and proceed"] = "Salva e procedi"; -$a->strings["Drop"] = "Elimina"; -$a->strings["Bookmarks allowed"] = "Permetti segnalibri"; -$a->strings["Delete this menu"] = "Elimina questo menù"; -$a->strings["Edit menu contents"] = "Modifica i contenuti del menù"; -$a->strings["Edit this menu"] = "Modifica questo menù"; -$a->strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; -$a->strings["Menu not found."] = "Menù non trovato."; -$a->strings["Edit Menu"] = "Modifica menù"; -$a->strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; -$a->strings["Menu name"] = "Nome del menù"; -$a->strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; -$a->strings["Menu title"] = "Titolo del menù"; -$a->strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; -$a->strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; -$a->strings["Modify"] = "Modifica"; -$a->strings["Permission Denied."] = "Permesso negato."; -$a->strings["File not found."] = "File non trovato."; -$a->strings["Edit file permissions"] = "Modifica i permessi del file"; -$a->strings["Set/edit permissions"] = "Modifica i permessi"; -$a->strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; -$a->strings["Return to file list"] = "Torna all'elenco dei file"; -$a->strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un articolo"; -$a->strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; -$a->strings["Share this file"] = "Condividi questo file"; -$a->strings["Show URL to this file"] = "Mostra l'URL del file"; -$a->strings["Notify your contacts about this file"] = "Notifica ai tuoi contatti che hai caricato il file"; -$a->strings["Contact not found."] = "Contatto non trovato."; -$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["Hub not found."] = "Server non trovato."; -$a->strings["Poke/Prod"] = "Poke/Prod"; -$a->strings["poke, prod or do other things to somebody"] = "Manda un poke, un prod o altro"; -$a->strings["Recipient"] = "Destinatario"; -$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; -$a->strings["Make this post private"] = "Rendi privato questo articolo"; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica la 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["Page Title"] = "Titolo della pagina"; +$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo."; +$a->strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; +$a->strings["Could not connect to database."] = " Impossibile connettersi al database."; +$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; +$a->strings["Could not create table."] = "Impossibile creare le tabelle."; +$a->strings["Your site database has been installed."] = "Il database del sito è stato installato."; +$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; +$a->strings["System check"] = "Verifica del sistema"; +$a->strings["Check again"] = "Verifica di nuovo"; +$a->strings["Database connection"] = "Connessione al database"; +$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per poter installare \$Projectname è necessario fornire i parametri di connessione 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 deve già esistere. Se non esiste, crealo prima di continuare."; +$a->strings["Database Server Name"] = "Server del database"; +$a->strings["Default is localhost"] = "'localhost' è il predefinito"; +$a->strings["Database Port"] = "Port del database"; +$a->strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard"; +$a->strings["Database Login Name"] = "Utente database"; +$a->strings["Database Login Password"] = "Password database"; +$a->strings["Database Name"] = "Nome database"; +$a->strings["Database Type"] = "Tipo database"; +$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del hub"; +$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 di Hubzilla."; +$a->strings["Website URL"] = "URL completo del sito"; +$a->strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; +$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub"; +$a->strings["Site settings"] = "Impostazioni del hub"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile 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."] = "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron."; +$a->strings["PHP executable path"] = "Path del comando PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."; +$a->strings["Command line PHP"] = "PHP da riga di comando"; +$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' necessario perché funzioni la consegna dei messaggi."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta."; +$a->strings["You can adjust these settings in the servers php.ini."] = "Puoi regolare queste impostazioni sul server in php.ini"; +$a->strings["PHP upload limits"] = "Limiti PHP in upload"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Genera chiavi di cifratura"; +$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 or postgres PHP module"] = "modulo PHP per mysqli oppure prostgres"; +$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; +$a->strings["mcrypt PHP module"] = "modulo PHP mcrypt"; +$a->strings["xml PHP module"] = "modulo xml PHP"; +$a->strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato"; +$a->strings["proc_open"] = "proc_open"; +$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non 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 installato."; +$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; +$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Errore: il modulo PHP mcrypt è richiesto ma non installato."; +$a->strings["Error: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è 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 di Hubzilla 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."] = "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella 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 Red top folder."] = "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; +$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura a %s sotto la cartella di installazione di Hubzilla."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."; +$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene."; +$a->strings["%s is writable"] = "%s è scrivibile"; +$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Hubzilla salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di RedMatrix"; +$a->strings["store is writable"] = "l'archivio è scrivibile"; +$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito."; +$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!"; +$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; +$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser."; +$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; +$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; +$a->strings["SSL certificate validation"] = "Validazione del certificato SSL"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:"; +$a->strings["Url rewrite is working"] = "Url rewrite funziona correttamente"; +$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 puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito."; +$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; +$a->strings["

What next

"] = "

I prossimi passi

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; +$a->strings["Files: shared with me"] = "File: condivisi con me"; +$a->strings["NEW"] = "NOVITÀ"; +$a->strings["Remove all files"] = "Elimina tutti i file"; +$a->strings["Remove this file"] = "Elimina questo file"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore."; $a->strings["Profile not found."] = "Profilo non trovato."; $a->strings["Profile deleted."] = "Profilo eliminato."; $a->strings["Profile-"] = "Profilo-"; $a->strings["New profile created."] = "Il nuovo profilo è stato creato."; $a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; $a->strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export."; -$a->strings["Profile Name is required."] = "Il nome del profilo è obbligatorio ."; +$a->strings["Profile Name is required."] = "Il nome del profilo è obbligatorio."; $a->strings["Marital Status"] = "Stato sentimentale"; $a->strings["Romantic Partner"] = "Partner affettivo"; $a->strings["Likes"] = "Mi piace"; @@ -1537,11 +2063,9 @@ $a->strings["Dislikes"] = "Non mi piace"; $a->strings["Work/Employment"] = "Lavoro/impiego"; $a->strings["Religion"] = "Religione"; $a->strings["Political Views"] = "Orientamento politico"; -$a->strings["Gender"] = "Sesso"; $a->strings["Sexual Preference"] = "Preferenze sessuali"; $a->strings["Homepage"] = "Home page"; $a->strings["Interests"] = "Interessi"; -$a->strings["Address"] = "Indirizzo"; $a->strings["Profile updated."] = "Profilo aggiornato."; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; $a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; @@ -1585,494 +2109,21 @@ $a->strings["School/education"] = "Scuola/educazione"; $a->strings["This is your default profile."] = "Questo è il tuo profilo predefinito."; $a->strings["Age: "] = "Età:"; $a->strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili"; -$a->strings["Add profile things"] = "Aggiungi Oggetti al profilo"; +$a->strings["Add profile things"] = "Aggiungi oggetti al profilo"; $a->strings["Include desirable objects in your profile"] = "Aggiungi oggetti interessanti al tuo profilo"; -$a->strings["No ratings"] = "Nessuna valutazione"; -$a->strings["Ratings"] = "Valutazioni"; -$a->strings["Rating: "] = "Valutazione:"; -$a->strings["Website: "] = "Sito web:"; -$a->strings["Description: "] = "Descrizione:"; -$a->strings["Source of Item"] = "Sorgente"; -$a->strings["Unable to create element."] = "Impossibile creare l'elemento."; -$a->strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; -$a->strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; -$a->strings["Menu Item Permissions"] = "Permessi del menu"; -$a->strings["Link Name"] = "Nome link"; -$a->strings["Link Target"] = "Destinazione link"; -$a->strings["Use Hubzilla magic-auth if available"] = "Usa l'autenticazione magica di Hubzilla, se disponibile"; -$a->strings["Open link in new window"] = "Apri il link in una nuova finestra"; -$a->strings["Order in list"] = "Ordine dell'elenco"; -$a->strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; -$a->strings["Submit and finish"] = "Salva e termina"; -$a->strings["Submit and continue"] = "Salva e continua"; -$a->strings["Menu:"] = "Menu:"; -$a->strings["Edit menu"] = "Modifica il menù"; -$a->strings["Edit element"] = "Modifica l'elemento"; -$a->strings["Drop element"] = "Elimina l'elemento"; -$a->strings["New element"] = "Nuovo elemento"; -$a->strings["Edit this menu container"] = "Modifica il contenitore del menù"; -$a->strings["Add menu element"] = "Aggiungi un elemento al menù"; -$a->strings["Delete this menu item"] = "Elimina questo elemento del menù"; -$a->strings["Edit this menu item"] = "Modifica questo elemento del menù"; -$a->strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; -$a->strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; -$a->strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; -$a->strings["Edit Menu Element"] = "Modifica l'elemento del menù"; -$a->strings["Link text"] = "Testo del link"; -$a->strings["URL of link"] = "Indirizzo del link"; -$a->strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."; -$a->strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'autenticazione magica è avvenuta con successo."; -$a->strings["%d rating"] = array( - 0 => "%d valutazione", - 1 => "%d valutazioni", -); -$a->strings["Gender: "] = "Sesso:"; -$a->strings["Status: "] = "Stato:"; -$a->strings["Homepage: "] = "Homepage:"; -$a->strings["Hometown: "] = "Città dove vivo:"; -$a->strings["About: "] = "Informazioni:"; -$a->strings["Public Forum:"] = "Forum pubblico:"; -$a->strings["Keywords: "] = "Parole chiave:"; -$a->strings["Common connections: %s"] = "Contatti in comune: %s"; -$a->strings["Finding:"] = "Ricerca:"; -$a->strings["next page"] = "pagina successiva"; -$a->strings["previous page"] = "pagina precedente"; -$a->strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; -$a->strings["Export Channel"] = "Esporta il canale"; -$a->strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "Esporta le informazioni di base del tuo canale in un piccolo file. E' utile per avere un salvataggio di sicurezza dei tuoi contatti, del tuo profilo ed altre informazioni fondamentali. Può essere usato per importare il tuo canale su un nuovo server, ma\tnon include i contenuti, per esempio articoli e foto."; -$a->strings["Export Content"] = "Esporta i contenuti"; -$a->strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Esporta i dati del canale e i contenuti in un file in formato JSON. E' un salvataggio dei tuoi contatti, dei dati del profilo e anche di tutti i contenuti. Questa non è la soluzione opportuna per importare il tuo canale su un nuovo server, visto che il file potrebbe avere dimensioni NOTEVOLI. Devi pazientare - ci vorranno alcuni minuti per raccogliere i dati prima che inizi lo scaricamento."; -$a->strings["No connections."] = "Nessun contatto."; -$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["invalid target signature"] = "la firma ricevuta non è valida"; -$a->strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; -$a->strings["Site"] = "Sito"; -$a->strings["Accounts"] = "Account"; -$a->strings["Channels"] = "Canali"; -$a->strings["Plugins"] = "Plugin"; -$a->strings["Themes"] = "Temi"; -$a->strings["Inspect queue"] = "Coda di attesa"; -$a->strings["Profile Config"] = "Configurazione del profilo"; -$a->strings["DB updates"] = "Aggiornamenti al DB"; -$a->strings["Logs"] = "Log"; -$a->strings["Plugin Features"] = "Plugin"; -$a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa"; -$a->strings["# Accounts"] = "# account"; -$a->strings["# blocked accounts"] = "# account bloccati"; -$a->strings["# expired accounts"] = "# account scaduti"; -$a->strings["# expiring accounts"] = "# account in scadenza"; -$a->strings["# Channels"] = "# canali"; -$a->strings["# primary"] = "# primari"; -$a->strings["# clones"] = "# cloni"; -$a->strings["Message queues"] = "Coda messaggi in uscita"; -$a->strings["Administration"] = "Amministrazione"; -$a->strings["Summary"] = "Riepilogo"; -$a->strings["Registered accounts"] = "Account creati"; -$a->strings["Pending registrations"] = "Registrazioni da approvare"; -$a->strings["Registered channels"] = "Canali creati"; -$a->strings["Active plugins"] = "Plugin attivi"; -$a->strings["Version"] = "Versione"; -$a->strings["Site settings updated."] = "Impostazioni del sito salvate correttamente."; -$a->strings["experimental"] = "sperimentale"; -$a->strings["unsupported"] = "non supportato"; -$a->strings["Yes - with approval"] = "Sì - con approvazione"; -$a->strings["My site is not a public server"] = "Non è un server pubblico"; -$a->strings["My site has paid access only"] = "È un servizio a pagamento"; -$a->strings["My site has free access only"] = "È un servizio gratuito"; -$a->strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; -$a->strings["Registration"] = "Registrazione"; -$a->strings["File upload"] = "Caricamento file"; -$a->strings["Policies"] = "Politiche"; -$a->strings["Site name"] = "Nome del sito"; -$a->strings["Banner/Logo"] = "Banner o logo"; -$a->strings["Administrator Information"] = "Informazioni sull'amministratore"; -$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; -$a->strings["System language"] = "Lingua di sistema"; -$a->strings["System theme"] = "Tema di sistema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; -$a->strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili"; -$a->strings["Theme for mobile devices"] = "Tema per i dispositivi mobili"; -$a->strings["Enable Diaspora Protocol"] = "Abilita la comunicazione con Diaspora"; -$a->strings["Communicate with Diaspora and Friendica - experimental"] = "Sperimentale - per comunicare con Diaspora e Friendica"; -$a->strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti"; -$a->strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)"; -$a->strings["Maximum image size"] = "Dimensione massima immagini"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; -$a->strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; -$a->strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; -$a->strings["Register text"] = "Testo di registrazione"; -$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; -$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; -$a->strings["Allowed friend domains"] = "Domini fidati e consentiti"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; -$a->strings["Allowed email domains"] = "Domini email consentiti"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; -$a->strings["Not allowed email domains"] = "Domini email non consentiti"; -$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "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."; -$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 impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; -$a->strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; -$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; -$a->strings["Force publish"] = "Forza la publicazione del profilo"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare nell'elenco pubblico tutti i profili registrati su questo sito."; -$a->strings["Disable discovery tab"] = "Disabilita la funzione 'scopri'"; -$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti."; -$a->strings["No login on Homepage"] = "Non mostrare il login sulla homepage"; -$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Per nascondere la possibilità di fare login ai visitatori (per esempio, quando il contenuto della homepage del sito è alimentato da un canale)."; -$a->strings["Proxy user"] = "Utente proxy"; -$a->strings["Proxy URL"] = "URL proxy"; -$a->strings["Network timeout"] = "Timeout rete"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; -$a->strings["Delivery interval"] = "Recapito ritardato"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; -$a->strings["Poll interval"] = "Intervallo di polling"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; -$a->strings["Maximum Load Average"] = "Carico massimo medio"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; -$a->strings["Expiration period in days for imported (matrix/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)"; -$a->strings["0 for no expiration of imported content"] = "0 per non avere scadenza"; -$a->strings["No server found"] = "Server non trovato"; -$a->strings["ID"] = "ID"; -$a->strings["for channel"] = "per canale"; -$a->strings["on server"] = "sul server"; -$a->strings["Status"] = "Stato"; -$a->strings["Server"] = "Server"; -$a->strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; -$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; -$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; -$a->strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; -$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; -$a->strings["Failed Updates"] = "Aggiornamenti falliti."; -$a->strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; -$a->strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; -$a->strings["Queue Statistics"] = "Statistiche della coda"; -$a->strings["Total Entries"] = "Totale"; -$a->strings["Priority"] = "Priorità"; -$a->strings["Destination URL"] = "URL di destinazione"; -$a->strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline"; -$a->strings["Empty queue for this hub"] = "Svuota la coda per questo hub"; -$a->strings["Last known contact"] = "Ultimo scambio dati"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s utente bloccato/sbloccato", - 1 => "%s utenti bloccati/sbloccati", -); -$a->strings["%s user deleted"] = array( - 0 => "%s utente cancellato", - 1 => "%s utenti cancellati", -); -$a->strings["Account not found"] = "Account non trovato"; -$a->strings["User '%s' blocked"] = "Utente '%s' bloccato"; -$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato"; -$a->strings["Users"] = "Utenti"; -$a->strings["select all"] = "seleziona tutti"; -$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; -$a->strings["Request date"] = "Data richiesta"; -$a->strings["No registrations."] = "Nessuna registrazione."; -$a->strings["Approve"] = "Approva"; -$a->strings["Deny"] = "Nega"; -$a->strings["Block"] = "Blocca"; -$a->strings["Unblock"] = "Sblocca"; -$a->strings["Register date"] = "Data registrazione"; -$a->strings["Last login"] = "Ultimo accesso"; -$a->strings["Expires"] = "Con scadenza"; -$a->strings["Service Class"] = "Classe dell'account"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"; -$a->strings["%s channel censored/uncensored"] = array( - 0 => "Censura modificata per %s canale", - 1 => "Censura modificata per %s canali", -); -$a->strings["%s channel deleted"] = array( - 0 => "%s canale è stato rimosso", - 1 => "%s canali sono stati rimossi", -); -$a->strings["Channel not found"] = "Canale non trovato"; -$a->strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; -$a->strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; -$a->strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; -$a->strings["Censor"] = "Applica una censura"; -$a->strings["Uncensor"] = "Rimuovi la censura"; -$a->strings["UID"] = "UID"; -$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -$a->strings["Plugin %s disabled."] = "Plugin %s non attivo."; -$a->strings["Plugin %s enabled."] = "Plugin %s attivo."; -$a->strings["Disable"] = "Disattiva"; -$a->strings["Enable"] = "Attiva"; -$a->strings["Toggle"] = "Attiva/disattiva"; -$a->strings["Author: "] = "Autore:"; -$a->strings["Maintainer: "] = "Gestore:"; -$a->strings["No themes found."] = "Nessun tema trovato."; -$a->strings["Screenshot"] = "Istantanea dello schermo"; -$a->strings["[Experimental]"] = "[Sperimentale]"; -$a->strings["[Unsupported]"] = "[Non supportato]"; -$a->strings["Log settings updated."] = "Impostazioni di log aggiornate."; -$a->strings["Clear"] = "Pulisci"; -$a->strings["Debugging"] = "Debugging"; -$a->strings["Log file"] = "File di log"; -$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato Hubzilla."; -$a->strings["Log level"] = "Livello di log"; -$a->strings["New Profile Field"] = "Nuovo campo del profilo"; -$a->strings["Field nickname"] = "Nome breve del campo"; -$a->strings["System name of field"] = "Nome di sistema del campo"; -$a->strings["Input type"] = "Tipo di dati"; -$a->strings["Field Name"] = "Nome del campo"; -$a->strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo"; -$a->strings["Help text"] = "Testo di aiuto"; -$a->strings["Additional info (optional)"] = "Informazioni aggiuntive (opzionali)"; -$a->strings["Field definition not found"] = "Impossibile trovare la definizione del campo"; -$a->strings["Edit Profile Field"] = "Modifica campo del profilo"; -$a->strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; -$a->strings["Post successful."] = "Inviato!"; -$a->strings["Edit Block"] = "Modifica il riquadro"; -$a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?"; -$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; -$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; -$a->strings["Passwords do not match."] = "Le password non corrispondono."; -$a->strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; -$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito."; -$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; -$a->strings["Registration on this site/hub is by approval only."] = "La registrazione su questo sito è soggetta ad approvazione."; -$a->strings["Register at another affiliated site/hub"] = "Registrati su un altro server affiliato"; -$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["Terms of Service"] = "Condizioni d'Uso"; -$a->strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; -$a->strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; -$a->strings["Membership on this site is by invitation only."] = "Per registrarsi su questo sito è necessario un invito."; -$a->strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; -$a->strings["Your email address"] = "Il tuo indirizzo email"; -$a->strings["Choose a password"] = "Scegli una password"; -$a->strings["Please re-enter your password"] = "Ripeti la password per verifica"; -$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password."; -$a->strings["Remove This Account"] = "Elimina questo account"; -$a->strings["WARNING: "] = "ATTENZIONE:"; -$a->strings["This account and all its channels will be completely removed from the network. "] = "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete."; -$a->strings["This action is permanent and can not be undone!"] = "Questo comando è definitivo e non può essere annullato!"; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati."; -$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "A meno che tu non lo richieda espressamente, solo i canali presenti su questo server saranno rimossi dalla rete."; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "L'articolo vuoto è stato ignorato."; -$a->strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; -$a->strings["System error. Post not saved."] = "Errore di sistema. Articolo non salvato."; -$a->strings["Unable to obtain post information from database."] = "Impossibile caricare l'articolo dal database."; -$a->strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale."; -$a->strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; -$a->strings["Block Name"] = "Nome del riquadro"; -$a->strings["First Name"] = "Nome"; -$a->strings["Last Name"] = "Cognome"; -$a->strings["Nickname"] = "Nick"; -$a->strings["Full Name"] = "Nome e cognome"; -$a->strings["Profile Photo 16px"] = "Foto del profilo 16px"; -$a->strings["Profile Photo 32px"] = "Foto del profilo 32px"; -$a->strings["Profile Photo 48px"] = "Foto del profilo 48px"; -$a->strings["Profile Photo 64px"] = "Foto del profilo 64px"; -$a->strings["Profile Photo 80px"] = "Foto del profilo 80px"; -$a->strings["Profile Photo 128px"] = "Foto del profilo 128px"; -$a->strings["Timezone"] = "Fuso orario"; -$a->strings["Homepage URL"] = "Indirizzo home page"; -$a->strings["Birth Year"] = "Anno di nascita"; -$a->strings["Birth Month"] = "Mese di nascita"; -$a->strings["Birth Day"] = "Giorno di nascita"; -$a->strings["Birthdate"] = "Data di nascita"; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["Help with this feature"] = "La guida per questa funzionalità"; -$a->strings["Layout Name"] = "Nome layout"; -$a->strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; -$a->strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; -$a->strings["Total votes"] = "Voti totali"; -$a->strings["Average Rating"] = "Valutazione media"; -$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password."; -$a->strings["Remove This Channel"] = "Elimina questo canale"; -$a->strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete."; -$a->strings["Remove this channel and all its clones from the network"] = "Rimuovi questo canale e tutti i suoi cloni dalla rete"; -$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; -$a->strings["is now connected to"] = "ha come nuovo contatto"; -$a->strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; -$a->strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; -$a->strings["Channel has been unblocked"] = "Il canale è stato sbloccato"; -$a->strings["Channel has been blocked"] = "Il canale è stato bloccato"; -$a->strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; -$a->strings["Channel has been unignored"] = "Il canale non sarà più ignorato"; -$a->strings["Channel has been ignored"] = "Il canale sarà ignorato"; -$a->strings["Channel has been unarchived"] = "Il canale non è più archiviato"; -$a->strings["Channel has been archived"] = "Il canale è stato archiviato"; -$a->strings["Channel has been unhidden"] = "Il canale non è più nascosto"; -$a->strings["Channel has been hidden"] = "Il canale è stato nascosto"; -$a->strings["Channel has been approved"] = "Il canale è stato approvato"; -$a->strings["Channel has been unapproved"] = "Il canale non è più approvato"; -$a->strings["Connection has been removed."] = "Il contatto è stato rimosso."; -$a->strings["View %s's profile"] = "Guarda il profilo di %s"; -$a->strings["Refresh Permissions"] = "Modifica i permessi"; -$a->strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati"; -$a->strings["Recent Activity"] = "Attività recenti"; -$a->strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; -$a->strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; -$a->strings["Unignore"] = "Non ignorare"; -$a->strings["Ignore"] = "Ignora"; -$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; -$a->strings["Unarchive"] = "Non archiviare"; -$a->strings["Archive"] = "Archivia"; -$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; -$a->strings["Unhide"] = "Non nascondere"; -$a->strings["Hide"] = "Nascondi"; -$a->strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"; -$a->strings["Delete this connection"] = "Elimina questo contatto"; -$a->strings["Approve this connection"] = "Approva questo contatto"; -$a->strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; -$a->strings["Connections: settings for %s"] = "Contatti: impostazioni per %s"; -$a->strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi"; -$a->strings["Apply the permissions indicated on this page to all new connections."] = "Applica i permessi indicati su questa pagina a tutti i nuovi contatti."; -$a->strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; -$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "I tuoi nuovi contatti potrebbero non essere abilitati a comunicare con te finché non salverai questa pagina (perché non hai permessi impostati). Sono stati selezionati i permessi standard per il tipo di canale che hai scelto. Non sono stati ancora salvati però. Puoi verificare le impostazioni e fare i cambiamenti che preferisci prima di salvare. "; -$a->strings["inherited"] = "derivato"; -$a->strings["Connection has no individual permissions!"] = "Non hai assegnato permessi individuali a questo contatto!"; -$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Questo corrisponde alle tue impostazioni di privacy, ma puoi anche dare un'occhiata ai 'Permessi avanzati' per opzioni più dettagliate."; -$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 e annotazioni sul contatto"; -$a->strings["Edit contact notes"] = "Modifica le informazioni sul contatto"; -$a->strings["Their Settings"] = "Permessi concessi a te"; -$a->strings["My Settings"] = "I permessi che concedo"; -$a->strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "A questo canale sono stati applicati i permessi predefiniti ma non sono stati salvati. In realtà non esistono ancora dei permessi predefiniti da usare su questo sito. Controlla e verifica le impostazioni, [Salva] per confermare."; -$a->strings["Clear/Disable Automatic Permissions"] = "Rimuovi/disabilita i permessi automatici"; -$a->strings["Forum Members"] = "Membro di un forum"; -$a->strings["Soapbox"] = "Comunicati e annunci"; -$a->strings["Full Sharing (typical social network permissions)"] = "Condivisione completa (permessi tipici dei social network)"; -$a->strings["Cautious Sharing "] = "Condivisione prudente"; -$a->strings["Follow Only"] = "Follower"; -$a->strings["Individual Permissions"] = "Permessi individuali"; -$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "I permessi nelle impostazioni di privacy hanno priorità su quelli mostrati in questa pagina. Non avrà alcun effetto cambiarli qui, se sono indicati come derivati."; -$a->strings["Advanced Permissions"] = "Permessi avanzati"; -$a->strings["Simple Permissions (select one and submit)"] = "Permessi semplificati (seleziona e salva)"; -$a->strings["Visit %s's profile - %s"] = "Guarda 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"] = "Ripara le impostazioni URL"; -$a->strings["View conversations"] = "Leggi le conversazioni"; -$a->strings["Delete contact"] = "Elimina contatto"; -$a->strings["Last update:"] = "Ultimo aggiornamento:"; -$a->strings["Update public posts"] = "Aggiorna gli articoli pubblici"; -$a->strings["Update now"] = "Aggiorna adesso"; -$a->strings["Currently blocked"] = "Attualmente bloccato"; -$a->strings["Currently ignored"] = "Attualmente ignorato"; -$a->strings["Currently archived"] = "Attualmente archiviato"; -$a->strings["Currently pending"] = "Attualmente da approvare"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."; -$a->strings["The error message was:"] = "Messaggio di errore ricevuto:"; -$a->strings["Authentication failed."] = "Autenticazione fallita."; -$a->strings["Remote Authentication"] = "Autenticazione a distanza"; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; -$a->strings["Authenticate"] = "Autenticazione"; -$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; -$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; -$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Message recalled."] = "Messaggio revocato."; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Send"] = "Invia"; -$a->strings["Message not found."] = "Messaggio non trovato."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["Recall message"] = "Revoca il messaggio"; -$a->strings["Message has been recalled."] = "Il messaggio è stato revocato."; -$a->strings["Private Conversation"] = "Conversazione privata"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcuna tecnologia per comunicare in modo sicuro. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -$a->strings["Discard"] = "Rifiuta"; -$a->strings["Please login."] = "Effettua l'accesso."; -$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione magica dal tuo sito non è disponibile. Hai accesso solamente a questo sito. Puoi provare a disconnetterti per tentare di nuovo."; -$a->strings["Add a Channel"] = "Aggiungi un canale"; -$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "I contenuti che pubblichi sono mostrati nel tuo \"canale\". Un canale può essere usato come bacheca personale, come blog, oppure può essere un forum di discussione, un gruppo di interesse, una pagina di celebrità e molto altro. Puoi creare tanti canali quanti ne permette il tuo sito."; -$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; -$a->strings["Choose a short nickname"] = "Scegli un nome breve"; -$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti."; -$a->strings["Or import an existing channel from another location"] = "Oppure importa un tuo canale esistente da un altro server/hub"; -$a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa più usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. Hubzilla sceglierà per te i permessi più adatti."; -$a->strings["Channel Type"] = "Tipo di canale"; -$a->strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; -$a->strings["App installed."] = "App installata"; -$a->strings["Malformed app."] = "App non corretta"; -$a->strings["Embed code"] = "Inserisci del codice"; -$a->strings["Edit App"] = "Modifica app"; -$a->strings["Create App"] = "Crea una app"; -$a->strings["Name of app"] = "Nome app"; -$a->strings["Location (URL) of app"] = "Indirizzo (URL) della app"; -$a->strings["Photo icon URL"] = "URL icona"; -$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; -$a->strings["Version ID"] = "ID versione"; -$a->strings["Price of app"] = "Prezzo app"; -$a->strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; -$a->strings["sent you a private message"] = "ti ha inviato un messaggio privato"; -$a->strings["added your channel"] = "ha aggiunto il tuo canale"; -$a->strings["posted an event"] = "ha creato un evento"; -$a->strings["No such group"] = "Impossibile trovare l'insieme"; -$a->strings["No such channel"] = "Canale sconosciuto"; -$a->strings["Search Results For:"] = "Cerca risultati con:"; -$a->strings["Collection is empty"] = "L'insieme di canali è vuoto"; -$a->strings["Collection: "] = "Insieme:"; -$a->strings["Connection: "] = "Contatto:"; -$a->strings["Invalid connection."] = "Contatto non valido."; -$a->strings["Ipsum Lorem"] = "Ipsum Lorem"; -$a->strings["Bookmark added"] = "Segnalibro aggiunto"; -$a->strings["My Bookmarks"] = "I miei segnalibri"; -$a->strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; -$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore."; -$a->strings["Poll"] = "Sondaggio"; -$a->strings["View Results"] = "Guarda i risultati"; -$a->strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; -$a->strings["Files: shared with me"] = "File: condivisi con me"; -$a->strings["NEW"] = "NOVITÀ"; -$a->strings["Remove all files"] = "Elimina tutti i file"; -$a->strings["Remove this file"] = "Elimina questo file"; -$a->strings["Schema Default"] = "Schema predefinito"; -$a->strings["Sans-Serif"] = "Sans-serif"; -$a->strings["Monospace"] = "Monospace"; +$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica la 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["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; +$a->strings["Save Bookmark"] = "Salva segnalibro"; +$a->strings["URL of bookmark"] = "URL del segnalibro"; +$a->strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; +$a->strings["Import completed"] = "Importazione completata"; +$a->strings["Import Items"] = "Importa i contenuti"; +$a->strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; +$a->strings["Focus (Hubzilla default)"] = "Focus (predefinito)"; $a->strings["Theme settings"] = "Impostazioni del tema"; -$a->strings["Set scheme"] = "Schema"; -$a->strings["Set font-size for posts and comments"] = "Dimensioni del carattere per articoli e commenti"; -$a->strings["Set font face"] = "Tipo di carattere"; -$a->strings["Set iconset"] = "Icone"; -$a->strings["Set big shadow size, default 15px 15px 15px"] = "Ombra grande, predefinita 15px 15px 15px"; -$a->strings["Set small shadow size, default 5px 5px 5px"] = "Ombra piccola, predefinita 5px 5px 5px"; -$a->strings["Set shadow color, default #000"] = "Colore dell'ombra, predefinito #000"; -$a->strings["Set radius size, default 5px"] = "Raggio degli angoli, predefinito 5px"; -$a->strings["Set line-height for posts and comments"] = "Altezza della riga per articoli e commenti"; -$a->strings["Set background image"] = "Immagine di sfondo"; -$a->strings["Set background attachment"] = "Allega uno sfondo"; -$a->strings["Set background color"] = "Colore di sfondo"; -$a->strings["Set section background image"] = "Immagine di sfondo della sezione"; -$a->strings["Set section background color"] = "Colore di sfondo dell'area principale"; -$a->strings["Set color of items - use hex"] = "Colore degli elementi della pagina - esadecimale"; -$a->strings["Set color of links - use hex"] = "Colore dei link - esadecimale"; -$a->strings["Set max-width for items. Default 400px"] = "Larghezza massima degli elementi della pagina. Predefinita: 400px"; -$a->strings["Set min-width for items. Default 240px"] = "Larghezza minima degli elementi della pagina. Predefinita: 240px"; -$a->strings["Set the generic content wrapper width. Default 48%"] = "Larghezza di tutta l'area dei contenuti. Predefinita: 48%"; -$a->strings["Set color of fonts - use hex"] = "Colore dei caratteri - esadecimale"; -$a->strings["Set background-size element"] = "Background-size element"; -$a->strings["Item opacity"] = "Opacità degli elementi della pagina"; -$a->strings["Display post previews only"] = "Mostra le anteprime solo degli articoli"; -$a->strings["Display side bar on channel page"] = "Mostra la colonna laterale sulla pagina del canale"; -$a->strings["Colour of the navigation bar"] = "Colore della barra di navigazione"; -$a->strings["Item float"] = "Float degli oggetti della pagina"; -$a->strings["Left offset of the section element"] = "Margine sinistro dell'area principale"; -$a->strings["Right offset of the section element"] = "Margine destro dell'area principale"; -$a->strings["Section width"] = "Larghezza dell'area principale"; -$a->strings["Left offset of the aside"] = "Margine sinistro della colonna laterale"; -$a->strings["Right offset of the aside element"] = "Margine destro della colonna laterale"; -$a->strings["Light (Hubzilla default)"] = "Light (predefinito)"; $a->strings["Select scheme"] = "Scegli uno schema"; $a->strings["Narrow navbar"] = "Barra di navigazione ristretta"; $a->strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo"; @@ -2085,23 +2136,24 @@ $a->strings["Navigation bar icon color "] = "Barra di navigazione: Colore delle $a->strings["Navigation bar active icon color "] = "Barra di navigazione: Colore dell'icona attiva"; $a->strings["link color"] = "colore del link"; $a->strings["Set font-color for banner"] = "Colore del font del banner"; -$a->strings["Set the background color"] = "Imposta il colore di sfondo"; +$a->strings["Set the background color"] = "Colore di sfondo"; $a->strings["Set the background image"] = "Immagine di sfondo"; -$a->strings["Set the background color of items"] = "Imposta il colore di sfondo degli oggetti"; -$a->strings["Set the background color of comments"] = "Imposta il colore di sfondo dei commenti"; -$a->strings["Set the border color of comments"] = "Imposta il colore del bordo dei commenti"; -$a->strings["Set the indent for comments"] = "Imposta il lo spostamento a destra dei commenti"; +$a->strings["Set the background color of items"] = "Colore di sfondo degli oggetti"; +$a->strings["Set the background color of comments"] = "Colore di sfondo dei commenti"; +$a->strings["Set the border color of comments"] = "Colore del bordo dei commenti"; +$a->strings["Set the indent for comments"] = "Spostamento a destra dei commenti"; $a->strings["Set the basic color for item icons"] = "Colore di base per le icone"; $a->strings["Set the hover color for item icons"] = "Colore per le icone in mouse-over"; $a->strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito"; $a->strings["Example: 14px"] = "Esempio: 14px"; -$a->strings["Set font-color for posts and comments"] = "Imposta il colore del carattere per articoli e commenti"; +$a->strings["Set font-size for posts and comments"] = "Dimensioni del carattere per post e commenti"; +$a->strings["Set font-color for posts and comments"] = "Colore del carattere per post e commenti"; $a->strings["Set radius of corners"] = "Raggio degli angoli stondati"; $a->strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto"; $a->strings["Set maximum width of content region in pixel"] = "Larghezza massima dell'area dei contenuti in pixel"; $a->strings["Leave empty for default width"] = "Lascia vuoto per usare il valore predefinito"; -$a->strings["Center page content"] = "Centra il contenuto della pagina"; -$a->strings["Set minimum opacity of nav bar - to hide it"] = "Imposta l'opacità minima della barra di navigazione per nasconderla"; +$a->strings["Left align page content"] = "Allinea a sinistra il contenuto della pagina"; +$a->strings["Set minimum opacity of nav bar - to hide it"] = "Opacità minima della barra di navigazione - per nasconderla"; $a->strings["Set size of conversation author photo"] = "Dimensione foto dell'autore della conversazione"; $a->strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione"; $a->strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore."; @@ -2112,7 +2164,6 @@ $a->strings["Remember me"] = "Resta connesso"; $a->strings["Forgot your password?"] = "Hai dimenticato la password?"; $a->strings["toggle mobile"] = "attiva/disattiva versione mobile"; $a->strings["Website SSL certificate is not valid. Please correct."] = "Il certificato SSL del sito non è valido. Si prega di intervenire."; -$a->strings["[red] Website SSL error for %s"] = "[red] Errore SSL %s "; -$a->strings["Cron/Scheduled tasks not running."] = "Processi/cron non avviati."; -$a->strings["[red] Cron tasks not running on %s"] = "[red] Processi non avviati su %s"; -$a->strings["Source of Item"] = "Sorgente dell'Elemento"; +$a->strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Errore SSL su %s"; +$a->strings["Cron/Scheduled tasks not running."] = "Processi cron non avviati."; +$a->strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron non è stato eseguito %s"; diff --git a/view/tpl/locmanage.tpl b/view/tpl/locmanage.tpl index e0232547f..4ace457ed 100644 --- a/view/tpl/locmanage.tpl +++ b/view/tpl/locmanage.tpl @@ -12,15 +12,15 @@ function drophub(id) { {{foreach $hubs as $hub}} +{{if ! $hub.deleted }} +{{$hub.hubloc_url}} ({{$hub.hubloc_addr}}) - + +{{/if}} {{/foreach}}
{{$loc}}{{$mkprm}}{{$drop}}
-{{if $hub.deleted}}{{/if}} -{{$hub.hubloc_url}} ({{$hub.hubloc_addr}}){{if $hub.deleted}}{{/if}} - {{if $hub.primary}}{{else}}{{/if}} {{if ! $hub.deleted}}{{/if}}
diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl index 2e64de7bc..09333ae11 100755 --- a/view/tpl/mail_conv.tpl +++ b/view/tpl/mail_conv.tpl @@ -9,6 +9,7 @@
{{$mail.body}}
{{if $mail.can_recall}} + {{/if}} diff --git a/view/tpl/opensearch.tpl b/view/tpl/opensearch.tpl index 8885c12bc..f247e3401 100755 --- a/view/tpl/opensearch.tpl +++ b/view/tpl/opensearch.tpl @@ -1,10 +1,10 @@ Hubzilla@{{$nodename}} - Search in The Hubzilla@{{$nodename}} - http://github.com/friendica/red/ - {{$baseurl}}/images/rm-16.png - {{$baseurl}}/images/rm-64.png + Search in Hubzilla@{{$nodename}} + http://github.com/redmatrix/hubzilla/ + {{$baseurl}}/images/hz-16.png + {{$baseurl}}/images/hz-64.png