aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/attach.php5
-rw-r--r--include/reddav.php9
-rw-r--r--include/security.php3
-rw-r--r--mod/attach.php10
-rw-r--r--mod/item.php11
-rw-r--r--version.inc2
-rw-r--r--view/de/messages.po3846
-rw-r--r--view/de/strings.php781
-rw-r--r--view/it/messages.po1610
-rw-r--r--view/it/strings.php211
10 files changed, 3365 insertions, 3123 deletions
diff --git a/include/attach.php b/include/attach.php
index d339ce6f9..dbc489a2d 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -329,6 +329,7 @@ function attach_store($channel,$observer_hash,$options = '',$arr = null) {
}
$limit = service_class_fetch($channel_id,'attach_upload_limit');
+
if($limit !== false) {
$r = q("select sum(filesize) as total from attach where aid = %d ",
intval($channel['channel_account_id'])
@@ -623,7 +624,7 @@ function attach_mkdir($channel,$observer_hash,$arr = null) {
);
if($r) {
- if(mkdir($path,STORAGE_DEFAULT_PERMISSIONS)) {
+ if(mkdir($path,STORAGE_DEFAULT_PERMISSIONS,true)) {
$ret['success'] = true;
$ret['data'] = $arr;
}
@@ -735,7 +736,7 @@ function attach_delete($channel_id,$resource) {
function get_cloudpath($arr) {
- $basepath = 'store/';
+ $basepath = 'cloud/';
if($arr['uid']) {
$r = q("select channel_address from channel where channel_id = %d limit 1",
intval($arr['uid'])
diff --git a/include/reddav.php b/include/reddav.php
index a6c550e2d..d00980011 100644
--- a/include/reddav.php
+++ b/include/reddav.php
@@ -163,6 +163,7 @@ class RedDirectory extends DAV\Node implements DAV\ICollection {
intval($c[0]['channel_account_id'])
);
if(($x) && ($x[0]['total'] + $size > $limit)) {
+ logger('reddav: service class limit exceeded for ' . $c[0]['channel_name'] . ' total usage is ' . $x[0]['total'] . ' limit is ' . $limit);
attach_delete($c[0]['channel_id'],$hash);
return;
}
@@ -321,13 +322,18 @@ class RedFile extends DAV\Node implements DAV\IFile {
function put($data) {
logger('RedFile::put: ' . basename($this->name), LOGGER_DEBUG);
+
+ $c = q("select * from channel where channel_id = %d limit 1",
+ intval($this->auth->owner_id)
+ );
+
$r = q("select flags, data from attach where hash = '%s' and uid = %d limit 1",
dbesc($this->data['hash']),
intval($c[0]['channel_id'])
);
if($r) {
if($r[0]['flags'] & ATTACH_FLAG_OS) {
- $f = 'store/' . $this->auth->owner_nick . '/' . (($r[0]['data']) ? $r[0]['data'] . '/' : '');
+ $f = 'store/' . $this->auth->owner_nick . '/' . (($r[0]['data']) ? $r[0]['data'] : '');
@file_put_contents($f, $data);
$size = @filesize($f);
logger('reddav: put() filename: ' . $f . ' size: ' . $size, LOGGER_DEBUG);
@@ -367,6 +373,7 @@ class RedFile extends DAV\Node implements DAV\IFile {
intval($c[0]['channel_account_id'])
);
if(($x) && ($x[0]['total'] + $size > $limit)) {
+ logger('reddav: service class limit exceeded for ' . $c[0]['channel_name'] . ' total usage is ' . $x[0]['total'] . ' limit is ' . $limit);
attach_delete($c[0]['channel_id'],$this->data['hash']);
return;
}
diff --git a/include/security.php b/include/security.php
index 138efe3ab..a87442d42 100644
--- a/include/security.php
+++ b/include/security.php
@@ -163,6 +163,9 @@ function change_channel($change_channel) {
get_app()->set_observer($x[0]);
get_app()->set_perms(get_all_perms(local_user(),$hash));
}
+ if(! is_dir('store/' . $r[0]['channel_address']))
+ @mkdir('store/' . $r[0]['channel_address'], STORAGE_DEFAULT_PERMISSIONS,true);
+
}
return $ret;
diff --git a/mod/attach.php b/mod/attach.php
index 7371f0367..c52966ce0 100644
--- a/mod/attach.php
+++ b/mod/attach.php
@@ -27,10 +27,12 @@ function attach_init(&$a) {
header('Content-type: ' . $r['data']['filetype']);
header('Content-disposition: attachment; filename=' . $r['data']['filename']);
if($r['data']['flags'] & ATTACH_FLAG_OS ) {
- $stream = fopen('store/' . $c[0]['channel_address'] . '/' . $r['data']['data'],'rb');
- if($stream) {
- pipe_stream($stream,STDOUT);
- fclose($stream);
+ $istream = fopen('store/' . $c[0]['channel_address'] . '/' . $r['data']['data'],'rb');
+ $ostream = fopen('php://output','wb');
+ if($istream && $ostream) {
+ pipe_streams($istream,$ostream);
+ fclose($istream);
+ fclose($ostream);
}
}
else
diff --git a/mod/item.php b/mod/item.php
index 915bed706..23fce2fd7 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -276,6 +276,9 @@ function item_post(&$a) {
$item_restrict = $orig_post['item_restrict'];
$postopts = $orig_post['postopts'];
$created = $orig_post['created'];
+ $mid = $orig_post['mid'];
+ $parent_mid = $orig_post['parent_mid'];
+ $plink = $orig_post['plink'];
}
else {
@@ -592,9 +595,13 @@ function item_post(&$a) {
$notify_type = (($parent) ? 'comment-new' : 'wall-new' );
- $mid = (($message_id) ? $message_id : item_message_id());
+ if(! $mid) {
+ $mid = (($message_id) ? $message_id : item_message_id());
+ }
+ if(! $parent_mid) {
+ $parent_mid = $mid;
+ }
- $parent_mid = $mid;
if($parent_item)
$parent_mid = $parent_item['mid'];
diff --git a/version.inc b/version.inc
index bc73672b3..6f37c44ab 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2014-01-10.553
+2014-01-11.554
diff --git a/view/de/messages.po b/view/de/messages.po
index 3d726adbb..c1d036c13 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -13,14 +13,14 @@
# Fraengii <frank@lumina-verte.org>, 2013
# Fraengii <frank@lumina-verte.org>, 2013
# Oliver <post@toktan.org>, 2013
-# bavatar <tobias.diekershoff@gmx.net>, 2013
+# bavatar <tobias.diekershoff@gmx.net>, 2013-2014
# zottel <transifex@zottel.net>, 2013
msgid ""
msgstr ""
"Project-Id-Version: Red Matrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-20 00:02-0800\n"
-"PO-Revision-Date: 2013-12-23 10:43+0000\n"
+"POT-Creation-Date: 2014-01-10 00:02-0800\n"
+"PO-Revision-Date: 2014-01-13 06:23+0000\n"
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
"Language-Team: German (http://www.transifex.com/projects/p/red-matrix/language/de/)\n"
"MIME-Version: 1.0\n"
@@ -41,457 +41,279 @@ msgstr "zeigen"
msgid "don't show"
msgstr "Verbergen"
-#: ../../include/activities.php:37
+#: ../../include/activities.php:39
msgid " and "
msgstr "und"
-#: ../../include/activities.php:45
+#: ../../include/activities.php:47
msgid "public profile"
msgstr "öffentliches Profil"
-#: ../../include/activities.php:50
+#: ../../include/activities.php:52
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s hat %2$s auf &ldquo;%3$s&rdquo; geändert"
-#: ../../include/activities.php:51
+#: ../../include/activities.php:53
#, php-format
msgid "Visit %1$s's %2$s"
msgstr "Besuche %1$s's %2$s"
-#: ../../include/activities.php:54
+#: ../../include/activities.php:56
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert."
-#: ../../include/dir_fns.php:15
-msgid "Sort Options"
-msgstr "Sortieroptionen"
-
-#: ../../include/dir_fns.php:16
-msgid "Alphabetic"
-msgstr "alphabetisch"
-
-#: ../../include/dir_fns.php:17
-msgid "Reverse Alphabetic"
-msgstr "Entgegengesetzt alphabetisch"
-
-#: ../../include/dir_fns.php:18
-msgid "Newest to Oldest"
-msgstr "Neueste zuerst"
-
-#: ../../include/dir_fns.php:30
-msgid "Enable Safe Search"
-msgstr "Sichere Suche einschalten"
-
-#: ../../include/dir_fns.php:32
-msgid "Disable Safe Search"
-msgstr "Sichere Suche ausschalten"
-
-#: ../../include/dir_fns.php:34
-msgid "Safe Mode"
-msgstr "Sicherer Modus"
-
#: ../../include/api.php:973
msgid "Public Timeline"
msgstr "Öffentliche Zeitleiste"
-#: ../../include/enotify.php:40
-msgid "Red Matrix Notification"
-msgstr "Red Matrix Benachrichtigung"
-
-#: ../../include/enotify.php:41
-msgid "redmatrix"
-msgstr "redmatrix"
-
-#: ../../include/enotify.php:43
-msgid "Thank You,"
-msgstr "Danke."
-
-#: ../../include/enotify.php:45
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrator"
-
-#: ../../include/enotify.php:80
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
-
-#: ../../include/enotify.php:84
-#, php-format
-msgid "[Red:Notify] New mail received at %s"
-msgstr "[Red Notify] Neue Mail auf %s empfangen"
-
-#: ../../include/enotify.php:86
-#, 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:87
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s hat dir %2$s geschickt."
-
-#: ../../include/enotify.php:87
-msgid "a private message"
-msgstr "eine private Nachricht"
-
-#: ../../include/enotify.php:88
-#, 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:139
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
-msgstr "%1$s, %2$s hat [zrl=%3$s]a %4$s[/zrl] kommentiert"
-
-#: ../../include/enotify.php:147
-#, 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:156
-#, 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:167
-#, php-format
-msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Red:Notify] Kommentar in Unterhaltung #%1$d von %2$s"
-
-#: ../../include/enotify.php:168
-#, php-format
-msgid "%1$s, %2$s commented on an item/conversation you have been following."
-msgstr "%1$s, %2$s hat ein Thema kommentiert, dem du folgst."
-
-#: ../../include/enotify.php:171 ../../include/enotify.php:187
-#: ../../include/enotify.php:213 ../../include/enotify.php:232
-#: ../../include/enotify.php:246
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
-
-#: ../../include/enotify.php:178
-#, php-format
-msgid "[Red:Notify] %s posted to your profile wall"
-msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand"
-
-#: ../../include/enotify.php:180
-#, 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:182
-#, 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:206
-#, php-format
-msgid "[Red:Notify] %s tagged you"
-msgstr "[Red Notify] %s hat dich getaggt"
-
-#: ../../include/enotify.php:207
-#, php-format
-msgid "%1$s, %2$s tagged you at %3$s"
-msgstr "%1$s, %2$s hat dich auf %3$s getaggt"
+#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1415
+msgid "Logout"
+msgstr "Abmelden"
-#: ../../include/enotify.php:208
-#, 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/nav.php:72 ../../include/nav.php:87
+msgid "End this session"
+msgstr "Beende diese Sitzung"
-#: ../../include/enotify.php:221
-#, php-format
-msgid "[Red:Notify] %1$s poked you"
-msgstr "[Red Notify] %1$s hat dich angestupst"
+#: ../../include/nav.php:75 ../../include/nav.php:121
+msgid "Home"
+msgstr "Home"
-#: ../../include/enotify.php:222
-#, php-format
-msgid "%1$s, %2$s poked you at %3$s"
-msgstr "%1$s, %2$s hat dich auf %3$s angestubst"
+#: ../../include/nav.php:75
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
-#: ../../include/enotify.php:223
-#, 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/nav.php:76 ../../include/conversation.php:932
+#: ../../mod/connedit.php:309 ../../mod/connedit.php:423
+msgid "View Profile"
+msgstr "Profil ansehen"
-#: ../../include/enotify.php:239
-#, php-format
-msgid "[Red:Notify] %s tagged your post"
-msgstr "[Red:Hinweis] %s hat Dich getagged"
+#: ../../include/nav.php:76
+msgid "Your profile page"
+msgstr "Deine Profilseite"
-#: ../../include/enotify.php:240
-#, php-format
-msgid "%1$s, %2$s tagged your post at %3$s"
-msgstr "%1$s, %2$s hat deinen Beitrag auf %3$s getaggt"
+#: ../../include/nav.php:78
+msgid "Edit Profiles"
+msgstr "Profile bearbeiten"
-#: ../../include/enotify.php:241
-#, 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] getaggt"
+#: ../../include/nav.php:78
+msgid "Manage/Edit Profiles"
+msgstr "Verwalte/Bearbeite Profile"
-#: ../../include/enotify.php:253
-msgid "[Red:Notify] Introduction received"
-msgstr "[Red:Notify] Vorstellung erhalten"
+#: ../../include/nav.php:79 ../../include/conversation.php:1462
+#: ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Fotos"
-#: ../../include/enotify.php:254
-#, php-format
-msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
-msgstr "%1$s, du hast eine Vorstellung von „%2$s“ auf %3$s erhalten"
+#: ../../include/nav.php:79
+msgid "Your photos"
+msgstr "Deine Bilder"
-#: ../../include/enotify.php:255
-#, php-format
-msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
-msgstr "%1$s, du hast [zrl=%2$s]eine Vorstellung[/zrl] von %3$s erhalten."
+#: ../../include/nav.php:85 ../../boot.php:1416
+msgid "Login"
+msgstr "Anmelden"
-#: ../../include/enotify.php:259 ../../include/enotify.php:278
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Du kannst Dir das Profil unter %s ansehen"
+#: ../../include/nav.php:85
+msgid "Sign in"
+msgstr "Anmelden"
-#: ../../include/enotify.php:261
+#: ../../include/nav.php:102
#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s um sie anzunehmen oder abzulehnen."
+msgid "%s - click to logout"
+msgstr "%s - Klick zum Abmelden"
-#: ../../include/enotify.php:268
-msgid "[Red:Notify] Friend suggestion received"
-msgstr "[Red:Hinweis] Freundschaftsvorschlag erhalten"
+#: ../../include/nav.php:107
+msgid "Click to authenticate to your home hub"
+msgstr "Klick zum Authentifizieren bei Deinem Heimat-Hub"
-#: ../../include/enotify.php:269
-#, php-format
-msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
-msgstr "%1$s, du hast einen Freundschaftsvorschlag von „%2$s“ auf %3$s erhalten"
+#: ../../include/nav.php:121
+msgid "Home Page"
+msgstr "Homepage"
-#: ../../include/enotify.php:270
-#, 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 Freundschaftvorschlag[/zrl] für %3$s von %4$s erhalten."
+#: ../../include/nav.php:125 ../../mod/register.php:206 ../../boot.php:1392
+msgid "Register"
+msgstr "Registrieren"
-#: ../../include/enotify.php:276
-msgid "Name:"
-msgstr "Name:"
+#: ../../include/nav.php:125
+msgid "Create an account"
+msgstr "Erzeuge ein Konto"
-#: ../../include/enotify.php:277
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../include/nav.php:130 ../../mod/help.php:60 ../../mod/help.php:64
+msgid "Help"
+msgstr "Hilfe"
-#: ../../include/enotify.php:280
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."
+#: ../../include/nav.php:130
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
-#: ../../include/ItemObject.php:88 ../../mod/photos.php:959
-msgid "Private Message"
-msgstr "Private Nachricht"
+#: ../../include/nav.php:133
+msgid "Apps"
+msgstr "Apps"
-#: ../../include/ItemObject.php:95 ../../include/page_widgets.php:8
-#: ../../mod/webpages.php:118 ../../mod/menu.php:55 ../../mod/layouts.php:102
-#: ../../mod/settings.php:569 ../../mod/editlayout.php:100
-#: ../../mod/editwebpage.php:143 ../../mod/blocks.php:93
-#: ../../mod/editpost.php:97 ../../mod/editblock.php:114
-msgid "Edit"
-msgstr "Bearbeiten"
+#: ../../include/nav.php:133
+msgid "Addon applications, utilities, games"
+msgstr "Addon Programme, Helferlein, Spiele"
-#: ../../include/ItemObject.php:107 ../../include/conversation.php:632
-#: ../../mod/connedit.php:356 ../../mod/admin.php:693 ../../mod/group.php:176
-#: ../../mod/photos.php:1137 ../../mod/filestorage.php:82
-#: ../../mod/settings.php:570
-msgid "Delete"
-msgstr "Löschen"
+#: ../../include/nav.php:135 ../../include/text.php:736
+#: ../../include/text.php:750 ../../mod/search.php:28
+msgid "Search"
+msgstr "Suche"
-#: ../../include/ItemObject.php:113 ../../include/conversation.php:631
-msgid "Select"
-msgstr "Auswählen"
+#: ../../include/nav.php:135
+msgid "Search site content"
+msgstr "Durchsuche Seiten-Inhalt"
-#: ../../include/ItemObject.php:117
-msgid "save to folder"
-msgstr "In Ordner speichern"
+#: ../../include/nav.php:138 ../../mod/directory.php:209
+msgid "Directory"
+msgstr "Verzeichnis"
-#: ../../include/ItemObject.php:145
-msgid "add star"
-msgstr "markieren"
+#: ../../include/nav.php:138
+msgid "Channel Locator"
+msgstr "Kanal-Anzeiger"
-#: ../../include/ItemObject.php:146
-msgid "remove star"
-msgstr "Markierung entfernen"
+#: ../../include/nav.php:149
+msgid "Matrix"
+msgstr "Matrix"
-#: ../../include/ItemObject.php:147
-msgid "toggle star status"
-msgstr "Stern-Status umschalten"
+#: ../../include/nav.php:149
+msgid "Your matrix"
+msgstr "Deine Matrix"
-#: ../../include/ItemObject.php:151
-msgid "starred"
-msgstr "markiert"
+#: ../../include/nav.php:150
+msgid "Mark all matrix notifications seen"
+msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen"
-#: ../../include/ItemObject.php:160 ../../include/conversation.php:642
-msgid "Message is verified"
-msgstr "Nachricht überprüft"
+#: ../../include/nav.php:152
+msgid "Channel Home"
+msgstr "Mein Kanal"
-#: ../../include/ItemObject.php:168
-msgid "add tag"
-msgstr "Schlagwort hinzufügen"
+#: ../../include/nav.php:152
+msgid "Channel home"
+msgstr "Mein Kanal"
-#: ../../include/ItemObject.php:174 ../../mod/photos.php:1065
-msgid "I like this (toggle)"
-msgstr "Ich mag das (Umschalter)"
+#: ../../include/nav.php:153
+msgid "Mark all channel notifications seen"
+msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen"
-#: ../../include/ItemObject.php:174 ../../include/taxonomy.php:251
-msgid "like"
-msgstr "Gefällt-mir"
+#: ../../include/nav.php:156
+msgid "Intros"
+msgstr "Vorstellungen"
-#: ../../include/ItemObject.php:175 ../../mod/photos.php:1066
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (Umschalter)"
+#: ../../include/nav.php:156 ../../mod/connections.php:242
+msgid "New Connections"
+msgstr "Neue Verbindungen"
-#: ../../include/ItemObject.php:175 ../../include/taxonomy.php:252
-msgid "dislike"
-msgstr "Gefällt-mir-nicht"
+#: ../../include/nav.php:159
+msgid "Notices"
+msgstr "Benachrichtigungen"
-#: ../../include/ItemObject.php:177
-msgid "Share this"
-msgstr "Teile dies"
+#: ../../include/nav.php:159
+msgid "Notifications"
+msgstr "Benachrichtigungen"
-#: ../../include/ItemObject.php:177
-msgid "share"
-msgstr "Teilen"
+#: ../../include/nav.php:160
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen ansehen"
-#: ../../include/ItemObject.php:201 ../../include/ItemObject.php:202
-#, php-format
-msgid "View %s's profile - %s"
-msgstr "Schaue dir %s's Profil an - %s"
+#: ../../include/nav.php:161
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle System-Benachrichtigungen als gesehen"
-#: ../../include/ItemObject.php:203
-msgid "to"
-msgstr "zu"
+#: ../../include/nav.php:163
+msgid "Mail"
+msgstr "Mail"
-#: ../../include/ItemObject.php:204
-msgid "via"
-msgstr "via"
+#: ../../include/nav.php:163
+msgid "Private mail"
+msgstr "Persönliche Mail"
-#: ../../include/ItemObject.php:205
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: ../../include/nav.php:164
+msgid "See all private messages"
+msgstr "Alle persönlichen Nachrichten ansehen"
-#: ../../include/ItemObject.php:206
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: ../../include/nav.php:165
+msgid "Mark all private messages seen"
+msgstr "Markiere alle persönlichen Nachrichten als gesehen"
-#: ../../include/ItemObject.php:216 ../../include/conversation.php:686
-#, php-format
-msgid " from %s"
-msgstr "von %s"
+#: ../../include/nav.php:166
+msgid "Inbox"
+msgstr "Eingang"
-#: ../../include/ItemObject.php:219 ../../include/conversation.php:689
-#, php-format
-msgid "last edited: %s"
-msgstr "zuletzt bearbeitet: %s"
+#: ../../include/nav.php:167
+msgid "Outbox"
+msgstr "Ausgang"
-#: ../../include/ItemObject.php:246 ../../include/conversation.php:706
-#: ../../include/conversation.php:1116 ../../mod/photos.php:1068
-#: ../../mod/message.php:309 ../../mod/message.php:460
-#: ../../mod/editlayout.php:109 ../../mod/editwebpage.php:152
-#: ../../mod/editpost.php:106 ../../mod/editblock.php:123
-msgid "Please wait"
-msgstr "Bitte warten"
+#: ../../include/nav.php:168 ../../include/widgets.php:509
+msgid "New Message"
+msgstr "Neue Nachricht"
-#: ../../include/ItemObject.php:267
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
+#: ../../include/nav.php:171 ../../include/conversation.php:1482
+#: ../../mod/events.php:354
+msgid "Events"
+msgstr "Veranstaltungen"
-#: ../../include/ItemObject.php:268 ../../include/js_strings.php:7
-#: ../../include/contact_widgets.php:125
-msgid "show more"
-msgstr "mehr zeigen"
+#: ../../include/nav.php:171
+msgid "Event Calendar"
+msgstr "Veranstaltungskalender"
-#: ../../include/ItemObject.php:527 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1171
-msgid "This is you"
-msgstr "Das bist du"
+#: ../../include/nav.php:172
+msgid "See all events"
+msgstr "Alle Ereignisse ansehen"
-#: ../../include/ItemObject.php:529 ../../include/js_strings.php:6
-#: ../../mod/photos.php:1086 ../../mod/photos.php:1173
-msgid "Comment"
-msgstr "Kommentar"
+#: ../../include/nav.php:173
+msgid "Mark all events seen"
+msgstr "Markiere alle Ereignisse als gesehen"
-#: ../../include/ItemObject.php:530 ../../mod/events.php:470
-#: ../../mod/thing.php:190 ../../mod/invite.php:154 ../../mod/connedit.php:434
-#: ../../mod/setup.php:302 ../../mod/setup.php:345 ../../mod/connect.php:96
-#: ../../mod/sources.php:97 ../../mod/sources.php:131 ../../mod/admin.php:420
-#: ../../mod/admin.php:686 ../../mod/admin.php:826 ../../mod/admin.php:1025
-#: ../../mod/admin.php:1112 ../../mod/group.php:81 ../../mod/photos.php:681
-#: ../../mod/photos.php:786 ../../mod/photos.php:1047
-#: ../../mod/photos.php:1087 ../../mod/photos.php:1174
-#: ../../mod/message.php:310 ../../mod/message.php:459
-#: ../../mod/profiles.php:518 ../../mod/import.php:387
-#: ../../mod/settings.php:507 ../../mod/settings.php:619
-#: ../../mod/settings.php:647 ../../mod/settings.php:671
-#: ../../mod/settings.php:742 ../../mod/settings.php:903
-#: ../../mod/poke.php:166 ../../mod/fsuggest.php:108 ../../mod/mood.php:137
-#: ../../view/theme/redbasic/php/config.php:85
-#: ../../view/theme/apw/php/config.php:231
-#: ../../view/theme/blogga/view/theme/blog/config.php:67
-#: ../../view/theme/blogga/php/config.php:67
-msgid "Submit"
-msgstr "Bestätigen"
+#: ../../include/nav.php:175
+msgid "Channel Select"
+msgstr "Kanal-Auswahl"
-#: ../../include/ItemObject.php:531
-msgid "Bold"
-msgstr "Fett"
+#: ../../include/nav.php:175
+msgid "Manage Your Channels"
+msgstr "Verwalte Deine Kanäle"
-#: ../../include/ItemObject.php:532
-msgid "Italic"
-msgstr "Kursiv"
+#: ../../include/nav.php:177 ../../include/widgets.php:487
+#: ../../mod/admin.php:785 ../../mod/admin.php:990
+msgid "Settings"
+msgstr "Einstellungen"
-#: ../../include/ItemObject.php:533
-msgid "Underline"
-msgstr "Unterstrichen"
+#: ../../include/nav.php:177
+msgid "Account/Channel Settings"
+msgstr "Konto-/Kanal-Einstellungen"
-#: ../../include/ItemObject.php:534
-msgid "Quote"
-msgstr "Zitat"
+#: ../../include/nav.php:179 ../../mod/connections.php:349
+msgid "Connections"
+msgstr "Verbindungen"
-#: ../../include/ItemObject.php:535
-msgid "Code"
-msgstr "Code"
+#: ../../include/nav.php:179
+msgid "Manage/Edit Friends and Connections"
+msgstr "Verwalte/Bearbeite Freunde und Verbindungen"
-#: ../../include/ItemObject.php:536
-msgid "Image"
-msgstr "Bild"
+#: ../../include/nav.php:186 ../../mod/admin.php:111
+msgid "Admin"
+msgstr "Admin"
-#: ../../include/ItemObject.php:537
-msgid "Link"
-msgstr "Link"
+#: ../../include/nav.php:186
+msgid "Site Setup and Configuration"
+msgstr "Seiten-Einrichtung und -Konfiguration"
-#: ../../include/ItemObject.php:538
-msgid "Video"
-msgstr "Video"
+#: ../../include/nav.php:212
+msgid "Nothing new here"
+msgstr "Nichts Neues hier"
-#: ../../include/ItemObject.php:539 ../../include/conversation.php:1079
-#: ../../mod/webpages.php:122 ../../mod/photos.php:1088
-#: ../../mod/editlayout.php:129 ../../mod/editwebpage.php:176
-#: ../../mod/editpost.php:126 ../../mod/editblock.php:144
-msgid "Preview"
-msgstr "Vorschau"
+#: ../../include/nav.php:217
+msgid "Please wait..."
+msgstr "Bitte warten..."
-#: ../../include/ItemObject.php:542 ../../include/conversation.php:1143
-#: ../../mod/message.php:315 ../../mod/message.php:465
-#: ../../mod/editpost.php:134
-msgid "Encrypt text"
-msgstr "Text verschlüsseln"
+#: ../../include/reddav.php:940
+msgid "Edit File properties"
+msgstr "Dateieigenschaften ändern"
-#: ../../include/Contact.php:104 ../../include/widgets.php:112
-#: ../../include/widgets.php:152 ../../include/identity.php:613
-#: ../../mod/match.php:62 ../../mod/suggest.php:51 ../../mod/directory.php:197
+#: ../../include/Contact.php:104 ../../include/widgets.php:115
+#: ../../include/widgets.php:155 ../../include/identity.php:625
+#: ../../mod/directory.php:182 ../../mod/match.php:62 ../../mod/suggest.php:51
+#: ../../mod/dirprofile.php:165
msgid "Connect"
msgstr "Verbinden"
@@ -503,162 +325,152 @@ msgstr "Neues Fenster"
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/widgets.php:26 ../../include/contact_widgets.php:87
+#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
msgid "Categories"
msgstr "Kategorien"
-#: ../../include/widgets.php:114 ../../mod/suggest.php:53
+#: ../../include/widgets.php:117 ../../mod/suggest.php:53
msgid "Ignore/Hide"
msgstr "Ignorieren/Verstecken"
-#: ../../include/widgets.php:120 ../../mod/connections.php:236
+#: ../../include/widgets.php:123 ../../mod/connections.php:236
msgid "Suggestions"
msgstr "Vorschläge"
-#: ../../include/widgets.php:121
+#: ../../include/widgets.php:124
msgid "See more..."
msgstr "Mehr anzeigen..."
-#: ../../include/widgets.php:143
+#: ../../include/widgets.php:146
#, php-format
msgid "You have %1$.0f of %2$.0f allowed connections."
msgstr "Du bist %1$.0f von %2$.0f erlaubten Verbindungen eingegangen."
-#: ../../include/widgets.php:149
+#: ../../include/widgets.php:152
msgid "Add New Connection"
msgstr "Neue Verbindung hinzufügen"
-#: ../../include/widgets.php:150
+#: ../../include/widgets.php:153
msgid "Enter the channel address"
msgstr "Adresse des Kanals eingeben"
-#: ../../include/widgets.php:151
+#: ../../include/widgets.php:154
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"
-#: ../../include/widgets.php:168
+#: ../../include/widgets.php:171
msgid "Notes"
msgstr "Notizen"
-#: ../../include/widgets.php:170 ../../include/text.php:738
+#: ../../include/widgets.php:173 ../../include/text.php:738
#: ../../include/text.php:752 ../../mod/filer.php:36
msgid "Save"
msgstr "Speichern"
-#: ../../include/widgets.php:240 ../../mod/search.php:20
+#: ../../include/widgets.php:243
msgid "Remove term"
msgstr "Eintrag löschen"
-#: ../../include/widgets.php:249 ../../include/features.php:48
-#: ../../mod/search.php:17
+#: ../../include/widgets.php:252 ../../include/features.php:50
msgid "Saved Searches"
msgstr "Gesicherte Suchanfragen"
-#: ../../include/widgets.php:250 ../../include/group.php:290
+#: ../../include/widgets.php:253 ../../include/group.php:290
msgid "add"
msgstr "hinzufügen"
-#: ../../include/widgets.php:280 ../../include/features.php:62
+#: ../../include/widgets.php:283 ../../include/features.php:64
#: ../../include/contact_widgets.php:53
msgid "Saved Folders"
msgstr "Gesicherte Ordner"
-#: ../../include/widgets.php:283 ../../include/contact_widgets.php:56
+#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
#: ../../include/contact_widgets.php:90
msgid "Everything"
msgstr "Alles"
-#: ../../include/widgets.php:315 ../../include/items.php:3558
+#: ../../include/widgets.php:318 ../../include/items.php:3566
msgid "Archives"
msgstr "Archive"
-#: ../../include/widgets.php:367
+#: ../../include/widgets.php:370
msgid "Refresh"
msgstr "Aktualisieren"
-#: ../../include/widgets.php:368 ../../mod/connedit.php:386
+#: ../../include/widgets.php:371 ../../mod/connedit.php:386
msgid "Me"
msgstr "Ich"
-#: ../../include/widgets.php:369 ../../mod/connedit.php:388
+#: ../../include/widgets.php:372 ../../mod/connedit.php:388
msgid "Best Friends"
msgstr "Beste Freunde"
-#: ../../include/widgets.php:370 ../../include/profile_selectors.php:42
-#: ../../include/identity.php:298 ../../mod/connedit.php:389
+#: ../../include/widgets.php:373 ../../include/profile_selectors.php:42
+#: ../../include/identity.php:310 ../../mod/connedit.php:389
msgid "Friends"
msgstr "Freunde"
-#: ../../include/widgets.php:371
+#: ../../include/widgets.php:374
msgid "Co-workers"
msgstr "Kollegen"
-#: ../../include/widgets.php:372 ../../mod/connedit.php:390
+#: ../../include/widgets.php:375 ../../mod/connedit.php:390
msgid "Former Friends"
msgstr "ehem. Freunde"
-#: ../../include/widgets.php:373 ../../mod/connedit.php:391
+#: ../../include/widgets.php:376 ../../mod/connedit.php:391
msgid "Acquaintances"
msgstr "Bekanntschaften"
-#: ../../include/widgets.php:374
+#: ../../include/widgets.php:377
msgid "Everybody"
msgstr "Jeder"
-#: ../../include/widgets.php:406
+#: ../../include/widgets.php:409
msgid "Account settings"
msgstr "Konto-Einstellungen"
-#: ../../include/widgets.php:412
+#: ../../include/widgets.php:415
msgid "Channel settings"
msgstr "Kanal-Einstellungen"
-#: ../../include/widgets.php:418
+#: ../../include/widgets.php:421
msgid "Additional features"
msgstr "Zusätzliche Funktionen"
-#: ../../include/widgets.php:424
+#: ../../include/widgets.php:427
msgid "Feature settings"
msgstr "Funktions-Einstellungen"
-#: ../../include/widgets.php:430
+#: ../../include/widgets.php:433
msgid "Display settings"
msgstr "Anzeige-Einstellungen"
-#: ../../include/widgets.php:436
+#: ../../include/widgets.php:439
msgid "Connected apps"
msgstr "Verbundene Apps"
-#: ../../include/widgets.php:442
+#: ../../include/widgets.php:445
msgid "Export channel"
msgstr "Kanal exportieren"
-#: ../../include/widgets.php:454
+#: ../../include/widgets.php:457
msgid "Automatic Permissions (Advanced)"
msgstr "Automatische Berechtigungen (Erweitert)"
-#: ../../include/widgets.php:464
+#: ../../include/widgets.php:467
msgid "Premium Channel Settings"
msgstr "Prämium-Kanal Einstellungen"
-#: ../../include/widgets.php:473 ../../include/features.php:39
+#: ../../include/widgets.php:476 ../../include/features.php:41
#: ../../mod/sources.php:81
msgid "Channel Sources"
msgstr "Kanal Quellen"
-#: ../../include/widgets.php:484 ../../include/nav.php:177
-#: ../../mod/admin.php:785 ../../mod/admin.php:990
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: ../../include/widgets.php:501
+#: ../../include/widgets.php:504
msgid "Check Mail"
msgstr "E-Mails abrufen"
-#: ../../include/widgets.php:506 ../../include/nav.php:168
-msgid "New Message"
-msgstr "Neue Nachricht"
-
#: ../../include/contact_selectors.php:30
msgid "Unknown | Not categorised"
msgstr "Unbekannt | Nicht kategorisiert"
@@ -838,12 +650,339 @@ msgstr "Beginnt:"
msgid "Finishes:"
msgstr "Endet:"
-#: ../../include/event.php:40 ../../include/identity.php:664
+#: ../../include/event.php:40 ../../include/identity.php:676
#: ../../include/bb2diaspora.php:455 ../../mod/events.php:463
-#: ../../mod/directory.php:172
+#: ../../mod/directory.php:156 ../../mod/dirprofile.php:108
msgid "Location:"
msgstr "Ort:"
+#: ../../include/text.php:315
+msgid "prev"
+msgstr "vorherige"
+
+#: ../../include/text.php:317
+msgid "first"
+msgstr "erste"
+
+#: ../../include/text.php:346
+msgid "last"
+msgstr "letzte"
+
+#: ../../include/text.php:349
+msgid "next"
+msgstr "nächste"
+
+#: ../../include/text.php:361
+msgid "older"
+msgstr "älter"
+
+#: ../../include/text.php:363
+msgid "newer"
+msgstr "neuer"
+
+#: ../../include/text.php:654
+msgid "No connections"
+msgstr "Keine Verbindungen"
+
+#: ../../include/text.php:665
+#, php-format
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] "%d Verbindung"
+msgstr[1] "%d Verbindungen"
+
+#: ../../include/text.php:677
+msgid "View Connections"
+msgstr "Zeige Verbindungen"
+
+#: ../../include/text.php:818
+msgid "poke"
+msgstr "anstupsen"
+
+#: ../../include/text.php:818 ../../include/conversation.php:240
+msgid "poked"
+msgstr "stupste"
+
+#: ../../include/text.php:819
+msgid "ping"
+msgstr "anpingen"
+
+#: ../../include/text.php:819
+msgid "pinged"
+msgstr "pingte"
+
+#: ../../include/text.php:820
+msgid "prod"
+msgstr "knuffen"
+
+#: ../../include/text.php:820
+msgid "prodded"
+msgstr "knuffte"
+
+#: ../../include/text.php:821
+msgid "slap"
+msgstr "ohrfeigen"
+
+#: ../../include/text.php:821
+msgid "slapped"
+msgstr "ohrfeigte"
+
+#: ../../include/text.php:822
+msgid "finger"
+msgstr "befummeln"
+
+#: ../../include/text.php:822
+msgid "fingered"
+msgstr "befummelte"
+
+#: ../../include/text.php:823
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
+
+#: ../../include/text.php:823
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
+
+#: ../../include/text.php:835
+msgid "happy"
+msgstr "glücklich"
+
+#: ../../include/text.php:836
+msgid "sad"
+msgstr "traurig"
+
+#: ../../include/text.php:837
+msgid "mellow"
+msgstr "sanft"
+
+#: ../../include/text.php:838
+msgid "tired"
+msgstr "müde"
+
+#: ../../include/text.php:839
+msgid "perky"
+msgstr "frech"
+
+#: ../../include/text.php:840
+msgid "angry"
+msgstr "sauer"
+
+#: ../../include/text.php:841
+msgid "stupified"
+msgstr "verblüfft"
+
+#: ../../include/text.php:842
+msgid "puzzled"
+msgstr "verwirrt"
+
+#: ../../include/text.php:843
+msgid "interested"
+msgstr "interessiert"
+
+#: ../../include/text.php:844
+msgid "bitter"
+msgstr "verbittert"
+
+#: ../../include/text.php:845
+msgid "cheerful"
+msgstr "fröhlich"
+
+#: ../../include/text.php:846
+msgid "alive"
+msgstr "lebendig"
+
+#: ../../include/text.php:847
+msgid "annoyed"
+msgstr "verärgert"
+
+#: ../../include/text.php:848
+msgid "anxious"
+msgstr "unruhig"
+
+#: ../../include/text.php:849
+msgid "cranky"
+msgstr "schrullig"
+
+#: ../../include/text.php:850
+msgid "disturbed"
+msgstr "verstört"
+
+#: ../../include/text.php:851
+msgid "frustrated"
+msgstr "frustriert"
+
+#: ../../include/text.php:852
+msgid "motivated"
+msgstr "motiviert"
+
+#: ../../include/text.php:853
+msgid "relaxed"
+msgstr "entspannt"
+
+#: ../../include/text.php:854
+msgid "surprised"
+msgstr "überrascht"
+
+#: ../../include/text.php:1016
+msgid "Monday"
+msgstr "Montag"
+
+#: ../../include/text.php:1016
+msgid "Tuesday"
+msgstr "Dienstag"
+
+#: ../../include/text.php:1016
+msgid "Wednesday"
+msgstr "Mittwoch"
+
+#: ../../include/text.php:1016
+msgid "Thursday"
+msgstr "Donnerstag"
+
+#: ../../include/text.php:1016
+msgid "Friday"
+msgstr "Freitag"
+
+#: ../../include/text.php:1016
+msgid "Saturday"
+msgstr "Samstag"
+
+#: ../../include/text.php:1016
+msgid "Sunday"
+msgstr "Sonntag"
+
+#: ../../include/text.php:1020
+msgid "January"
+msgstr "Januar"
+
+#: ../../include/text.php:1020
+msgid "February"
+msgstr "Februar"
+
+#: ../../include/text.php:1020
+msgid "March"
+msgstr "März"
+
+#: ../../include/text.php:1020
+msgid "April"
+msgstr "April"
+
+#: ../../include/text.php:1020
+msgid "May"
+msgstr "Mai"
+
+#: ../../include/text.php:1020
+msgid "June"
+msgstr "Juni"
+
+#: ../../include/text.php:1020
+msgid "July"
+msgstr "Juli"
+
+#: ../../include/text.php:1020
+msgid "August"
+msgstr "August"
+
+#: ../../include/text.php:1020
+msgid "September"
+msgstr "September"
+
+#: ../../include/text.php:1020
+msgid "October"
+msgstr "Oktober"
+
+#: ../../include/text.php:1020
+msgid "November"
+msgstr "November"
+
+#: ../../include/text.php:1020
+msgid "December"
+msgstr "Dezember"
+
+#: ../../include/text.php:1098
+msgid "unknown.???"
+msgstr "unbekannt.???"
+
+#: ../../include/text.php:1099
+msgid "bytes"
+msgstr "Bytes"
+
+#: ../../include/text.php:1134
+msgid "remove category"
+msgstr "Kategorie entfernen"
+
+#: ../../include/text.php:1156
+msgid "remove from file"
+msgstr "aus der Datei entfernen"
+
+#: ../../include/text.php:1214 ../../include/text.php:1226
+msgid "Click to open/close"
+msgstr "Klicke zum Öffnen/Schließen"
+
+#: ../../include/text.php:1402 ../../mod/events.php:332
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
+
+#: ../../include/text.php:1421
+msgid "Select a page layout: "
+msgstr "Ein Seiten-Layout auswählen"
+
+#: ../../include/text.php:1424 ../../include/text.php:1489
+msgid "default"
+msgstr "Standard"
+
+#: ../../include/text.php:1460
+msgid "Page content type: "
+msgstr "Content-Typ der Seite"
+
+#: ../../include/text.php:1501
+msgid "Select an alternate language"
+msgstr "Wähle eine alternative Sprache"
+
+#: ../../include/text.php:1653 ../../include/conversation.php:117
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
+msgid "photo"
+msgstr "Foto"
+
+#: ../../include/text.php:1656 ../../include/conversation.php:120
+#: ../../mod/tagger.php:49
+msgid "event"
+msgstr "Ereignis"
+
+#: ../../include/text.php:1659 ../../include/conversation.php:145
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
+msgid "status"
+msgstr "Status"
+
+#: ../../include/text.php:1661 ../../include/conversation.php:147
+#: ../../mod/tagger.php:55
+msgid "comment"
+msgstr "Kommentar"
+
+#: ../../include/text.php:1666
+msgid "activity"
+msgstr "Aktivität"
+
+#: ../../include/text.php:1928
+msgid "Design"
+msgstr "Design"
+
+#: ../../include/text.php:1930
+msgid "Blocks"
+msgstr "Blöcke"
+
+#: ../../include/text.php:1931
+msgid "Menus"
+msgstr "Menüs"
+
+#: ../../include/text.php:1932
+msgid "Layouts"
+msgstr "Layouts"
+
+#: ../../include/text.php:1933
+msgid "Pages"
+msgstr "Seiten"
+
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
@@ -883,6 +1022,16 @@ msgstr "Kanäle, die nicht in einer Sammlung sind"
msgid "Delete this item?"
msgstr "Dieses Element löschen?"
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:536
+#: ../../mod/photos.php:1099 ../../mod/photos.php:1186
+msgid "Comment"
+msgstr "Kommentar"
+
+#: ../../include/js_strings.php:7 ../../include/contact_widgets.php:125
+#: ../../include/ItemObject.php:270
+msgid "show more"
+msgstr "mehr zeigen"
+
#: ../../include/js_strings.php:8
msgid "show fewer"
msgstr "Zeige weniger"
@@ -972,7 +1121,7 @@ msgstr "ungefähr ein Jahr"
msgid "%d years"
msgstr "%d Jahre"
-#: ../../include/js_strings.php:30 ../../include/features.php:29
+#: ../../include/js_strings.php:30
msgid " "
msgstr " "
@@ -996,8 +1145,8 @@ msgstr "Kann Absender nicht bestimmen."
msgid "Stored post could not be verified."
msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
-#: ../../include/photo/photo_driver.php:609 ../../include/photos.php:51
-#: ../../mod/photos.php:91 ../../mod/photos.php:771 ../../mod/photos.php:793
+#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
+#: ../../mod/photos.php:91 ../../mod/photos.php:783 ../../mod/photos.php:805
#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
#: ../../mod/profile_photo.php:336
msgid "Profile Photos"
@@ -1007,25 +1156,29 @@ msgstr "Profilfotos"
msgid "view full size"
msgstr "In Vollbildansicht anschauen"
-#: ../../include/bbcode.php:94 ../../include/bbcode.php:494
-#: ../../include/bbcode.php:497
+#: ../../include/bbcode.php:94 ../../include/bbcode.php:509
+#: ../../include/bbcode.php:512
msgid "Image/photo"
msgstr "Bild/Foto"
-#: ../../include/bbcode.php:126 ../../include/bbcode.php:502
+#: ../../include/bbcode.php:129 ../../include/bbcode.php:517
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
-#: ../../include/bbcode.php:173
+#: ../../include/bbcode.php:136
+msgid "QR code"
+msgstr "QR Code"
+
+#: ../../include/bbcode.php:179
#, 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:175
+#: ../../include/bbcode.php:181
msgid "post"
msgstr "Beitrag"
-#: ../../include/bbcode.php:454 ../../include/bbcode.php:474
+#: ../../include/bbcode.php:469 ../../include/bbcode.php:489
msgid "$1 wrote:"
msgstr "$1 schrieb:"
@@ -1073,180 +1226,611 @@ msgstr "private Notizen"
msgid "Enables a tool to store notes and reminders"
msgstr "Werkzeug zum Speichern von Notizen und Erinnerungen aktivieren"
-#: ../../include/features.php:27
-msgid "Enhanced Photo Albums"
-msgstr "Erweitertes Fotoalbum"
-
-#: ../../include/features.php:27
-msgid "Enable photo album with enhanced features"
-msgstr "Aktiviere Fotoalbum mit erweiterten Funktionen"
-
-#: ../../include/features.php:29
+#: ../../include/features.php:31
msgid "Extended Identity Sharing"
msgstr "Erweitertes Teilen von Identitäten"
-#: ../../include/features.php:30
+#: ../../include/features.php:31
+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 Seiten der Matrix geteilt."
+
+#: ../../include/features.php:32
msgid "Expert Mode"
msgstr "Expertenmodus"
-#: ../../include/features.php:30
+#: ../../include/features.php:32
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr "Aktiviere Expertenmodus, um fortgeschrittene Konfiguration zur Verfügung zu stellen"
-#: ../../include/features.php:31
+#: ../../include/features.php:33
msgid "Premium Channel"
msgstr "Premium-Kanal"
-#: ../../include/features.php:31
+#: ../../include/features.php:33
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
msgstr "Erlaubt es dir Einschränkungen für Kontakte und bestimmte Bedingungen an Kontakte zu diesem Kanal zu stellen"
-#: ../../include/features.php:36
+#: ../../include/features.php:38
msgid "Post Composition Features"
msgstr "Nachbearbeitungsfunktionen"
-#: ../../include/features.php:37
+#: ../../include/features.php:39
msgid "Richtext Editor"
msgstr "Formatierungseditor"
-#: ../../include/features.php:37
+#: ../../include/features.php:39
msgid "Enable richtext editor"
msgstr "Aktiviere Formatierungseditor"
-#: ../../include/features.php:38
+#: ../../include/features.php:40
msgid "Post Preview"
msgstr "Voransicht"
-#: ../../include/features.php:38
+#: ../../include/features.php:40
msgid "Allow previewing posts and comments before publishing them"
msgstr "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung"
-#: ../../include/features.php:39
+#: ../../include/features.php:41
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:40
+#: ../../include/features.php:42
msgid "Even More Encryption"
msgstr "Noch mehr Verschlüsselung"
-#: ../../include/features.php:40
-msgid "Allow encryption of content end-to-end with a shared secret key"
-msgstr "Erlaube Ende-zu-Ende Verschlüsselung von Inhalten, mit einem geteilten geheimen Schlüssel"
+#: ../../include/features.php:42
+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:45
+#: ../../include/features.php:47
msgid "Network and Stream Filtering"
msgstr "Netzwerk- und Stream-Filter"
-#: ../../include/features.php:46
+#: ../../include/features.php:48
msgid "Search by Date"
msgstr "Suche nach Datum"
-#: ../../include/features.php:46
+#: ../../include/features.php:48
msgid "Ability to select posts by date ranges"
msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"
-#: ../../include/features.php:47
+#: ../../include/features.php:49
msgid "Collections Filter"
msgstr "Filter für Sammlung"
-#: ../../include/features.php:47
+#: ../../include/features.php:49
msgid "Enable widget to display Network posts only from selected collections"
msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"
-#: ../../include/features.php:48
+#: ../../include/features.php:50
msgid "Save search terms for re-use"
msgstr "Gesicherte Suchbegriffe zur Wiederverwendung"
-#: ../../include/features.php:49
+#: ../../include/features.php:51
msgid "Network Personal Tab"
msgstr "Persönlicher Netzwerkreiter"
-#: ../../include/features.php:49
+#: ../../include/features.php:51
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:50
+#: ../../include/features.php:52
msgid "Network New Tab"
msgstr "Netzwerkreiter Neu"
-#: ../../include/features.php:50
+#: ../../include/features.php:52
msgid "Enable tab to display all new Network activity"
msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"
-#: ../../include/features.php:51
+#: ../../include/features.php:53
msgid "Affinity Tool"
msgstr "Beziehungs-Tool"
-#: ../../include/features.php:51
+#: ../../include/features.php:53
msgid "Filter stream activity by depth of relationships"
msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung"
-#: ../../include/features.php:52
+#: ../../include/features.php:54
msgid "Suggest Channels"
msgstr "Kanäle Vorschlagen"
-#: ../../include/features.php:52
+#: ../../include/features.php:54
msgid "Show channel suggestions"
msgstr "Kanal-Vorschläge anzeigen"
-#: ../../include/features.php:57
+#: ../../include/features.php:59
msgid "Post/Comment Tools"
msgstr "Beitrag-/Kommentar-Tools"
-#: ../../include/features.php:59
+#: ../../include/features.php:61
msgid "Edit Sent Posts"
msgstr "Bearbeite gesendete Beiträge"
-#: ../../include/features.php:59
+#: ../../include/features.php:61
msgid "Edit and correct posts and comments after sending"
msgstr "Bearbeite und korrigiere Beiträge und Kommentare nach dem Senden"
-#: ../../include/features.php:60
+#: ../../include/features.php:62
msgid "Tagging"
msgstr "Verschlagworten"
-#: ../../include/features.php:60
+#: ../../include/features.php:62
msgid "Ability to tag existing posts"
msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten"
-#: ../../include/features.php:61
+#: ../../include/features.php:63
msgid "Post Categories"
msgstr "Beitrags-Kategorien"
-#: ../../include/features.php:61
+#: ../../include/features.php:63
msgid "Add categories to your posts"
msgstr "Kategorien für Beiträge"
-#: ../../include/features.php:62
+#: ../../include/features.php:64
msgid "Ability to file posts under folders"
msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"
-#: ../../include/features.php:63
+#: ../../include/features.php:65
msgid "Dislike Posts"
msgstr "Gefällt-mir-nicht Beiträge"
-#: ../../include/features.php:63
+#: ../../include/features.php:65
msgid "Ability to dislike posts/comments"
msgstr "Möglichkeit für Gefällt-mir-nicht für Beiträge/Kommentare"
-#: ../../include/features.php:64
+#: ../../include/features.php:66
msgid "Star Posts"
msgstr "Beiträge mit Sternchen versehen"
-#: ../../include/features.php:64
+#: ../../include/features.php:66
msgid "Ability to mark special posts with a star indicator"
msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"
-#: ../../include/features.php:65
+#: ../../include/features.php:67
msgid "Tag Cloud"
msgstr "Tag Wolke"
-#: ../../include/features.php:65
+#: ../../include/features.php:67
msgid "Provide a personal tag cloud on your channel page"
msgstr "Persönliche Schlagwort-Wolke für deine Kanal-Seite anlegen"
+#: ../../include/conversation.php:123
+msgid "channel"
+msgstr "Kanal"
+
+#: ../../include/conversation.php:161 ../../mod/like.php:134
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$s's %3$s"
+
+#: ../../include/conversation.php:164 ../../mod/like.php:136
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$s's %3$s nicht"
+
+#: ../../include/conversation.php:201
+#, php-format
+msgid "%1$s is now connected with %2$s"
+msgstr "%1$s ist jetzt mit %2$s verbunden"
+
+#: ../../include/conversation.php:236
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
+
+#: ../../include/conversation.php:258 ../../mod/mood.php:63
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
+
+#: ../../include/conversation.php:631 ../../include/ItemObject.php:114
+msgid "Select"
+msgstr "Auswählen"
+
+#: ../../include/conversation.php:632 ../../include/ItemObject.php:108
+#: ../../mod/thing.php:230 ../../mod/connedit.php:356 ../../mod/admin.php:693
+#: ../../mod/group.php:176 ../../mod/photos.php:1150
+#: ../../mod/filestorage.php:172 ../../mod/settings.php:570
+msgid "Delete"
+msgstr "Löschen"
+
+#: ../../include/conversation.php:642 ../../include/ItemObject.php:161
+msgid "Message is verified"
+msgstr "Nachricht überprüft"
+
+#: ../../include/conversation.php:662
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Schaue Dir %s's Profil auf %s an."
+
+#: ../../include/conversation.php:676
+msgid "Categories:"
+msgstr "Kategorien:"
+
+#: ../../include/conversation.php:677
+msgid "Filed under:"
+msgstr "Gespeichert unter:"
+
+#: ../../include/conversation.php:686 ../../include/ItemObject.php:217
+#, php-format
+msgid " from %s"
+msgstr "von %s"
+
+#: ../../include/conversation.php:689 ../../include/ItemObject.php:220
+#, php-format
+msgid "last edited: %s"
+msgstr "zuletzt bearbeitet: %s"
+
+#: ../../include/conversation.php:704
+msgid "View in context"
+msgstr "Im Zusammenhang anschauen"
+
+#: ../../include/conversation.php:706 ../../include/conversation.php:1119
+#: ../../include/ItemObject.php:248 ../../mod/photos.php:1081
+#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:110
+#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:153
+#: ../../mod/editblock.php:124
+msgid "Please wait"
+msgstr "Bitte warten"
+
+#: ../../include/conversation.php:833
+msgid "remove"
+msgstr "lösche"
+
+#: ../../include/conversation.php:837
+msgid "Loading..."
+msgstr "Lädt ..."
+
+#: ../../include/conversation.php:838
+msgid "Delete Selected Items"
+msgstr "Lösche die ausgewählten Elemente"
+
+#: ../../include/conversation.php:929
+msgid "View Source"
+msgstr "Quelle anzeigen"
+
+#: ../../include/conversation.php:930
+msgid "Follow Thread"
+msgstr "Unterhaltung folgen"
+
+#: ../../include/conversation.php:931
+msgid "View Status"
+msgstr "Status ansehen"
+
+#: ../../include/conversation.php:933
+msgid "View Photos"
+msgstr "Fotos ansehen"
+
+#: ../../include/conversation.php:934
+msgid "Matrix Activity"
+msgstr "Matrix Aktivität"
+
+#: ../../include/conversation.php:935
+msgid "Edit Contact"
+msgstr "Kontakt bearbeiten"
+
+#: ../../include/conversation.php:936
+msgid "Send PM"
+msgstr "Sende PN"
+
+#: ../../include/conversation.php:937
+msgid "Poke"
+msgstr "Anstupsen"
+
+#: ../../include/conversation.php:999
+#, php-format
+msgid "%s likes this."
+msgstr "%s gefällt das."
+
+#: ../../include/conversation.php:999
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s gefällt das nicht."
+
+#: ../../include/conversation.php:1003
+#, php-format
+msgid "<span %1$s>%2$d people</span> like this."
+msgid_plural "<span %1$s>%2$d people</span> like this."
+msgstr[0] "<span %1$s>%2$d Person</span> gefällt das."
+msgstr[1] "<span %1$s>%2$d Leuten</span> gefällt das."
+
+#: ../../include/conversation.php:1005
+#, php-format
+msgid "<span %1$s>%2$d people</span> don't like this."
+msgid_plural "<span %1$s>%2$d people</span> don't like this."
+msgstr[0] "<span %1$s>%2$d Person</span> gefällt das nicht."
+msgstr[1] "<span %1$s>%2$d Leuten</span> gefällt das nicht."
+
+#: ../../include/conversation.php:1011
+msgid "and"
+msgstr "und"
+
+#: ../../include/conversation.php:1014
+#, php-format
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ", und %d andere"
+
+#: ../../include/conversation.php:1015
+#, php-format
+msgid "%s like this."
+msgstr "%s gefällt das."
+
+#: ../../include/conversation.php:1015
+#, php-format
+msgid "%s don't like this."
+msgstr "%s gefällt das nicht."
+
+#: ../../include/conversation.php:1065
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Sichtbar für <strong>jeden</strong>"
+
+#: ../../include/conversation.php:1066 ../../mod/mail.php:171
+#: ../../mod/mail.php:269
+msgid "Please enter a link URL:"
+msgstr "Gib eine URL ein:"
+
+#: ../../include/conversation.php:1067
+msgid "Please enter a video link/URL:"
+msgstr "Gib einen Video-Link/URL ein:"
+
+#: ../../include/conversation.php:1068
+msgid "Please enter an audio link/URL:"
+msgstr "Gib einen Audio-Link/URL ein:"
+
+#: ../../include/conversation.php:1069
+msgid "Tag term:"
+msgstr "Schlagwort:"
+
+#: ../../include/conversation.php:1070 ../../mod/filer.php:35
+msgid "Save to Folder:"
+msgstr "Speichern in Ordner:"
+
+#: ../../include/conversation.php:1071
+msgid "Where are you right now?"
+msgstr "Wo bist du jetzt grade?"
+
+#: ../../include/conversation.php:1072 ../../mod/mail.php:172
+#: ../../mod/mail.php:270 ../../mod/editpost.php:52
+msgid "Expires YYYY-MM-DD HH:MM"
+msgstr "Verfällt YYYY-MM-DD HH;MM"
+
+#: ../../include/conversation.php:1082 ../../include/ItemObject.php:546
+#: ../../mod/webpages.php:122 ../../mod/photos.php:1101
+#: ../../mod/editlayout.php:130 ../../mod/editpost.php:127
+#: ../../mod/editwebpage.php:177 ../../mod/editblock.php:145
+msgid "Preview"
+msgstr "Vorschau"
+
+#: ../../include/conversation.php:1096 ../../mod/photos.php:1080
+msgid "Share"
+msgstr "Teilen"
+
+#: ../../include/conversation.php:1098 ../../mod/editwebpage.php:140
+msgid "Page link title"
+msgstr "Seitentitel-Link"
+
+#: ../../include/conversation.php:1100 ../../mod/mail.php:219
+#: ../../mod/mail.php:332 ../../mod/editlayout.php:102
+#: ../../mod/editpost.php:99 ../../mod/editwebpage.php:145
+#: ../../mod/editblock.php:116
+msgid "Upload photo"
+msgstr "Foto hochladen"
+
+#: ../../include/conversation.php:1101
+msgid "upload photo"
+msgstr "Foto hochladen"
+
+#: ../../include/conversation.php:1102 ../../mod/mail.php:220
+#: ../../mod/mail.php:333 ../../mod/editlayout.php:103
+#: ../../mod/editpost.php:100 ../../mod/editwebpage.php:146
+#: ../../mod/editblock.php:117
+msgid "Attach file"
+msgstr "Datei anhängen"
+
+#: ../../include/conversation.php:1103
+msgid "attach file"
+msgstr "Datei anfügen"
+
+#: ../../include/conversation.php:1104 ../../mod/mail.php:221
+#: ../../mod/mail.php:334 ../../mod/editlayout.php:104
+#: ../../mod/editpost.php:101 ../../mod/editwebpage.php:147
+#: ../../mod/editblock.php:118
+msgid "Insert web link"
+msgstr "Link einfügen"
+
+#: ../../include/conversation.php:1105
+msgid "web link"
+msgstr "Web-Link"
+
+#: ../../include/conversation.php:1106
+msgid "Insert video link"
+msgstr "Video-Link einfügen"
+
+#: ../../include/conversation.php:1107
+msgid "video link"
+msgstr "Video-Link"
+
+#: ../../include/conversation.php:1108
+msgid "Insert audio link"
+msgstr "Audio-Link einfügen"
+
+#: ../../include/conversation.php:1109
+msgid "audio link"
+msgstr "Audio-Link"
+
+#: ../../include/conversation.php:1110 ../../mod/editlayout.php:108
+#: ../../mod/editpost.php:105 ../../mod/editwebpage.php:151
+#: ../../mod/editblock.php:122
+msgid "Set your location"
+msgstr "Standort"
+
+#: ../../include/conversation.php:1111
+msgid "set location"
+msgstr "Standort"
+
+#: ../../include/conversation.php:1112 ../../mod/editlayout.php:109
+#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:152
+#: ../../mod/editblock.php:123
+msgid "Clear browser location"
+msgstr "Browser-Standort löschen"
+
+#: ../../include/conversation.php:1113
+msgid "clear location"
+msgstr "Standort löschen"
+
+#: ../../include/conversation.php:1115 ../../mod/editlayout.php:122
+#: ../../mod/editpost.php:119 ../../mod/editwebpage.php:169
+#: ../../mod/editblock.php:137
+msgid "Set title"
+msgstr "Titel"
+
+#: ../../include/conversation.php:1118 ../../mod/editlayout.php:124
+#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:171
+#: ../../mod/editblock.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (Kommagetrennte Liste)"
+
+#: ../../include/conversation.php:1120 ../../mod/editlayout.php:111
+#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:154
+#: ../../mod/editblock.php:125
+msgid "Permission settings"
+msgstr "Berechtigungs-Einstellungen"
+
+#: ../../include/conversation.php:1121
+msgid "permissions"
+msgstr "Berechtigungen"
+
+#: ../../include/conversation.php:1129 ../../mod/editlayout.php:119
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:164
+#: ../../mod/editblock.php:134
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
+
+#: ../../include/conversation.php:1131 ../../mod/editlayout.php:125
+#: ../../mod/editpost.php:122 ../../mod/editwebpage.php:172
+#: ../../mod/editblock.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Beispiel: bob@example.com, mary@example.com"
+
+#: ../../include/conversation.php:1144 ../../mod/mail.php:226
+#: ../../mod/mail.php:339 ../../mod/editlayout.php:135
+#: ../../mod/editpost.php:133 ../../mod/editwebpage.php:182
+#: ../../mod/editblock.php:150
+msgid "Set expiration date"
+msgstr "Verfallsdatum"
+
+#: ../../include/conversation.php:1146 ../../include/ItemObject.php:549
+#: ../../mod/mail.php:228 ../../mod/mail.php:341 ../../mod/editpost.php:135
+msgid "Encrypt text"
+msgstr "Text verschlüsseln"
+
+#: ../../include/conversation.php:1148 ../../mod/editpost.php:136
+msgid "OK"
+msgstr "OK"
+
+#: ../../include/conversation.php:1149 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:508
+#: ../../mod/settings.php:534 ../../mod/editpost.php:137
+#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: ../../include/conversation.php:1376
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
+
+#: ../../include/conversation.php:1379
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortiert"
+
+#: ../../include/conversation.php:1382
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
+
+#: ../../include/conversation.php:1385
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortiert"
+
+#: ../../include/conversation.php:1389
+msgid "Personal"
+msgstr "Persönlich"
+
+#: ../../include/conversation.php:1392
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um dich geht"
+
+#: ../../include/conversation.php:1395 ../../mod/menu.php:57
+#: ../../mod/connections.php:209
+msgid "New"
+msgstr "Neu"
+
+#: ../../include/conversation.php:1398
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - nach Datum sortiert"
+
+#: ../../include/conversation.php:1405
+msgid "Starred"
+msgstr "Markiert"
+
+#: ../../include/conversation.php:1408
+msgid "Favourite Posts"
+msgstr "Beiträge mit Sternchen"
+
+#: ../../include/conversation.php:1415
+msgid "Spam"
+msgstr "Spam"
+
+#: ../../include/conversation.php:1418
+msgid "Posts flagged as SPAM"
+msgstr "Nachrichten die als SPAM markiert wurden"
+
+#: ../../include/conversation.php:1448
+msgid "Channel"
+msgstr "Kanal"
+
+#: ../../include/conversation.php:1451
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
+
+#: ../../include/conversation.php:1455
+msgid "About"
+msgstr "Über"
+
+#: ../../include/conversation.php:1458
+msgid "Profile Details"
+msgstr "Profil-Details"
+
+#: ../../include/conversation.php:1465 ../../include/photos.php:297
+msgid "Photo Albums"
+msgstr "Fotoalben"
+
+#: ../../include/conversation.php:1470 ../../mod/fbrowser.php:114
+msgid "Files"
+msgstr "Dateien"
+
+#: ../../include/conversation.php:1473
+msgid "Files and Storage"
+msgstr "Dateien und Speicher"
+
+#: ../../include/conversation.php:1485
+msgid "Events and Calendar"
+msgstr "Veranstaltungen und Kalender"
+
+#: ../../include/conversation.php:1490
+msgid "Webpages"
+msgstr "Webseiten"
+
+#: ../../include/conversation.php:1493
+msgid "Manage Webpages"
+msgstr "Webseiten verwalten"
+
#: ../../include/notify.php:23
msgid "created a new post"
msgstr "Neuer Beitrag wurde erzeugt"
@@ -1256,35 +1840,39 @@ msgstr "Neuer Beitrag wurde erzeugt"
msgid "commented on %s's post"
msgstr "hat %s's Beitrag kommentiert"
-#: ../../include/photos.php:15 ../../include/attach.php:102
-#: ../../include/attach.php:133 ../../include/attach.php:189
-#: ../../include/attach.php:204 ../../include/attach.php:237
-#: ../../include/attach.php:251 ../../include/attach.php:272
-#: ../../include/attach.php:464 ../../include/attach.php:539
-#: ../../include/items.php:3437 ../../mod/common.php:35
-#: ../../mod/events.php:140 ../../mod/invite.php:13 ../../mod/invite.php:102
+#: ../../include/photos.php:15 ../../include/attach.php:97
+#: ../../include/attach.php:128 ../../include/attach.php:184
+#: ../../include/attach.php:199 ../../include/attach.php:232
+#: ../../include/attach.php:246 ../../include/attach.php:267
+#: ../../include/attach.php:461 ../../include/attach.php:539
+#: ../../include/items.php:3445 ../../mod/common.php:35
+#: ../../mod/events.php:140 ../../mod/thing.php:241 ../../mod/thing.php:257
+#: ../../mod/thing.php:291 ../../mod/invite.php:13 ../../mod/invite.php:104
#: ../../mod/connedit.php:179 ../../mod/webpages.php:40 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/page.php:30 ../../mod/page.php:80
#: ../../mod/setup.php:200 ../../mod/viewconnections.php:22
#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6
#: ../../mod/sources.php:62 ../../mod/mitem.php:73 ../../mod/group.php:9
-#: ../../mod/photos.php:68 ../../mod/photos.php:650 ../../mod/viewsrc.php:12
-#: ../../mod/menu.php:40 ../../mod/message.php:185
-#: ../../mod/connections.php:167 ../../mod/layouts.php:27
-#: ../../mod/layouts.php:42 ../../mod/network.php:12
+#: ../../mod/photos.php:68 ../../mod/photos.php:653 ../../mod/viewsrc.php:12
+#: ../../mod/menu.php:40 ../../mod/connections.php:167
+#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/network.php:12
#: ../../mod/profiles.php:152 ../../mod/profiles.php:465
#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/filestorage.php:26 ../../mod/manage.php:6
-#: ../../mod/settings.php:484 ../../mod/editlayout.php:48
-#: ../../mod/profile_photo.php:187 ../../mod/profile_photo.php:200
-#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83
+#: ../../mod/achievements.php:27 ../../mod/filestorage.php:10
+#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:76
+#: ../../mod/filestorage.php:99 ../../mod/manage.php:6
+#: ../../mod/settings.php:484 ../../mod/mail.php:108
+#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
+#: ../../mod/profile_photo.php:200 ../../mod/editpost.php:13
#: ../../mod/notifications.php:66 ../../mod/blocks.php:29
-#: ../../mod/blocks.php:44 ../../mod/editpost.php:13 ../../mod/poke.php:128
-#: ../../mod/channel.php:86 ../../mod/fsuggest.php:78
-#: ../../mod/editblock.php:48 ../../mod/item.php:181 ../../mod/item.php:189
-#: ../../mod/suggest.php:26 ../../mod/register.php:68 ../../mod/regmod.php:18
-#: ../../mod/authtest.php:13 ../../mod/mood.php:114 ../../index.php:178
-#: ../../index.php:346
+#: ../../mod/blocks.php:44 ../../mod/editwebpage.php:44
+#: ../../mod/editwebpage.php:83 ../../mod/poke.php:128
+#: ../../mod/channel.php:88 ../../mod/channel.php:225
+#: ../../mod/fsuggest.php:78 ../../mod/editblock.php:48
+#: ../../mod/suggest.php:26 ../../mod/message.php:16 ../../mod/register.php:68
+#: ../../mod/regmod.php:18 ../../mod/authtest.php:13 ../../mod/item.php:182
+#: ../../mod/item.php:190 ../../mod/mood.php:119 ../../index.php:176
+#: ../../index.php:344
msgid "Permission denied."
msgstr "Zugang verweigert"
@@ -1297,20 +1885,16 @@ msgstr "Bild überschreitet das Limit der Webseite von %lu bytes"
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
-#: ../../include/photos.php:124 ../../mod/profile_photo.php:147
+#: ../../include/photos.php:122 ../../mod/profile_photo.php:147
msgid "Unable to process image"
msgstr "Kann Bild nicht verarbeiten"
-#: ../../include/photos.php:186
+#: ../../include/photos.php:184
msgid "Photo storage failed."
msgstr "Foto speichern schlug fehl"
-#: ../../include/photos.php:296 ../../include/conversation.php:1457
-msgid "Photo Albums"
-msgstr "Fotoalben"
-
-#: ../../include/photos.php:300 ../../mod/photos.php:809
-#: ../../mod/photos.php:1283
+#: ../../include/photos.php:301 ../../mod/photos.php:821
+#: ../../mod/photos.php:1296
msgid "Upload New Photos"
msgstr "Lade neue Fotos hoch"
@@ -1542,41 +2126,41 @@ msgstr "Interessiert mich nicht"
msgid "Ask me"
msgstr "Frag mich mal"
-#: ../../include/attach.php:184 ../../include/attach.php:232
+#: ../../include/attach.php:179 ../../include/attach.php:227
msgid "Item was not found."
msgstr "Beitrag wurde nicht gefunden."
-#: ../../include/attach.php:285
+#: ../../include/attach.php:280
msgid "No source file."
msgstr "Keine Quelldatei."
-#: ../../include/attach.php:302
+#: ../../include/attach.php:297
msgid "Cannot locate file to replace"
msgstr "Kann Datei zum Ersetzen nicht finden"
-#: ../../include/attach.php:320
+#: ../../include/attach.php:315
msgid "Cannot locate file to revise/update"
msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden"
-#: ../../include/attach.php:331
+#: ../../include/attach.php:326
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Datei überschreitet das Größen-Limit von %d"
-#: ../../include/attach.php:342
+#: ../../include/attach.php:337
#, php-format
msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
msgstr "Die Größe deiner Datei-Anhänge haben das Maximum von %1$.0f MByte erreicht."
-#: ../../include/attach.php:424
+#: ../../include/attach.php:421
msgid "File upload failed. Possible system limit or action terminated."
msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."
-#: ../../include/attach.php:436
+#: ../../include/attach.php:433
msgid "Stored file could not be verified. Upload failed."
msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
-#: ../../include/attach.php:480 ../../include/attach.php:497
+#: ../../include/attach.php:477 ../../include/attach.php:494
msgid "Path not available."
msgstr "Pfad nicht verfügbar."
@@ -1588,289 +2172,55 @@ msgstr "leere Pfadangabe"
msgid "duplicate filename or path"
msgstr "doppelter Dateiname oder Pfad"
-#: ../../include/attach.php:584
+#: ../../include/attach.php:587
msgid "Path not found."
msgstr "Pfad nicht gefunden."
-#: ../../include/attach.php:628
+#: ../../include/attach.php:632
msgid "mkdir failed."
msgstr "mkdir fehlgeschlagen."
-#: ../../include/attach.php:632
+#: ../../include/attach.php:636
msgid "database storage failed."
msgstr "Speichern in der Datenbank fehlgeschlagen."
-#: ../../include/zot.php:545
-msgid "Invalid data packet"
-msgstr "Ungültiges Datenpaket"
-
-#: ../../include/zot.php:555
-msgid "Unable to verify channel signature"
-msgstr "Konnte die Signatur des Kanals nicht verifizieren"
-
-#: ../../include/zot.php:732
-#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "Kann die Signatur der Seite von %s nicht verifizieren"
-
-#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1415
-msgid "Logout"
-msgstr "Abmelden"
-
-#: ../../include/nav.php:72 ../../include/nav.php:87
-msgid "End this session"
-msgstr "Beende diese Sitzung"
-
-#: ../../include/nav.php:75 ../../include/nav.php:121
-msgid "Home"
-msgstr "Home"
-
-#: ../../include/nav.php:75
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
-
-#: ../../include/nav.php:76 ../../include/conversation.php:929
-#: ../../mod/connedit.php:309 ../../mod/connedit.php:423
-msgid "View Profile"
-msgstr "Profil ansehen"
-
-#: ../../include/nav.php:76
-msgid "Your profile page"
-msgstr "Deine Profilseite"
-
-#: ../../include/nav.php:78
-msgid "Edit Profiles"
-msgstr "Profile bearbeiten"
-
-#: ../../include/nav.php:78
-msgid "Manage/Edit Profiles"
-msgstr "Verwalte/Bearbeite Profile"
-
-#: ../../include/nav.php:79 ../../include/conversation.php:1454
-#: ../../mod/fbrowser.php:25
-msgid "Photos"
-msgstr "Fotos"
-
-#: ../../include/nav.php:79
-msgid "Your photos"
-msgstr "Deine Bilder"
-
-#: ../../include/nav.php:85 ../../boot.php:1416
-msgid "Login"
-msgstr "Anmelden"
-
-#: ../../include/nav.php:85
-msgid "Sign in"
-msgstr "Anmelden"
-
-#: ../../include/nav.php:102
-#, php-format
-msgid "%s - click to logout"
-msgstr "%s - Klick zum Abmelden"
-
-#: ../../include/nav.php:107
-msgid "Click to authenticate to your home hub"
-msgstr "Klick zum Authentifizieren bei Deinem Heimat-Hub"
-
-#: ../../include/nav.php:121
-msgid "Home Page"
-msgstr "Homepage"
-
-#: ../../include/nav.php:125 ../../mod/register.php:195 ../../boot.php:1392
-msgid "Register"
-msgstr "Registrieren"
-
-#: ../../include/nav.php:125
-msgid "Create an account"
-msgstr "Erzeuge ein Konto"
-
-#: ../../include/nav.php:130 ../../mod/help.php:60 ../../mod/help.php:64
-msgid "Help"
-msgstr "Hilfe"
-
-#: ../../include/nav.php:130
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
-
-#: ../../include/nav.php:133
-msgid "Apps"
-msgstr "Apps"
-
-#: ../../include/nav.php:133
-msgid "Addon applications, utilities, games"
-msgstr "Addon Programme, Helferlein, Spiele"
-
-#: ../../include/nav.php:135 ../../include/text.php:736
-#: ../../include/text.php:750 ../../mod/search.php:96
-msgid "Search"
-msgstr "Suche"
-
-#: ../../include/nav.php:135
-msgid "Search site content"
-msgstr "Durchsuche Seiten-Inhalt"
-
-#: ../../include/nav.php:138 ../../mod/directory.php:226
-msgid "Directory"
-msgstr "Verzeichnis"
-
-#: ../../include/nav.php:138
-msgid "Channel Locator"
-msgstr "Kanal-Anzeiger"
-
-#: ../../include/nav.php:149
-msgid "Matrix"
-msgstr "Matrix"
-
-#: ../../include/nav.php:149
-msgid "Your matrix"
-msgstr "Deine Matrix"
-
-#: ../../include/nav.php:150
-msgid "Mark all matrix notifications seen"
-msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen"
-
-#: ../../include/nav.php:152
-msgid "Channel Home"
-msgstr "Mein Kanal"
-
-#: ../../include/nav.php:152
-msgid "Channel home"
-msgstr "Mein Kanal"
-
-#: ../../include/nav.php:153
-msgid "Mark all channel notifications seen"
-msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen"
-
-#: ../../include/nav.php:156
-msgid "Intros"
-msgstr "Vorstellungen"
-
-#: ../../include/nav.php:156 ../../mod/connections.php:242
-msgid "New Connections"
-msgstr "Neue Verbindungen"
-
-#: ../../include/nav.php:159
-msgid "Notices"
-msgstr "Benachrichtigungen"
-
-#: ../../include/nav.php:159
-msgid "Notifications"
-msgstr "Benachrichtigungen"
-
-#: ../../include/nav.php:160
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen ansehen"
-
-#: ../../include/nav.php:161
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle System-Benachrichtigungen als gesehen"
-
-#: ../../include/nav.php:163
-msgid "Mail"
-msgstr "Mail"
-
-#: ../../include/nav.php:163
-msgid "Private mail"
-msgstr "Persönliche Mail"
-
-#: ../../include/nav.php:164
-msgid "See all private messages"
-msgstr "Alle persönlichen Nachrichten ansehen"
-
-#: ../../include/nav.php:165
-msgid "Mark all private messages seen"
-msgstr "Markiere alle persönlichen Nachrichten als gesehen"
-
-#: ../../include/nav.php:166
-msgid "Inbox"
-msgstr "Eingang"
-
-#: ../../include/nav.php:167
-msgid "Outbox"
-msgstr "Ausgang"
-
-#: ../../include/nav.php:171 ../../include/conversation.php:1465
-#: ../../mod/events.php:354
-msgid "Events"
-msgstr "Veranstaltungen"
-
-#: ../../include/nav.php:171
-msgid "Event Calendar"
-msgstr "Veranstaltungskalender"
-
-#: ../../include/nav.php:172
-msgid "See all events"
-msgstr "Alle Ereignisse ansehen"
-
-#: ../../include/nav.php:173
-msgid "Mark all events seen"
-msgstr "Markiere alle Ereignisse als gesehen"
-
-#: ../../include/nav.php:175
-msgid "Channel Select"
-msgstr "Kanal-Auswahl"
-
-#: ../../include/nav.php:175
-msgid "Manage Your Channels"
-msgstr "Verwalte Deine Kanäle"
-
-#: ../../include/nav.php:177
-msgid "Account/Channel Settings"
-msgstr "Konto-/Kanal-Einstellungen"
-
-#: ../../include/nav.php:179 ../../mod/connections.php:349
-msgid "Connections"
-msgstr "Verbindungen"
-
-#: ../../include/nav.php:179
-msgid "Manage/Edit Friends and Connections"
-msgstr "Verwalte/Bearbeite Freunde und Verbindungen"
-
-#: ../../include/nav.php:186 ../../mod/admin.php:111
-msgid "Admin"
-msgstr "Admin"
-
-#: ../../include/nav.php:186
-msgid "Site Setup and Configuration"
-msgstr "Seiten-Einrichtung und -Konfiguration"
-
-#: ../../include/nav.php:212
-msgid "Nothing new here"
-msgstr "Nichts Neues hier"
-
-#: ../../include/nav.php:217
-msgid "Please wait..."
-msgstr "Bitte warten..."
-
#: ../../include/taxonomy.php:210
msgid "Tags"
msgstr "Tags"
-#: ../../include/taxonomy.php:224
+#: ../../include/taxonomy.php:227
msgid "Keywords"
msgstr "Schlüsselbegriffe"
-#: ../../include/taxonomy.php:249
+#: ../../include/taxonomy.php:252
msgid "have"
msgstr "habe"
-#: ../../include/taxonomy.php:249
+#: ../../include/taxonomy.php:252
msgid "has"
msgstr "hat"
-#: ../../include/taxonomy.php:250
+#: ../../include/taxonomy.php:253
msgid "want"
msgstr "will"
-#: ../../include/taxonomy.php:250
+#: ../../include/taxonomy.php:253
msgid "wants"
msgstr "will"
-#: ../../include/taxonomy.php:251
+#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:175
+msgid "like"
+msgstr "Gefällt-mir"
+
+#: ../../include/taxonomy.php:254
msgid "likes"
msgstr "Gefällt-mir"
-#: ../../include/taxonomy.php:252
+#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:176
+msgid "dislike"
+msgstr "Gefällt-mir-nicht"
+
+#: ../../include/taxonomy.php:255
msgid "dislikes"
msgstr "Gefällt-mir-nicht"
@@ -1894,429 +2244,260 @@ msgstr "Eine Einladung wird benötigt"
msgid "Invitation could not be verified."
msgstr "Die Einladung konnte nicht bestätigt werden"
-#: ../../include/account.php:118
+#: ../../include/account.php:119
msgid "Please enter the required information."
msgstr "Bitte gib die benötigten Informationen ein."
-#: ../../include/account.php:186
+#: ../../include/account.php:187
msgid "Failed to store account information."
msgstr "Speichern der Account-Informationen fehlgeschlagen"
-#: ../../include/account.php:272
+#: ../../include/account.php:273
#, php-format
msgid "Registration request at %s"
msgstr "Registrierungsanfrage auf %s"
-#: ../../include/account.php:274 ../../include/account.php:301
-#: ../../include/account.php:358
+#: ../../include/account.php:275 ../../include/account.php:302
+#: ../../include/account.php:359
msgid "Administrator"
msgstr "Administrator"
-#: ../../include/account.php:296
+#: ../../include/account.php:297
msgid "your registration password"
msgstr "dein Registrierungspasswort"
-#: ../../include/account.php:299 ../../include/account.php:356
+#: ../../include/account.php:300 ../../include/account.php:357
#, php-format
msgid "Registration details for %s"
msgstr "Registrierungsdetails für %s"
-#: ../../include/account.php:365
+#: ../../include/account.php:366
msgid "Account approved."
msgstr "Account bestätigt."
-#: ../../include/account.php:399
+#: ../../include/account.php:400
#, php-format
msgid "Registration revoked for %s"
msgstr "Registrierung für %s widerrufen"
-#: ../../include/conversation.php:117 ../../include/text.php:1621
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
-msgid "photo"
-msgstr "Foto"
+#: ../../include/dir_fns.php:15
+msgid "Sort Options"
+msgstr "Sortieroptionen"
-#: ../../include/conversation.php:120 ../../include/text.php:1624
-#: ../../mod/tagger.php:49
-msgid "event"
-msgstr "Ereignis"
+#: ../../include/dir_fns.php:16
+msgid "Alphabetic"
+msgstr "alphabetisch"
-#: ../../include/conversation.php:123
-msgid "channel"
-msgstr "Kanal"
+#: ../../include/dir_fns.php:17
+msgid "Reverse Alphabetic"
+msgstr "Entgegengesetzt alphabetisch"
-#: ../../include/conversation.php:145 ../../include/text.php:1627
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
-msgid "status"
-msgstr "Status"
+#: ../../include/dir_fns.php:18
+msgid "Newest to Oldest"
+msgstr "Neueste zuerst"
-#: ../../include/conversation.php:147 ../../include/text.php:1629
-#: ../../mod/tagger.php:55
-msgid "comment"
-msgstr "Kommentar"
+#: ../../include/dir_fns.php:30
+msgid "Enable Safe Search"
+msgstr "Sichere Suche einschalten"
-#: ../../include/conversation.php:161 ../../mod/like.php:134
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$s's %3$s"
+#: ../../include/dir_fns.php:32
+msgid "Disable Safe Search"
+msgstr "Sichere Suche ausschalten"
-#: ../../include/conversation.php:164 ../../mod/like.php:136
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$s's %3$s nicht"
+#: ../../include/dir_fns.php:34
+msgid "Safe Mode"
+msgstr "Sicherer Modus"
-#: ../../include/conversation.php:201
-#, php-format
-msgid "%1$s is now connected with %2$s"
-msgstr "%1$s ist jetzt mit %2$s verbunden"
+#: ../../include/enotify.php:40
+msgid "Red Matrix Notification"
+msgstr "Red Matrix Benachrichtigung"
-#: ../../include/conversation.php:236
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: ../../include/enotify.php:41
+msgid "redmatrix"
+msgstr "redmatrix"
-#: ../../include/conversation.php:240 ../../include/text.php:790
-msgid "poked"
-msgstr "stupste"
+#: ../../include/enotify.php:43
+msgid "Thank You,"
+msgstr "Danke."
-#: ../../include/conversation.php:258 ../../mod/mood.php:63
+#: ../../include/enotify.php:45
#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+msgid "%s Administrator"
+msgstr "%s Administrator"
-#: ../../include/conversation.php:662
+#: ../../include/enotify.php:80
#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Schaue Dir %s's Profil auf %s an."
-
-#: ../../include/conversation.php:676
-msgid "Categories:"
-msgstr "Kategorien:"
-
-#: ../../include/conversation.php:677
-msgid "Filed under:"
-msgstr "Gespeichert unter:"
-
-#: ../../include/conversation.php:704
-msgid "View in context"
-msgstr "Im Zusammenhang anschauen"
-
-#: ../../include/conversation.php:830
-msgid "remove"
-msgstr "lösche"
-
-#: ../../include/conversation.php:834
-msgid "Loading..."
-msgstr "Lädt ..."
-
-#: ../../include/conversation.php:835
-msgid "Delete Selected Items"
-msgstr "Lösche die ausgewählten Elemente"
-
-#: ../../include/conversation.php:926
-msgid "View Source"
-msgstr "Quelle anzeigen"
-
-#: ../../include/conversation.php:927
-msgid "Follow Thread"
-msgstr "Unterhaltung folgen"
-
-#: ../../include/conversation.php:928
-msgid "View Status"
-msgstr "Status ansehen"
-
-#: ../../include/conversation.php:930
-msgid "View Photos"
-msgstr "Fotos ansehen"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
-#: ../../include/conversation.php:931
-msgid "Matrix Activity"
-msgstr "Matrix Aktivität"
+#: ../../include/enotify.php:84
+#, php-format
+msgid "[Red:Notify] New mail received at %s"
+msgstr "[Red Notify] Neue Mail auf %s empfangen"
-#: ../../include/conversation.php:932
-msgid "Edit Contact"
-msgstr "Kontakt bearbeiten"
+#: ../../include/enotify.php:86
+#, 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/conversation.php:933
-msgid "Send PM"
-msgstr "Sende PN"
+#: ../../include/enotify.php:87
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s hat dir %2$s geschickt."
-#: ../../include/conversation.php:934
-msgid "Poke"
-msgstr "Anstupsen"
+#: ../../include/enotify.php:87
+msgid "a private message"
+msgstr "eine private Nachricht"
-#: ../../include/conversation.php:996
+#: ../../include/enotify.php:88
#, php-format
-msgid "%s likes this."
-msgstr "%s gefällt das."
+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/conversation.php:996
+#: ../../include/enotify.php:142
#, php-format
-msgid "%s doesn't like this."
-msgstr "%s gefällt das nicht."
+msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
+msgstr "%1$s, %2$s hat [zrl=%3$s]a %4$s[/zrl] kommentiert"
-#: ../../include/conversation.php:1000
+#: ../../include/enotify.php:150
#, php-format
-msgid "<span %1$s>%2$d people</span> like this."
-msgid_plural "<span %1$s>%2$d people</span> like this."
-msgstr[0] "<span %1$s>%2$d Person</span> gefällt das."
-msgstr[1] "<span %1$s>%2$d Leuten</span> gefällt das."
+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/conversation.php:1002
+#: ../../include/enotify.php:159
#, php-format
-msgid "<span %1$s>%2$d people</span> don't like this."
-msgid_plural "<span %1$s>%2$d people</span> don't like this."
-msgstr[0] "<span %1$s>%2$d Person</span> gefällt das nicht."
-msgstr[1] "<span %1$s>%2$d Leuten</span> gefällt das nicht."
-
-#: ../../include/conversation.php:1008
-msgid "and"
-msgstr "und"
+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/conversation.php:1011
+#: ../../include/enotify.php:170
#, php-format
-msgid ", and %d other people"
-msgid_plural ", and %d other people"
-msgstr[0] ""
-msgstr[1] ", und %d andere"
+msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Red:Notify] Kommentar in Unterhaltung #%1$d von %2$s"
-#: ../../include/conversation.php:1012
+#: ../../include/enotify.php:171
#, php-format
-msgid "%s like this."
-msgstr "%s gefällt das."
+msgid "%1$s, %2$s commented on an item/conversation you have been following."
+msgstr "%1$s, %2$s hat ein Thema kommentiert, dem du folgst."
-#: ../../include/conversation.php:1012
+#: ../../include/enotify.php:174 ../../include/enotify.php:189
+#: ../../include/enotify.php:215 ../../include/enotify.php:234
+#: ../../include/enotify.php:248
#, php-format
-msgid "%s don't like this."
-msgstr "%s gefällt das nicht."
-
-#: ../../include/conversation.php:1062
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Sichtbar für <strong>jeden</strong>"
-
-#: ../../include/conversation.php:1063 ../../mod/message.php:258
-#: ../../mod/message.php:393
-msgid "Please enter a link URL:"
-msgstr "Gib eine URL ein:"
-
-#: ../../include/conversation.php:1064
-msgid "Please enter a video link/URL:"
-msgstr "Gib einen Video-Link/URL ein:"
-
-#: ../../include/conversation.php:1065
-msgid "Please enter an audio link/URL:"
-msgstr "Gib einen Audio-Link/URL ein:"
-
-#: ../../include/conversation.php:1066
-msgid "Tag term:"
-msgstr "Schlagwort:"
-
-#: ../../include/conversation.php:1067 ../../mod/filer.php:35
-msgid "Save to Folder:"
-msgstr "Speichern in Ordner:"
-
-#: ../../include/conversation.php:1068
-msgid "Where are you right now?"
-msgstr "Wo bist du jetzt grade?"
-
-#: ../../include/conversation.php:1069 ../../mod/message.php:259
-#: ../../mod/message.php:394 ../../mod/editpost.php:52
-msgid "Expires YYYY-MM-DD HH:MM"
-msgstr "Verfällt YYYY-MM-DD HH;MM"
-
-#: ../../include/conversation.php:1093 ../../mod/photos.php:1067
-msgid "Share"
-msgstr "Teilen"
-
-#: ../../include/conversation.php:1095 ../../mod/editwebpage.php:139
-msgid "Page link title"
-msgstr "Seitentitel-Link"
-
-#: ../../include/conversation.php:1097 ../../mod/message.php:306
-#: ../../mod/message.php:456 ../../mod/editlayout.php:101
-#: ../../mod/editwebpage.php:144 ../../mod/editpost.php:98
-#: ../../mod/editblock.php:115
-msgid "Upload photo"
-msgstr "Foto hochladen"
-
-#: ../../include/conversation.php:1098
-msgid "upload photo"
-msgstr "Foto hochladen"
-
-#: ../../include/conversation.php:1099 ../../mod/message.php:307
-#: ../../mod/message.php:457 ../../mod/editlayout.php:102
-#: ../../mod/editwebpage.php:145 ../../mod/editpost.php:99
-#: ../../mod/editblock.php:116
-msgid "Attach file"
-msgstr "Datei anhängen"
-
-#: ../../include/conversation.php:1100
-msgid "attach file"
-msgstr "Datei anfügen"
-
-#: ../../include/conversation.php:1101 ../../mod/message.php:308
-#: ../../mod/message.php:458 ../../mod/editlayout.php:103
-#: ../../mod/editwebpage.php:146 ../../mod/editpost.php:100
-#: ../../mod/editblock.php:117
-msgid "Insert web link"
-msgstr "Link einfügen"
-
-#: ../../include/conversation.php:1102
-msgid "web link"
-msgstr "Web-Link"
-
-#: ../../include/conversation.php:1103
-msgid "Insert video link"
-msgstr "Video-Link einfügen"
-
-#: ../../include/conversation.php:1104
-msgid "video link"
-msgstr "Video-Link"
-
-#: ../../include/conversation.php:1105
-msgid "Insert audio link"
-msgstr "Audio-Link einfügen"
-
-#: ../../include/conversation.php:1106
-msgid "audio link"
-msgstr "Audio-Link"
-
-#: ../../include/conversation.php:1107 ../../mod/editlayout.php:107
-#: ../../mod/editwebpage.php:150 ../../mod/editpost.php:104
-#: ../../mod/editblock.php:121
-msgid "Set your location"
-msgstr "Standort"
-
-#: ../../include/conversation.php:1108
-msgid "set location"
-msgstr "Standort"
-
-#: ../../include/conversation.php:1109 ../../mod/editlayout.php:108
-#: ../../mod/editwebpage.php:151 ../../mod/editpost.php:105
-#: ../../mod/editblock.php:122
-msgid "Clear browser location"
-msgstr "Browser-Standort löschen"
-
-#: ../../include/conversation.php:1110
-msgid "clear location"
-msgstr "Standort löschen"
-
-#: ../../include/conversation.php:1112 ../../mod/editlayout.php:121
-#: ../../mod/editwebpage.php:168 ../../mod/editpost.php:118
-#: ../../mod/editblock.php:136
-msgid "Set title"
-msgstr "Titel"
-
-#: ../../include/conversation.php:1115 ../../mod/editlayout.php:123
-#: ../../mod/editwebpage.php:170 ../../mod/editpost.php:120
-#: ../../mod/editblock.php:138
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (Kommagetrennte Liste)"
-
-#: ../../include/conversation.php:1117 ../../mod/editlayout.php:110
-#: ../../mod/editwebpage.php:153 ../../mod/editpost.php:107
-#: ../../mod/editblock.php:124
-msgid "Permission settings"
-msgstr "Berechtigungs-Einstellungen"
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
-#: ../../include/conversation.php:1118
-msgid "permissions"
-msgstr "Berechtigungen"
+#: ../../include/enotify.php:180
+#, php-format
+msgid "[Red:Notify] %s posted to your profile wall"
+msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand"
-#: ../../include/conversation.php:1126 ../../mod/editlayout.php:118
-#: ../../mod/editwebpage.php:163 ../../mod/editpost.php:115
-#: ../../mod/editblock.php:133
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: ../../include/enotify.php:182
+#, 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/conversation.php:1128 ../../mod/editlayout.php:124
-#: ../../mod/editwebpage.php:171 ../../mod/editpost.php:121
-#: ../../mod/editblock.php:139
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Beispiel: bob@example.com, mary@example.com"
+#: ../../include/enotify.php:184
+#, 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/conversation.php:1141 ../../mod/message.php:313
-#: ../../mod/message.php:463 ../../mod/editlayout.php:134
-#: ../../mod/editwebpage.php:181 ../../mod/editpost.php:132
-#: ../../mod/editblock.php:149
-msgid "Set expiration date"
-msgstr "Verfallsdatum"
+#: ../../include/enotify.php:208
+#, php-format
+msgid "[Red:Notify] %s tagged you"
+msgstr "[Red Notify] %s hat dich getaggt"
-#: ../../include/conversation.php:1368
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: ../../include/enotify.php:209
+#, php-format
+msgid "%1$s, %2$s tagged you at %3$s"
+msgstr "%1$s, %2$s hat dich auf %3$s getaggt"
-#: ../../include/conversation.php:1371
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortiert"
+#: ../../include/enotify.php:210
+#, 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/conversation.php:1374
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: ../../include/enotify.php:223
+#, php-format
+msgid "[Red:Notify] %1$s poked you"
+msgstr "[Red Notify] %1$s hat dich angestupst"
-#: ../../include/conversation.php:1377
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortiert"
+#: ../../include/enotify.php:224
+#, php-format
+msgid "%1$s, %2$s poked you at %3$s"
+msgstr "%1$s, %2$s hat dich auf %3$s angestubst"
-#: ../../include/conversation.php:1381
-msgid "Personal"
-msgstr "Persönlich"
+#: ../../include/enotify.php:225
+#, 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/conversation.php:1384
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um dich geht"
+#: ../../include/enotify.php:241
+#, php-format
+msgid "[Red:Notify] %s tagged your post"
+msgstr "[Red:Hinweis] %s hat Dich getagged"
-#: ../../include/conversation.php:1387 ../../mod/menu.php:57
-#: ../../mod/connections.php:209
-msgid "New"
-msgstr "Neu"
+#: ../../include/enotify.php:242
+#, php-format
+msgid "%1$s, %2$s tagged your post at %3$s"
+msgstr "%1$s, %2$s hat deinen Beitrag auf %3$s getaggt"
-#: ../../include/conversation.php:1390
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - nach Datum sortiert"
+#: ../../include/enotify.php:243
+#, 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] getaggt"
-#: ../../include/conversation.php:1397
-msgid "Starred"
-msgstr "Markiert"
+#: ../../include/enotify.php:255
+msgid "[Red:Notify] Introduction received"
+msgstr "[Red:Notify] Vorstellung erhalten"
-#: ../../include/conversation.php:1400
-msgid "Favourite Posts"
-msgstr "Beiträge mit Sternchen"
+#: ../../include/enotify.php:256
+#, php-format
+msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
+msgstr "%1$s, du hast eine Vorstellung von „%2$s“ auf %3$s erhalten"
-#: ../../include/conversation.php:1407
-msgid "Spam"
-msgstr "Spam"
+#: ../../include/enotify.php:257
+#, php-format
+msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
+msgstr "%1$s, du hast [zrl=%2$s]eine Vorstellung[/zrl] von %3$s erhalten."
-#: ../../include/conversation.php:1410
-msgid "Posts flagged as SPAM"
-msgstr "Nachrichten die als SPAM markiert wurden"
+#: ../../include/enotify.php:261 ../../include/enotify.php:280
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Du kannst Dir das Profil unter %s ansehen"
-#: ../../include/conversation.php:1440
-msgid "Channel"
-msgstr "Kanal"
+#: ../../include/enotify.php:263
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s um sie anzunehmen oder abzulehnen."
-#: ../../include/conversation.php:1443
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
+#: ../../include/enotify.php:270
+msgid "[Red:Notify] Friend suggestion received"
+msgstr "[Red:Hinweis] Freundschaftsvorschlag erhalten"
-#: ../../include/conversation.php:1447
-msgid "About"
-msgstr "Über"
+#: ../../include/enotify.php:271
+#, php-format
+msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
+msgstr "%1$s, du hast einen Freundschaftsvorschlag von „%2$s“ auf %3$s erhalten"
-#: ../../include/conversation.php:1450
-msgid "Profile Details"
-msgstr "Profil-Details"
+#: ../../include/enotify.php:272
+#, 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 Freundschaftvorschlag[/zrl] für %3$s von %4$s erhalten."
-#: ../../include/conversation.php:1468
-msgid "Events and Calendar"
-msgstr "Veranstaltungen und Kalender"
+#: ../../include/enotify.php:278
+msgid "Name:"
+msgstr "Name:"
-#: ../../include/conversation.php:1473
-msgid "Webpages"
-msgstr "Webseiten"
+#: ../../include/enotify.php:279
+msgid "Photo:"
+msgstr "Foto:"
-#: ../../include/conversation.php:1476
-msgid "Manage Webpages"
-msgstr "Webseiten verwalten"
+#: ../../include/enotify.php:282
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."
#: ../../include/auth.php:69
msgid "Logged out."
@@ -2353,8 +2534,8 @@ msgstr "Verbinden/Folgen"
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Beispiele: Robert Morgenstein, Angeln"
-#: ../../include/contact_widgets.php:24 ../../mod/connections.php:355
-#: ../../mod/directory.php:222 ../../mod/directory.php:227
+#: ../../include/contact_widgets.php:24 ../../mod/directory.php:205
+#: ../../mod/directory.php:210 ../../mod/connections.php:355
msgid "Find"
msgstr "Finde"
@@ -2381,308 +2562,14 @@ msgstr[1] "%d gemeinsame Verbindungen"
msgid "New Page"
msgstr "Neue Seite"
-#: ../../include/text.php:315
-msgid "prev"
-msgstr "vorherige"
-
-#: ../../include/text.php:317
-msgid "first"
-msgstr "erste"
-
-#: ../../include/text.php:346
-msgid "last"
-msgstr "letzte"
-
-#: ../../include/text.php:349
-msgid "next"
-msgstr "nächste"
-
-#: ../../include/text.php:361
-msgid "older"
-msgstr "älter"
-
-#: ../../include/text.php:363
-msgid "newer"
-msgstr "neuer"
-
-#: ../../include/text.php:654
-msgid "No connections"
-msgstr "Keine Verbindungen"
-
-#: ../../include/text.php:665
-#, php-format
-msgid "%d Connection"
-msgid_plural "%d Connections"
-msgstr[0] "%d Verbindung"
-msgstr[1] "%d Verbindungen"
-
-#: ../../include/text.php:677
-msgid "View Connections"
-msgstr "Zeige Verbindungen"
-
-#: ../../include/text.php:790
-msgid "poke"
-msgstr "anstupsen"
-
-#: ../../include/text.php:791
-msgid "ping"
-msgstr "anpingen"
-
-#: ../../include/text.php:791
-msgid "pinged"
-msgstr "pingte"
-
-#: ../../include/text.php:792
-msgid "prod"
-msgstr "knuffen"
-
-#: ../../include/text.php:792
-msgid "prodded"
-msgstr "knuffte"
-
-#: ../../include/text.php:793
-msgid "slap"
-msgstr "ohrfeigen"
-
-#: ../../include/text.php:793
-msgid "slapped"
-msgstr "ohrfeigte"
-
-#: ../../include/text.php:794
-msgid "finger"
-msgstr "befummeln"
-
-#: ../../include/text.php:794
-msgid "fingered"
-msgstr "befummelte"
-
-#: ../../include/text.php:795
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
-
-#: ../../include/text.php:795
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
-
-#: ../../include/text.php:807
-msgid "happy"
-msgstr "glücklich"
-
-#: ../../include/text.php:808
-msgid "sad"
-msgstr "traurig"
-
-#: ../../include/text.php:809
-msgid "mellow"
-msgstr "sanft"
-
-#: ../../include/text.php:810
-msgid "tired"
-msgstr "müde"
-
-#: ../../include/text.php:811
-msgid "perky"
-msgstr "frech"
-
-#: ../../include/text.php:812
-msgid "angry"
-msgstr "sauer"
-
-#: ../../include/text.php:813
-msgid "stupified"
-msgstr "verblüfft"
-
-#: ../../include/text.php:814
-msgid "puzzled"
-msgstr "verwirrt"
-
-#: ../../include/text.php:815
-msgid "interested"
-msgstr "interessiert"
-
-#: ../../include/text.php:816
-msgid "bitter"
-msgstr "verbittert"
-
-#: ../../include/text.php:817
-msgid "cheerful"
-msgstr "fröhlich"
-
-#: ../../include/text.php:818
-msgid "alive"
-msgstr "lebendig"
-
-#: ../../include/text.php:819
-msgid "annoyed"
-msgstr "verärgert"
-
-#: ../../include/text.php:820
-msgid "anxious"
-msgstr "unruhig"
-
-#: ../../include/text.php:821
-msgid "cranky"
-msgstr "schrullig"
-
-#: ../../include/text.php:822
-msgid "disturbed"
-msgstr "verstört"
-
-#: ../../include/text.php:823
-msgid "frustrated"
-msgstr "frustriert"
-
-#: ../../include/text.php:824
-msgid "motivated"
-msgstr "motiviert"
-
-#: ../../include/text.php:825
-msgid "relaxed"
-msgstr "entspannt"
-
-#: ../../include/text.php:826
-msgid "surprised"
-msgstr "überrascht"
-
-#: ../../include/text.php:988
-msgid "Monday"
-msgstr "Montag"
-
-#: ../../include/text.php:988
-msgid "Tuesday"
-msgstr "Dienstag"
-
-#: ../../include/text.php:988
-msgid "Wednesday"
-msgstr "Mittwoch"
-
-#: ../../include/text.php:988
-msgid "Thursday"
-msgstr "Donnerstag"
-
-#: ../../include/text.php:988
-msgid "Friday"
-msgstr "Freitag"
-
-#: ../../include/text.php:988
-msgid "Saturday"
-msgstr "Samstag"
-
-#: ../../include/text.php:988
-msgid "Sunday"
-msgstr "Sonntag"
-
-#: ../../include/text.php:992
-msgid "January"
-msgstr "Januar"
-
-#: ../../include/text.php:992
-msgid "February"
-msgstr "Februar"
-
-#: ../../include/text.php:992
-msgid "March"
-msgstr "März"
-
-#: ../../include/text.php:992
-msgid "April"
-msgstr "April"
-
-#: ../../include/text.php:992
-msgid "May"
-msgstr "Mai"
-
-#: ../../include/text.php:992
-msgid "June"
-msgstr "Juni"
-
-#: ../../include/text.php:992
-msgid "July"
-msgstr "Juli"
-
-#: ../../include/text.php:992
-msgid "August"
-msgstr "August"
-
-#: ../../include/text.php:992
-msgid "September"
-msgstr "September"
-
-#: ../../include/text.php:992
-msgid "October"
-msgstr "Oktober"
-
-#: ../../include/text.php:992
-msgid "November"
-msgstr "November"
-
-#: ../../include/text.php:992
-msgid "December"
-msgstr "Dezember"
-
-#: ../../include/text.php:1070
-msgid "unknown.???"
-msgstr "unbekannt.???"
-
-#: ../../include/text.php:1071
-msgid "bytes"
-msgstr "Bytes"
-
-#: ../../include/text.php:1106
-msgid "remove category"
-msgstr "Kategorie entfernen"
-
-#: ../../include/text.php:1128
-msgid "remove from file"
-msgstr "aus der Datei entfernen"
-
-#: ../../include/text.php:1182 ../../include/text.php:1194
-msgid "Click to open/close"
-msgstr "Klicke zum Öffnen/Schließen"
-
-#: ../../include/text.php:1370 ../../mod/events.php:332
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
-
-#: ../../include/text.php:1389
-msgid "Select a page layout: "
-msgstr "Ein Seiten-Layout auswählen"
-
-#: ../../include/text.php:1392 ../../include/text.php:1457
-msgid "default"
-msgstr "Standard"
-
-#: ../../include/text.php:1428
-msgid "Page content type: "
-msgstr "Content-Typ der Seite"
-
-#: ../../include/text.php:1469
-msgid "Select an alternate language"
-msgstr "Wähle eine alternative Sprache"
-
-#: ../../include/text.php:1634
-msgid "activity"
-msgstr "Aktivität"
-
-#: ../../include/text.php:1896
-msgid "Design"
-msgstr "Design"
-
-#: ../../include/text.php:1898
-msgid "Blocks"
-msgstr "Blöcke"
-
-#: ../../include/text.php:1899
-msgid "Menus"
-msgstr "Menüs"
-
-#: ../../include/text.php:1900
-msgid "Layouts"
-msgstr "Layouts"
-
-#: ../../include/text.php:1901
-msgid "Pages"
-msgstr "Seiten"
+#: ../../include/page_widgets.php:8 ../../include/ItemObject.php:96
+#: ../../mod/thing.php:229 ../../mod/webpages.php:118 ../../mod/menu.php:55
+#: ../../mod/layouts.php:102 ../../mod/filestorage.php:171
+#: ../../mod/settings.php:569 ../../mod/editlayout.php:101
+#: ../../mod/editpost.php:98 ../../mod/blocks.php:93
+#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:115
+msgid "Edit"
+msgstr "Bearbeiten"
#: ../../include/plugin.php:475 ../../include/plugin.php:477
msgid "Click here to upgrade."
@@ -2814,7 +2701,7 @@ msgstr "Sehr fortgeschritten. Bearbeite dies nur, wenn du genau weißt, was du m
msgid "Default"
msgstr "Standard"
-#: ../../include/identity.php:29 ../../mod/item.php:1151
+#: ../../include/identity.php:29 ../../mod/item.php:1143
msgid "Unable to obtain identity information from database"
msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
@@ -2826,272 +2713,421 @@ msgstr "Namensfeld leer"
msgid "Name too long"
msgstr "Name ist zu lang"
-#: ../../include/identity.php:132
+#: ../../include/identity.php:143
msgid "No account identifier"
msgstr "Keine Account-Kennung"
-#: ../../include/identity.php:142
+#: ../../include/identity.php:153
msgid "Nickname is required."
msgstr "Spitzname ist erforderlich."
-#: ../../include/identity.php:156
+#: ../../include/identity.php:167
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:215
+#: ../../include/identity.php:226
msgid "Unable to retrieve created identity"
msgstr "Kann die erstellte Identität nicht empfangen"
-#: ../../include/identity.php:273
+#: ../../include/identity.php:285
msgid "Default Profile"
msgstr "Standard-Profil"
-#: ../../include/identity.php:465
+#: ../../include/identity.php:477
msgid "Requested channel is not available."
msgstr "Angeforderte Kanal nicht verfügbar."
-#: ../../include/identity.php:477
+#: ../../include/identity.php:489
msgid " Sorry, you don't have the permission to view this profile. "
msgstr "Entschuldigung, aber du besitzt nicht die nötigen Rechte um dieses Profil ansehen zu dürfen."
-#: ../../include/identity.php:512 ../../mod/webpages.php:8
+#: ../../include/identity.php:524 ../../mod/webpages.php:8
#: ../../mod/connect.php:13 ../../mod/layouts.php:8
-#: ../../mod/filestorage.php:8 ../../mod/blocks.php:10
-#: ../../mod/profile.php:16
+#: ../../mod/achievements.php:8 ../../mod/filestorage.php:40
+#: ../../mod/blocks.php:10 ../../mod/profile.php:16
msgid "Requested profile is not available."
msgstr "Erwünschte Profil ist nicht verfügbar."
-#: ../../include/identity.php:627 ../../mod/profiles.php:613
+#: ../../include/identity.php:639 ../../mod/profiles.php:615
msgid "Change profile photo"
msgstr "Ändere das Profilfoto"
-#: ../../include/identity.php:633
+#: ../../include/identity.php:645
msgid "Profiles"
msgstr "Profile"
-#: ../../include/identity.php:633
+#: ../../include/identity.php:645
msgid "Manage/edit profiles"
msgstr "Verwalte/Bearbeite Profile"
-#: ../../include/identity.php:634 ../../mod/profiles.php:614
+#: ../../include/identity.php:646 ../../mod/profiles.php:616
msgid "Create New Profile"
msgstr "Neues Profil erstellen"
-#: ../../include/identity.php:637
+#: ../../include/identity.php:649
msgid "Edit Profile"
msgstr "Profile bearbeiten"
-#: ../../include/identity.php:648 ../../mod/profiles.php:625
+#: ../../include/identity.php:660 ../../mod/profiles.php:627
msgid "Profile Image"
msgstr "Profilfoto:"
-#: ../../include/identity.php:651 ../../mod/profiles.php:628
+#: ../../include/identity.php:663 ../../mod/profiles.php:630
msgid "visible to everybody"
msgstr "sichtbar für jeden"
-#: ../../include/identity.php:652 ../../mod/profiles.php:629
+#: ../../include/identity.php:664 ../../mod/profiles.php:631
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
-#: ../../include/identity.php:666 ../../include/identity.php:891
-#: ../../mod/directory.php:174
+#: ../../include/identity.php:678 ../../include/identity.php:903
+#: ../../mod/directory.php:158
msgid "Gender:"
msgstr "Geschlecht:"
-#: ../../include/identity.php:667 ../../include/identity.php:911
-#: ../../mod/directory.php:176
+#: ../../include/identity.php:679 ../../include/identity.php:923
+#: ../../mod/directory.php:160
msgid "Status:"
msgstr "Status:"
-#: ../../include/identity.php:668 ../../include/identity.php:922
-#: ../../mod/directory.php:178
+#: ../../include/identity.php:680 ../../include/identity.php:934
+#: ../../mod/directory.php:162
msgid "Homepage:"
msgstr "Homepage:"
-#: ../../include/identity.php:735 ../../include/identity.php:815
+#: ../../include/identity.php:747 ../../include/identity.php:827
#: ../../mod/ping.php:230
msgid "g A l F d"
msgstr "l, d. F G \\\\U\\\\h\\\\r"
-#: ../../include/identity.php:736 ../../include/identity.php:816
+#: ../../include/identity.php:748 ../../include/identity.php:828
msgid "F d"
msgstr "d. F"
-#: ../../include/identity.php:781 ../../include/identity.php:856
+#: ../../include/identity.php:793 ../../include/identity.php:868
#: ../../mod/ping.php:252
msgid "[today]"
msgstr "[Heute]"
-#: ../../include/identity.php:793
+#: ../../include/identity.php:805
msgid "Birthday Reminders"
msgstr "Geburtstags Erinnerungen"
-#: ../../include/identity.php:794
+#: ../../include/identity.php:806
msgid "Birthdays this week:"
msgstr "Geburtstage in dieser Woche:"
-#: ../../include/identity.php:849
+#: ../../include/identity.php:861
msgid "[No description]"
msgstr "[Keine Beschreibung]"
-#: ../../include/identity.php:867
+#: ../../include/identity.php:879
msgid "Event Reminders"
msgstr "Veranstaltungs- Erinnerungen"
-#: ../../include/identity.php:868
+#: ../../include/identity.php:880
msgid "Events this week:"
msgstr "Veranstaltungen in dieser Woche:"
-#: ../../include/identity.php:881 ../../include/identity.php:992
+#: ../../include/identity.php:893 ../../include/identity.php:975
#: ../../mod/profperm.php:103
msgid "Profile"
msgstr "Profil"
-#: ../../include/identity.php:889 ../../mod/settings.php:911
+#: ../../include/identity.php:901 ../../mod/settings.php:911
msgid "Full Name:"
msgstr "Voller Name:"
-#: ../../include/identity.php:896
+#: ../../include/identity.php:908
msgid "j F, Y"
msgstr "j F, Y"
-#: ../../include/identity.php:897
+#: ../../include/identity.php:909
msgid "j F"
msgstr "j F"
-#: ../../include/identity.php:904
+#: ../../include/identity.php:916
msgid "Birthday:"
msgstr "Geburtstag:"
-#: ../../include/identity.php:908
+#: ../../include/identity.php:920
msgid "Age:"
msgstr "Alter:"
-#: ../../include/identity.php:917
+#: ../../include/identity.php:929
#, php-format
msgid "for %1$d %2$s"
msgstr "für %1$d %2$s"
-#: ../../include/identity.php:920 ../../mod/profiles.php:538
+#: ../../include/identity.php:932 ../../mod/profiles.php:538
msgid "Sexual Preference:"
msgstr "Sexuelle Orientierung:"
-#: ../../include/identity.php:924 ../../mod/profiles.php:540
+#: ../../include/identity.php:936 ../../mod/profiles.php:540
msgid "Hometown:"
msgstr "Heimatstadt:"
-#: ../../include/identity.php:926
+#: ../../include/identity.php:938
msgid "Tags:"
msgstr "Schlagworte:"
-#: ../../include/identity.php:928 ../../mod/profiles.php:541
+#: ../../include/identity.php:940 ../../mod/profiles.php:541
msgid "Political Views:"
msgstr "Politische Ansichten:"
-#: ../../include/identity.php:930
+#: ../../include/identity.php:942
msgid "Religion:"
msgstr "Religion:"
-#: ../../include/identity.php:932 ../../mod/directory.php:180
+#: ../../include/identity.php:944 ../../mod/directory.php:164
msgid "About:"
msgstr "Über:"
-#: ../../include/identity.php:934
+#: ../../include/identity.php:946
msgid "Hobbies/Interests:"
msgstr "Hobbys/Interessen:"
-#: ../../include/identity.php:936 ../../mod/profiles.php:544
+#: ../../include/identity.php:948 ../../mod/profiles.php:544
msgid "Likes:"
msgstr "Gefällt-mir:"
-#: ../../include/identity.php:938 ../../mod/profiles.php:545
+#: ../../include/identity.php:950 ../../mod/profiles.php:545
msgid "Dislikes:"
msgstr "Gefällt-mir-nicht:"
-#: ../../include/identity.php:941
+#: ../../include/identity.php:953
msgid "Contact information and Social Networks:"
msgstr "Kontaktinformation und soziale Netzwerke:"
-#: ../../include/identity.php:943
+#: ../../include/identity.php:955
msgid "Musical interests:"
msgstr "Musikalische Interessen:"
-#: ../../include/identity.php:945
+#: ../../include/identity.php:957
msgid "Books, literature:"
msgstr "Bücher, Literatur:"
-#: ../../include/identity.php:947
+#: ../../include/identity.php:959
msgid "Television:"
msgstr "Fernsehen:"
-#: ../../include/identity.php:949
+#: ../../include/identity.php:961
msgid "Film/dance/culture/entertainment:"
msgstr "Film/Tanz/Kultur/Unterhaltung:"
-#: ../../include/identity.php:951
+#: ../../include/identity.php:963
msgid "Love/Romance:"
msgstr "Liebe/Romantik:"
-#: ../../include/identity.php:953
+#: ../../include/identity.php:965
msgid "Work/employment:"
msgstr "Arbeit/Anstellung:"
-#: ../../include/identity.php:955
+#: ../../include/identity.php:967
msgid "School/education:"
msgstr "Schule/Ausbildung:"
-#: ../../include/security.php:49
-msgid "Welcome "
-msgstr "Willkommen"
-
-#: ../../include/security.php:50
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilfoto hoch."
-
-#: ../../include/security.php:53
-msgid "Welcome back "
-msgstr "Willkommen zurück"
-
-#: ../../include/security.php:360
-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/items.php:201 ../../mod/like.php:55 ../../mod/group.php:68
-#: ../../mod/profperm.php:19 ../../index.php:345
+#: ../../mod/profperm.php:19 ../../index.php:343
msgid "Permission denied"
msgstr "Keine Berechtigung"
-#: ../../include/items.php:3375 ../../mod/admin.php:150
+#: ../../include/items.php:3383 ../../mod/thing.php:74 ../../mod/admin.php:150
#: ../../mod/admin.php:730 ../../mod/admin.php:933 ../../mod/viewsrc.php:18
-#: ../../mod/home.php:63 ../../mod/display.php:32
+#: ../../mod/home.php:63 ../../mod/filestorage.php:18 ../../mod/display.php:32
+#: ../../mod/channel.php:182
msgid "Item not found."
msgstr "Element nicht gefunden."
-#: ../../include/items.php:3726 ../../mod/group.php:38 ../../mod/group.php:140
+#: ../../include/items.php:3734 ../../mod/group.php:38 ../../mod/group.php:140
msgid "Collection not found."
msgstr "Sammlung nicht gefunden"
-#: ../../include/items.php:3741
+#: ../../include/items.php:3749
msgid "Collection is empty."
msgstr "Sammlung ist leer."
-#: ../../include/items.php:3748
+#: ../../include/items.php:3756
#, php-format
msgid "Collection: %s"
msgstr "Sammlung: %s"
-#: ../../include/items.php:3759
+#: ../../include/items.php:3767
#, php-format
msgid "Connection: %s"
msgstr "Verbindung: %s"
-#: ../../include/items.php:3762
+#: ../../include/items.php:3770
msgid "Connection not found."
msgstr "Die Verbindung wurde nicht gefunden."
+#: ../../include/ItemObject.php:89 ../../mod/photos.php:972
+msgid "Private Message"
+msgstr "Private Nachricht"
+
+#: ../../include/ItemObject.php:118
+msgid "save to folder"
+msgstr "In Ordner speichern"
+
+#: ../../include/ItemObject.php:146
+msgid "add star"
+msgstr "markieren"
+
+#: ../../include/ItemObject.php:147
+msgid "remove star"
+msgstr "Markierung entfernen"
+
+#: ../../include/ItemObject.php:148
+msgid "toggle star status"
+msgstr "Stern-Status umschalten"
+
+#: ../../include/ItemObject.php:152
+msgid "starred"
+msgstr "markiert"
+
+#: ../../include/ItemObject.php:169
+msgid "add tag"
+msgstr "Schlagwort hinzufügen"
+
+#: ../../include/ItemObject.php:175 ../../mod/photos.php:1078
+msgid "I like this (toggle)"
+msgstr "Ich mag das (Umschalter)"
+
+#: ../../include/ItemObject.php:176 ../../mod/photos.php:1079
+msgid "I don't like this (toggle)"
+msgstr "Ich mag das nicht (Umschalter)"
+
+#: ../../include/ItemObject.php:178
+msgid "Share this"
+msgstr "Teile dies"
+
+#: ../../include/ItemObject.php:178
+msgid "share"
+msgstr "Teilen"
+
+#: ../../include/ItemObject.php:202 ../../include/ItemObject.php:203
+#, php-format
+msgid "View %s's profile - %s"
+msgstr "Schaue dir %s's Profil an - %s"
+
+#: ../../include/ItemObject.php:204
+msgid "to"
+msgstr "zu"
+
+#: ../../include/ItemObject.php:205
+msgid "via"
+msgstr "via"
+
+#: ../../include/ItemObject.php:206
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
+
+#: ../../include/ItemObject.php:207
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
+
+#: ../../include/ItemObject.php:221
+#, php-format
+msgid "Expires: %s"
+msgstr "Verfällt: %s"
+
+#: ../../include/ItemObject.php:269
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
+
+#: ../../include/ItemObject.php:534 ../../mod/photos.php:1097
+#: ../../mod/photos.php:1184
+msgid "This is you"
+msgstr "Das bist du"
+
+#: ../../include/ItemObject.php:537 ../../mod/events.php:470
+#: ../../mod/thing.php:276 ../../mod/thing.php:318 ../../mod/invite.php:156
+#: ../../mod/connedit.php:434 ../../mod/setup.php:304 ../../mod/setup.php:347
+#: ../../mod/connect.php:92 ../../mod/sources.php:97 ../../mod/sources.php:131
+#: ../../mod/admin.php:420 ../../mod/admin.php:686 ../../mod/admin.php:826
+#: ../../mod/admin.php:1025 ../../mod/admin.php:1112 ../../mod/group.php:81
+#: ../../mod/photos.php:693 ../../mod/photos.php:798 ../../mod/photos.php:1060
+#: ../../mod/photos.php:1100 ../../mod/photos.php:1187
+#: ../../mod/profiles.php:518 ../../mod/filestorage.php:132
+#: ../../mod/import.php:387 ../../mod/settings.php:507
+#: ../../mod/settings.php:619 ../../mod/settings.php:647
+#: ../../mod/settings.php:671 ../../mod/settings.php:742
+#: ../../mod/settings.php:903 ../../mod/mail.php:223 ../../mod/mail.php:335
+#: ../../mod/poke.php:166 ../../mod/fsuggest.php:108 ../../mod/mood.php:142
+#: ../../view/theme/redbasic/php/config.php:85
+#: ../../view/theme/apw/php/config.php:231
+#: ../../view/theme/blogga/view/theme/blog/config.php:67
+#: ../../view/theme/blogga/php/config.php:67
+msgid "Submit"
+msgstr "Bestätigen"
+
+#: ../../include/ItemObject.php:538
+msgid "Bold"
+msgstr "Fett"
+
+#: ../../include/ItemObject.php:539
+msgid "Italic"
+msgstr "Kursiv"
+
+#: ../../include/ItemObject.php:540
+msgid "Underline"
+msgstr "Unterstrichen"
+
+#: ../../include/ItemObject.php:541
+msgid "Quote"
+msgstr "Zitat"
+
+#: ../../include/ItemObject.php:542
+msgid "Code"
+msgstr "Code"
+
+#: ../../include/ItemObject.php:543
+msgid "Image"
+msgstr "Bild"
+
+#: ../../include/ItemObject.php:544
+msgid "Link"
+msgstr "Link"
+
+#: ../../include/ItemObject.php:545
+msgid "Video"
+msgstr "Video"
+
+#: ../../include/security.php:49
+msgid "Welcome "
+msgstr "Willkommen"
+
+#: ../../include/security.php:50
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilfoto hoch."
+
+#: ../../include/security.php:53
+msgid "Welcome back "
+msgstr "Willkommen zurück"
+
+#: ../../include/security.php:360
+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/zot.php:545
+msgid "Invalid data packet"
+msgstr "Ungültiges Datenpaket"
+
+#: ../../include/zot.php:555
+msgid "Unable to verify channel signature"
+msgstr "Konnte die Signatur des Kanals nicht verifizieren"
+
+#: ../../include/zot.php:732
+#, php-format
+msgid "Unable to verify site signature for %s"
+msgstr "Kann die Signatur der Seite von %s nicht verifizieren"
+
#: ../../mod/common.php:10
msgid "No channel."
msgstr "Kein Channel."
@@ -3124,7 +3160,7 @@ msgstr "Neue Veranstaltung erstellen"
msgid "Previous"
msgstr "Voriges"
-#: ../../mod/events.php:357 ../../mod/setup.php:256
+#: ../../mod/events.php:357 ../../mod/setup.php:258
msgid "Next"
msgstr "Nächste"
@@ -3173,119 +3209,130 @@ msgstr "Titel:"
msgid "Share this event"
msgstr "Die Veranstaltung teilen"
-#: ../../mod/thing.php:109
+#: ../../mod/thing.php:94
+msgid "Thing updated"
+msgstr "Ding aktualisiert"
+
+#: ../../mod/thing.php:153
msgid "Object store: failed"
msgstr "Speichern des Objekts fehlgeschlagen"
-#: ../../mod/thing.php:113
-msgid "thing/stuff added"
-msgstr "Ding/Zeugs hinzugefügt"
+#: ../../mod/thing.php:157
+msgid "Thing added"
+msgstr "Ding hinzugefügt"
-#: ../../mod/thing.php:129
+#: ../../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:175
-msgid "not yet implemented."
-msgstr "noch nicht eingebaut."
+#: ../../mod/thing.php:228
+msgid "Show Thing"
+msgstr "Ding anzeigen"
-#: ../../mod/thing.php:181
-msgid "Add Stuff to your Profile"
-msgstr "Füge Sachen zu deinem Profil hinzu"
+#: ../../mod/thing.php:235
+msgid "item not found."
+msgstr "Eintrag nicht gefunden"
-#: ../../mod/thing.php:183
+#: ../../mod/thing.php:263
+msgid "Edit Thing"
+msgstr "Ding bearbeiten"
+
+#: ../../mod/thing.php:265 ../../mod/thing.php:311
msgid "Select a profile"
msgstr "Wähle ein Profil"
-#: ../../mod/thing.php:185
+#: ../../mod/thing.php:267 ../../mod/thing.php:313
msgid "Select a category of stuff. e.g. I ______ something"
msgstr "Wähle eine Kategorie für das Zeugs, z.B. Ich ______ etwas"
-#: ../../mod/thing.php:187
-msgid "Name of thing or stuff e.g. something"
-msgstr "Name des Dings/Zeugs, z.B. etwas"
+#: ../../mod/thing.php:270 ../../mod/thing.php:315
+msgid "Name of thing e.g. something"
+msgstr "Name des Dings, z.B. Etwas"
+
+#: ../../mod/thing.php:272 ../../mod/thing.php:316
+msgid "URL of thing (optional)"
+msgstr "URL des Dings (optional)"
-#: ../../mod/thing.php:188
-msgid "URL of thing or stuff (optional)"
-msgstr "URL des Dings oder Zeugs (optional)"
+#: ../../mod/thing.php:274 ../../mod/thing.php:317
+msgid "URL for photo of thing (optional)"
+msgstr "URL eines Fotos von dem Ding (optional)"
-#: ../../mod/thing.php:189
-msgid "URL for photo of thing or stuff (optional)"
-msgstr "URL eines Fotos von dem Ding oder Zeugs (optional)"
+#: ../../mod/thing.php:309
+msgid "Add Thing to your Profile"
+msgstr "Das Ding deinem Profil hinzufügen"
#: ../../mod/invite.php:25
msgid "Total invitation limit exceeded."
msgstr "Limit der maximalen Einladungen überschritten."
-#: ../../mod/invite.php:47
+#: ../../mod/invite.php:49
#, php-format
msgid "%s : Not a valid email address."
msgstr "%s : Keine gültige Email Adresse."
-#: ../../mod/invite.php:74
+#: ../../mod/invite.php:76
msgid "Please join us on Red"
msgstr "Bitte schließe Dich uns an und werde Teil der Red Matrix"
-#: ../../mod/invite.php:85
+#: ../../mod/invite.php:87
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator deiner Seite."
-#: ../../mod/invite.php:90
+#: ../../mod/invite.php:92
#, php-format
msgid "%s : Message delivery failed."
msgstr "%s : Nachricht konnte nicht zugestellt werden."
-#: ../../mod/invite.php:94
+#: ../../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:113
+#: ../../mod/invite.php:115
msgid "You have no more invitations available"
msgstr "Du hast keine weiteren verfügbare Einladungen"
-#: ../../mod/invite.php:139
+#: ../../mod/invite.php:141
msgid "Send invitations"
msgstr "Einladungen senden"
-#: ../../mod/invite.php:140
+#: ../../mod/invite.php:142
msgid "Enter email addresses, one per line:"
msgstr "Email-Adressen eintragen, eine pro Zeile:"
-#: ../../mod/invite.php:141 ../../mod/message.php:303
-#: ../../mod/message.php:452
+#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328
msgid "Your message:"
msgstr "Deine Nachricht:"
-#: ../../mod/invite.php:142
+#: ../../mod/invite.php:144
msgid ""
"You are cordially invited to join me and some other close friends on the Red"
" Matrix - a revolutionary new decentralised communication and information "
"tool."
msgstr "Du bist herzlich eingeladen, mir und einigen anderen guten Freunden in die Red-Matrix zu folgen – einem revolutionär neuen, dezentralisierten Kommunikations- und Informationsnetzwerk."
-#: ../../mod/invite.php:144
+#: ../../mod/invite.php:146
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Du musst dann den folgenden Einladungs-Code angeben: $invite_code"
-#: ../../mod/invite.php:145
+#: ../../mod/invite.php:147
msgid "Please visit my channel at"
msgstr "Bitte besuche meinen Kanal auf"
-#: ../../mod/invite.php:149
+#: ../../mod/invite.php:151
msgid ""
"Once you have registered (on ANY Red Matrix site - they are all inter-"
"connected), please connect with my Red Matrix channel address:"
msgstr "Wenn du dich registriert hast (egal auf welcher Seite in der Red Matrix, sie sind alle miteinander verbunden) verbinde dich bitte mit meinem Kanal in der Matrix. Adresse:"
-#: ../../mod/invite.php:151
+#: ../../mod/invite.php:153
msgid "Click the [Register] link on the following page to join."
msgstr "Klicke den [Registrieren]-Link auf der nächsten Seite, um dich anzumelden."
-#: ../../mod/invite.php:153
+#: ../../mod/invite.php:155
msgid ""
"For more information about the Red Matrix Project and why it has the "
"potential to change the internet as we know it, please visit "
@@ -3667,7 +3714,7 @@ msgid "Channel not found."
msgstr "Kanal nicht gefunden."
#: ../../mod/page.php:83 ../../mod/help.php:71 ../../mod/display.php:100
-#: ../../index.php:229
+#: ../../index.php:227
msgid "Page not found."
msgstr "Seite nicht gefunden."
@@ -3703,308 +3750,318 @@ msgid ""
"phpmyadmin or mysql."
msgstr "Eventuell musst du die Datei \"install/database.sql\" händisch mit phpmyadmin oder mysql importieren."
-#: ../../mod/setup.php:188 ../../mod/setup.php:255 ../../mod/setup.php:586
+#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:606
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Lies die Datei \"install/INSTALL.txt\"."
-#: ../../mod/setup.php:252
+#: ../../mod/setup.php:254
msgid "System check"
msgstr "Systemprüfung"
-#: ../../mod/setup.php:257
+#: ../../mod/setup.php:259
msgid "Check again"
msgstr "Bitte nochmal prüfen"
-#: ../../mod/setup.php:279
+#: ../../mod/setup.php:281
msgid "Database connection"
msgstr "Datenbank Verbindung"
-#: ../../mod/setup.php:280
+#: ../../mod/setup.php:282
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 deine Datenbank kontaktieren können."
-#: ../../mod/setup.php:281
+#: ../../mod/setup.php:283
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Bitte kontaktiere deinen Hosting Provider oder den Administrator der Seite wenn du Fragen zu diesen Einstellungen haben solltest."
-#: ../../mod/setup.php:282
+#: ../../mod/setup.php:284
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:286
+#: ../../mod/setup.php:288
msgid "Database Server Name"
msgstr "Datenbank-Servername"
-#: ../../mod/setup.php:286
+#: ../../mod/setup.php:288
msgid "Default is localhost"
msgstr "Standard ist localhost"
-#: ../../mod/setup.php:287
+#: ../../mod/setup.php:289
msgid "Database Port"
msgstr "Datenbank-Port"
-#: ../../mod/setup.php:287
+#: ../../mod/setup.php:289
msgid "Communication port number - use 0 for default"
msgstr "Port Nummer zur Kommunikation - verwende 0 für die Standardeinstellung:"
-#: ../../mod/setup.php:288
+#: ../../mod/setup.php:290
msgid "Database Login Name"
msgstr "Datenbank-Benutzername"
-#: ../../mod/setup.php:289
+#: ../../mod/setup.php:291
msgid "Database Login Password"
msgstr "Datenbank-Kennwort"
-#: ../../mod/setup.php:290
+#: ../../mod/setup.php:292
msgid "Database Name"
msgstr "Datenbank-Name"
-#: ../../mod/setup.php:292 ../../mod/setup.php:334
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
msgid "Site administrator email address"
msgstr "E-Mail Adresse des Seiten-Administrators"
-#: ../../mod/setup.php:292 ../../mod/setup.php:334
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Die Email-Adresse deines Accounts muss dieser Adresse entsprechen, damit du Zugriff zum Admin Panel erhältst."
-#: ../../mod/setup.php:293 ../../mod/setup.php:336
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
msgid "Website URL"
msgstr "Webseiten URL"
-#: ../../mod/setup.php:293 ../../mod/setup.php:336
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
msgid "Please use SSL (https) URL if available."
msgstr "Nutze wenn möglich eine SSL-URL (https)."
-#: ../../mod/setup.php:296 ../../mod/setup.php:339
+#: ../../mod/setup.php:298 ../../mod/setup.php:341
msgid "Please select a default timezone for your website"
msgstr "Standard-Zeitzone für deine Website"
-#: ../../mod/setup.php:323
+#: ../../mod/setup.php:325
msgid "Site settings"
msgstr "Seiteneinstellungen"
-#: ../../mod/setup.php:379
+#: ../../mod/setup.php:381
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 Servers finden."
-#: ../../mod/setup.php:380
+#: ../../mod/setup.php:382
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 "Solltest du keine Kommandozeilen Version von PHP auf dem Server installiert haben wirst du nicht in der Lage sein Hintergrundprozesse via cron auszuführen."
-#: ../../mod/setup.php:384
+#: ../../mod/setup.php:386
msgid "PHP executable path"
msgstr "PHP Pfad zu ausführbarer Datei"
-#: ../../mod/setup.php:384
+#: ../../mod/setup.php:386
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 Felds frei lassen und mit der Installation fortfahren."
-#: ../../mod/setup.php:389
+#: ../../mod/setup.php:391
msgid "Command line PHP"
msgstr "PHP Befehlszeile"
-#: ../../mod/setup.php:398
+#: ../../mod/setup.php:400
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Die Kommandozeilen Version von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."
-#: ../../mod/setup.php:399
+#: ../../mod/setup.php:401
msgid "This is required for message delivery to work."
msgstr "Dies wird benötigt, damit die Auslieferung von Nachrichten funktioniert."
-#: ../../mod/setup.php:401
+#: ../../mod/setup.php:403
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
-#: ../../mod/setup.php:422
+#: ../../mod/setup.php:424
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:423
+#: ../../mod/setup.php:425
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Wenn du Windows verwendest, siehe http://www.php.net/manual/en/openssl.installation.php für eine Installationsanleitung."
-#: ../../mod/setup.php:425
+#: ../../mod/setup.php:427
msgid "Generate encryption keys"
msgstr "Verschlüsselungsschlüssel generieren"
-#: ../../mod/setup.php:432
+#: ../../mod/setup.php:434
msgid "libCurl PHP module"
msgstr "libCurl PHP Modul"
-#: ../../mod/setup.php:433
+#: ../../mod/setup.php:435
msgid "GD graphics PHP module"
msgstr "GD Graphik PHP Modul"
-#: ../../mod/setup.php:434
+#: ../../mod/setup.php:436
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP Modul"
-#: ../../mod/setup.php:435
+#: ../../mod/setup.php:437
msgid "mysqli PHP module"
msgstr "mysqli PHP Modul"
-#: ../../mod/setup.php:436
+#: ../../mod/setup.php:438
msgid "mb_string PHP module"
msgstr "mb_string PHP Modul"
-#: ../../mod/setup.php:437
+#: ../../mod/setup.php:439
msgid "mcrypt PHP module"
msgstr "mcrypt PHP Modul"
-#: ../../mod/setup.php:442 ../../mod/setup.php:444
+#: ../../mod/setup.php:444 ../../mod/setup.php:446
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite Modul"
-#: ../../mod/setup.php:442
+#: ../../mod/setup.php:444
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:448 ../../mod/setup.php:451
+#: ../../mod/setup.php:450 ../../mod/setup.php:453
msgid "proc_open"
msgstr "proc_open"
-#: ../../mod/setup.php:448
+#: ../../mod/setup.php:450
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:456
+#: ../../mod/setup.php:458
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:460
+#: ../../mod/setup.php:462
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:464
+#: ../../mod/setup.php:466
msgid "Error: openssl PHP module required but not installed."
msgstr "Fehler: das OpenSSL PHP Modul wird benötigt ist aber nicht installiert."
-#: ../../mod/setup.php:468
+#: ../../mod/setup.php:470
msgid "Error: mysqli PHP module required but not installed."
msgstr "Fehler: das PHP Modul mysqli wird benötigt ist aber nicht installiert."
-#: ../../mod/setup.php:472
+#: ../../mod/setup.php:474
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:476
+#: ../../mod/setup.php:478
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:492
+#: ../../mod/setup.php:494
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 es aber nicht."
-#: ../../mod/setup.php:493
+#: ../../mod/setup.php:495
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 dies daran, dass der Nutzer unter dem der Web-Server läuft keine Rechte zum Schreiben in dem Verzeichnis hat - selbst wenn du das kannst."
-#: ../../mod/setup.php:494
+#: ../../mod/setup.php:496
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 des Vorgangs wird ein Text generiert, den du unter dem Dateinamen .htconfig.php im Stammverzeichnis deiner Red Installation speichern."
-#: ../../mod/setup.php:495
+#: ../../mod/setup.php:497
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:498
+#: ../../mod/setup.php:500
msgid ".htconfig.php is writable"
msgstr ".htconfig.php ist beschreibbar"
-#: ../../mod/setup.php:508
+#: ../../mod/setup.php:510
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:509
+#: ../../mod/setup.php:511
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/tpl/smarty3/ under the Red top level "
"folder."
msgstr "Um die übersetzten Vorlagen speichern zu können muss der Webserver schreib Zugriff auf das Verzeichnis view/tpl/smarty3/ unterhalb des Red Stammverzeichnisses haben."
-#: ../../mod/setup.php:510
+#: ../../mod/setup.php:512 ../../mod/setup.php:530
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Zugriff zum Schreiben auf dieses Verzeichnis hat."
-#: ../../mod/setup.php:511
+#: ../../mod/setup.php:513
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/tpl/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Hinweis: Als Sicherheitsvorkehrung solltest du dem Webserver nur Schreib-Zugriff auf das Verzeichnis view/tpl/smarty3 geben, nicht dem Vorlagen (.tpl) die in diesem Verzeichnis liegen."
-#: ../../mod/setup.php:514
+#: ../../mod/setup.php:516
msgid "view/tpl/smarty3 is writable"
msgstr "view/tpl/smarty3 ist beschreibbar"
-#: ../../mod/setup.php:528
+#: ../../mod/setup.php:529
+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 store Verzeichnis um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red Stammverzeichnis."
+
+#: ../../mod/setup.php:533
+msgid "store is writable"
+msgstr "store ist schreibbar"
+
+#: ../../mod/setup.php:548
msgid "SSL certificate validation"
msgstr "SSL Zertifikatverifizierung"
-#: ../../mod/setup.php:528
+#: ../../mod/setup.php:548
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 schalte HTTPS ab um auf diese Seite zuzugreifen."
-#: ../../mod/setup.php:535
+#: ../../mod/setup.php:555
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr "URL rewrite funktioniert in der .htaccess nicht. Überprüfe deine Server-Konfiguration."
-#: ../../mod/setup.php:537
+#: ../../mod/setup.php:557
msgid "Url rewrite is working"
msgstr "Url rewrite funktioniert"
-#: ../../mod/setup.php:547
+#: ../../mod/setup.php:567
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:571
+#: ../../mod/setup.php:591
msgid "Errors encountered creating database tables."
msgstr "Fehler während des Anlegens der Datenbank Tabellen aufgetreten."
-#: ../../mod/setup.php:584
+#: ../../mod/setup.php:604
msgid "<h1>What next</h1>"
msgstr "<h1>Was als Nächstes</h1>"
-#: ../../mod/setup.php:585
+#: ../../mod/setup.php:605
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
@@ -4034,9 +4091,9 @@ msgstr "auf Vollbildmodus umschalten"
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s hat %2$s's %3$s mit %4$s getaggt"
-#: ../../mod/viewconnections.php:17 ../../mod/search.php:80
-#: ../../mod/photos.php:570 ../../mod/display.php:9 ../../mod/community.php:18
-#: ../../mod/directory.php:31
+#: ../../mod/viewconnections.php:17 ../../mod/search.php:12
+#: ../../mod/photos.php:573 ../../mod/directory.php:15 ../../mod/display.php:9
+#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
msgid "Public access denied."
msgstr "Öffentlicher Zugang verweigert."
@@ -4053,12 +4110,6 @@ msgstr "Besuche %s's Profil [%s]"
msgid "View Connnections"
msgstr "Zeige Verbindungen"
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/settings.php:508
-#: ../../mod/settings.php:534 ../../mod/fbrowser.php:82
-#: ../../mod/fbrowser.php:117
-msgid "Cancel"
-msgstr "Abbrechen"
-
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr "Schlagwort entfernt"
@@ -4075,46 +4126,46 @@ msgstr "Schlagwort zum entfernen auswählen:"
msgid "Remove"
msgstr "Entferne"
-#: ../../mod/connect.php:59 ../../mod/connect.php:107
+#: ../../mod/connect.php:55 ../../mod/connect.php:103
msgid "Continue"
msgstr "Fortfahren"
-#: ../../mod/connect.php:88
+#: ../../mod/connect.php:84
msgid "Premium Channel Setup"
msgstr "Prämium-Kanal Einrichtung"
-#: ../../mod/connect.php:90
+#: ../../mod/connect.php:86
msgid "Enable premium channel connection restrictions"
msgstr "Einschränkungen für den Prämium-Kanal aktivieren"
-#: ../../mod/connect.php:91
+#: ../../mod/connect.php:87
msgid ""
"Please enter your restrictions or conditions, such as paypal receipt, usage "
"guidelines, etc."
msgstr "Bitte gib deine Nutzungseinschränkungen ein, z.B. Paypal Quittung, Nutzungsbestimmungen etc."
-#: ../../mod/connect.php:93 ../../mod/connect.php:113
+#: ../../mod/connect.php:89 ../../mod/connect.php:109
msgid ""
"This channel may require additional steps or acknowledgement of the "
"following conditions prior to connecting:"
msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen, vor dem Verbinden mit diesem Kanal nötig."
-#: ../../mod/connect.php:94
+#: ../../mod/connect.php:90
msgid ""
"Potential connections will then see the following text before proceeding:"
msgstr "Potentielle Verbindungen werden den folgenden Text sehen bevor fortgefahren wird:"
-#: ../../mod/connect.php:95 ../../mod/connect.php:116
+#: ../../mod/connect.php:91 ../../mod/connect.php:112
msgid ""
"By continuing, I certify that I have complied with any instructions provided"
" on this page."
msgstr "Mit dem fortfahren bestätige ich die Erfüllung aller Anweisungen die vom Seitenbetreiber erteilt wurden."
-#: ../../mod/connect.php:104
+#: ../../mod/connect.php:100
msgid "(No specific instructions have been provided by the channel owner.)"
msgstr "(Der Seitenbetreiber hat keine speziellen Anweisungen für Kanal-Betreiber hinterlegt.)"
-#: ../../mod/connect.php:112
+#: ../../mod/connect.php:108
msgid "Restricted or Premium Channel"
msgstr "Eingeschränkter oder Prämium-Kanal"
@@ -4322,7 +4373,7 @@ msgstr "Kostenloser Zugang"
msgid "Tiered Access"
msgstr "Abgestufter Zugang"
-#: ../../mod/admin.php:421 ../../mod/register.php:180
+#: ../../mod/admin.php:421 ../../mod/register.php:189
msgid "Registration"
msgstr "Registrierung"
@@ -4760,102 +4811,103 @@ msgid "Unable to add menu element."
msgstr "Kann Menü-Bestandteil nicht hinzufügen."
#: ../../mod/mitem.php:78 ../../mod/xchan.php:25 ../../mod/menu.php:113
+#: ../../mod/dirprofile.php:176
msgid "Not found."
msgstr "Nicht gefunden."
-#: ../../mod/mitem.php:99
+#: ../../mod/mitem.php:96
msgid "Manage Menu Elements"
msgstr "Menü-Bestandteile verwalten"
-#: ../../mod/mitem.php:102
+#: ../../mod/mitem.php:99
msgid "Edit menu"
msgstr "Menü bearbeiten"
-#: ../../mod/mitem.php:105
+#: ../../mod/mitem.php:102
msgid "Edit element"
msgstr "Bestandteil bearbeiten"
-#: ../../mod/mitem.php:106
+#: ../../mod/mitem.php:103
msgid "Drop element"
msgstr "Bestandteil löschen"
-#: ../../mod/mitem.php:107
+#: ../../mod/mitem.php:104
msgid "New element"
msgstr "Neues Bestandteil"
-#: ../../mod/mitem.php:108
+#: ../../mod/mitem.php:105
msgid "Edit this menu container"
msgstr "Diesen Menü-Container bearbeiten"
-#: ../../mod/mitem.php:109
+#: ../../mod/mitem.php:106
msgid "Add menu element"
msgstr "Menüelement hinzufügen"
-#: ../../mod/mitem.php:110
+#: ../../mod/mitem.php:107
msgid "Delete this menu item"
msgstr "Lösche dieses Menü-Bestandteil"
-#: ../../mod/mitem.php:111
+#: ../../mod/mitem.php:108
msgid "Edit this menu item"
msgstr "Bearbeite dieses Menü-Bestandteil"
-#: ../../mod/mitem.php:134
+#: ../../mod/mitem.php:131
msgid "New Menu Element"
msgstr "Neues Menü-Bestandteil"
-#: ../../mod/mitem.php:136 ../../mod/mitem.php:179
+#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
msgid "Menu Item Permissions"
msgstr "Menü-Element Zugriffsrechte"
-#: ../../mod/mitem.php:137 ../../mod/mitem.php:180 ../../mod/settings.php:930
+#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:930
msgid "(click to open/close)"
msgstr "(zum öffnen/schließen anklicken)"
-#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
msgid "Link text"
msgstr "Link Text"
-#: ../../mod/mitem.php:140 ../../mod/mitem.php:184
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
msgid "URL of link"
msgstr "URL des Links"
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
msgid "Use Red magic-auth if available"
msgstr "Verwende Red Magic-Auth wenn verfügbar"
-#: ../../mod/mitem.php:142 ../../mod/mitem.php:186
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
msgid "Open link in new window"
msgstr "Öffne Link in neuem Fenster"
-#: ../../mod/mitem.php:144 ../../mod/mitem.php:188
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
msgid "Order in list"
msgstr "Reihenfolge in der Liste"
-#: ../../mod/mitem.php:144 ../../mod/mitem.php:188
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
msgid "Higher numbers will sink to bottom of listing"
msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert"
-#: ../../mod/mitem.php:145 ../../mod/menu.php:79 ../../mod/new_channel.php:117
+#: ../../mod/mitem.php:142 ../../mod/menu.php:79 ../../mod/new_channel.php:117
msgid "Create"
msgstr "Erstelle"
-#: ../../mod/mitem.php:157
+#: ../../mod/mitem.php:154
msgid "Menu item not found."
msgstr "Menü-Bestandteil nicht gefunden."
-#: ../../mod/mitem.php:166
+#: ../../mod/mitem.php:163
msgid "Menu item deleted."
msgstr "Menü-Bestandteil gelöscht."
-#: ../../mod/mitem.php:168
+#: ../../mod/mitem.php:165
msgid "Menu item could not be deleted."
msgstr "Menü-Bestandteil kann nicht gelöscht werden."
-#: ../../mod/mitem.php:177
+#: ../../mod/mitem.php:174
msgid "Edit Menu Element"
msgstr "Bearbeite Menü-Bestandteil"
-#: ../../mod/mitem.php:189 ../../mod/menu.php:107
+#: ../../mod/mitem.php:186 ../../mod/menu.php:107
msgid "Modify"
msgstr "Ändern"
@@ -4915,147 +4967,136 @@ msgstr "Informationen über den Betreiber der Seite konnten nicht gefunden werde
msgid "Album not found."
msgstr "Album nicht gefunden."
-#: ../../mod/photos.php:119 ../../mod/photos.php:787
+#: ../../mod/photos.php:119 ../../mod/photos.php:799
msgid "Delete Album"
msgstr "Album löschen"
-#: ../../mod/photos.php:159 ../../mod/photos.php:1048
+#: ../../mod/photos.php:159 ../../mod/photos.php:1061
msgid "Delete Photo"
msgstr "Foto löschen"
-#: ../../mod/photos.php:504
+#: ../../mod/photos.php:500
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s wurde auf %2$s von %3$s getaggt"
-#: ../../mod/photos.php:504
+#: ../../mod/photos.php:500
msgid "a photo"
msgstr "Foto"
-#: ../../mod/photos.php:580
+#: ../../mod/photos.php:583
msgid "No photos selected"
msgstr "Keine Fotos ausgewählt"
-#: ../../mod/photos.php:627
+#: ../../mod/photos.php:630
msgid "Access to this item is restricted."
msgstr "Zugriff auf dieses Foto wurde eingeschränkt."
-#: ../../mod/photos.php:692
+#: ../../mod/photos.php:704
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Du benutzt %1$.2f MBytes deines %2$.2f MBytes großen Bilder-Speichers."
-#: ../../mod/photos.php:695
+#: ../../mod/photos.php:707
#, php-format
msgid "You have used %1$.2f Mbytes of photo storage."
msgstr "Du verwendets %1$.2f MBytes deines Foto-Speichers."
-#: ../../mod/photos.php:714
+#: ../../mod/photos.php:726
msgid "Upload Photos"
msgstr "Fotos hochladen"
-#: ../../mod/photos.php:718 ../../mod/photos.php:782
+#: ../../mod/photos.php:730 ../../mod/photos.php:794
msgid "New album name: "
msgstr "Name des neuen Albums:"
-#: ../../mod/photos.php:719
+#: ../../mod/photos.php:731
msgid "or existing album name: "
msgstr "oder bestehenden Album Namen:"
-#: ../../mod/photos.php:720
+#: ../../mod/photos.php:732
msgid "Do not show a status post for this upload"
msgstr "Keine Statusnachricht für diesen Upload senden"
-#: ../../mod/photos.php:722 ../../mod/photos.php:1043
+#: ../../mod/photos.php:734 ../../mod/photos.php:1056
+#: ../../mod/filestorage.php:125
msgid "Permissions"
msgstr "Berechtigungen"
-#: ../../mod/photos.php:771 ../../mod/photos.php:793 ../../mod/photos.php:1219
-#: ../../mod/photos.php:1234
+#: ../../mod/photos.php:783 ../../mod/photos.php:805 ../../mod/photos.php:1232
+#: ../../mod/photos.php:1247
msgid "Contact Photos"
msgstr "Kontakt Bilder"
-#: ../../mod/photos.php:797
+#: ../../mod/photos.php:809
msgid "Edit Album"
msgstr "Album bearbeiten"
-#: ../../mod/photos.php:803
+#: ../../mod/photos.php:815
msgid "Show Newest First"
msgstr "Zeige neueste zuerst"
-#: ../../mod/photos.php:805
+#: ../../mod/photos.php:817
msgid "Show Oldest First"
msgstr "Zeige älteste zuerst"
-#: ../../mod/photos.php:849 ../../mod/photos.php:1266
+#: ../../mod/photos.php:860 ../../mod/photos.php:1279
msgid "View Photo"
msgstr "Foto ansehen"
-#: ../../mod/photos.php:893
+#: ../../mod/photos.php:906
msgid "Permission denied. Access to this item may be restricted."
msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."
-#: ../../mod/photos.php:895
+#: ../../mod/photos.php:908
msgid "Photo not available"
msgstr "Foto nicht verfügbar"
-#: ../../mod/photos.php:953
+#: ../../mod/photos.php:966
msgid "Use as profile photo"
msgstr "Als Profilfoto verwenden"
-#: ../../mod/photos.php:977
+#: ../../mod/photos.php:990
msgid "View Full Size"
msgstr "In voller Größe anzeigen"
-#: ../../mod/photos.php:1031
+#: ../../mod/photos.php:1044
msgid "Edit photo"
msgstr "Foto bearbeiten"
-#: ../../mod/photos.php:1033
+#: ../../mod/photos.php:1046
msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)"
-#: ../../mod/photos.php:1034
+#: ../../mod/photos.php:1047
msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)"
-#: ../../mod/photos.php:1036
+#: ../../mod/photos.php:1049
msgid "New album name"
msgstr "Name des neuen Albums:"
-#: ../../mod/photos.php:1039
+#: ../../mod/photos.php:1052
msgid "Caption"
msgstr "Bildunterschrift"
-#: ../../mod/photos.php:1041
+#: ../../mod/photos.php:1054
msgid "Add a Tag"
msgstr "Schlagwort hinzufügen"
-#: ../../mod/photos.php:1045
+#: ../../mod/photos.php:1058
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-#: ../../mod/photos.php:1272
+#: ../../mod/photos.php:1285
msgid "View Album"
msgstr "Album ansehen"
-#: ../../mod/photos.php:1281
+#: ../../mod/photos.php:1294
msgid "Recent Photos"
msgstr "Neueste Fotos"
-#: ../../mod/ping.php:160
-msgid "sent you a private message"
-msgstr "eine private Nachricht schicken"
-
-#: ../../mod/ping.php:218
-msgid "added your channel"
-msgstr "hat deinen Kanal hinzugefügt"
-
-#: ../../mod/ping.php:262
-msgid "posted an event"
-msgstr "hat eine Veranstaltung veröffentlicht"
-
#: ../../mod/filer.php:35
msgid "- select -"
msgstr "-auswählen-"
@@ -5141,91 +5182,30 @@ msgstr "Einträge zu diesem Menü hinzufügen oder entfernen"
msgid "Welcome to %s"
msgstr "Willkommen auf %s"
-#: ../../mod/message.php:33
-msgid "Unable to lookup recipient."
-msgstr "Konnte den Empfänger nicht finden."
-
-#: ../../mod/message.php:41
-msgid "Unable to communicate with requested channel."
-msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."
-
-#: ../../mod/message.php:48
-msgid "Cannot verify requested channel."
-msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen."
-
-#: ../../mod/message.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/message.php:200
-msgid "Messages"
-msgstr "Nachrichten"
-
-#: ../../mod/message.php:211
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
-
-#: ../../mod/message.php:218
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
-
-#: ../../mod/message.php:235
-msgid "Message recalled."
-msgstr "Nachricht widerrufen."
-
-#: ../../mod/message.php:293
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
-
-#: ../../mod/message.php:294 ../../mod/message.php:447
-msgid "To:"
-msgstr "An:"
-
-#: ../../mod/message.php:299 ../../mod/message.php:449
-msgid "Subject:"
-msgstr "Betreff:"
-
-#: ../../mod/message.php:336
-msgid "No messages."
-msgstr "Keine Nachrichten."
-
-#: ../../mod/message.php:352 ../../mod/message.php:416
-msgid "Delete message"
-msgstr "Nachricht löschen"
-
-#: ../../mod/message.php:354
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
-
-#: ../../mod/message.php:373
-msgid "Message not found."
-msgstr "Nachricht nicht gefunden."
-
-#: ../../mod/message.php:417
-msgid "Recall message"
-msgstr "Widerrufe die Nachricht"
+#: ../../mod/directory.php:143 ../../mod/profiles.php:573
+#: ../../mod/dirprofile.php:95
+msgid "Age: "
+msgstr "Alter:"
-#: ../../mod/message.php:419
-msgid "Message has been recalled."
-msgstr "Die Nachricht wurde widerrufen."
+#: ../../mod/directory.php:146 ../../mod/dirprofile.php:98
+msgid "Gender: "
+msgstr "Geschlecht:"
-#: ../../mod/message.php:436
-msgid "Private Conversation"
-msgstr "Private Unterhaltung"
+#: ../../mod/directory.php:206
+msgid "Finding:"
+msgstr "Ergebnisse:"
-#: ../../mod/message.php:440
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: ../../mod/directory.php:214
+msgid "next page"
+msgstr "nächste Seite"
-#: ../../mod/message.php:442
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kannst du von der Profilseite des Absenders antworten."
+#: ../../mod/directory.php:214
+msgid "previous page"
+msgstr "vorige Seite"
-#: ../../mod/message.php:446
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: ../../mod/directory.php:221
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
#: ../../mod/connections.php:189 ../../mod/connections.php:261
msgid "Blocked"
@@ -5320,7 +5300,7 @@ msgstr "Layout Name"
msgid "Help:"
msgstr "Hilfe:"
-#: ../../mod/help.php:68 ../../index.php:226
+#: ../../mod/help.php:68 ../../index.php:224
msgid "Not Found"
msgstr "Nicht gefunden"
@@ -5364,13 +5344,13 @@ msgstr "Ungültige Verbindung."
msgid "Channel added."
msgstr "Kanal hinzugefügt."
-#: ../../mod/post.php:222
+#: ../../mod/post.php:226
msgid ""
"Remote authentication blocked. You are logged into this site locally. Please"
" logout and retry."
msgstr "Entfernte Authentifizierung blockiert. Du bist lokal auf dieser Seite angemeldet. Bitte melde dich ab und versuche es erneut."
-#: ../../mod/post.php:251
+#: ../../mod/post.php:256
#, php-format
msgid "Welcome %s. Remote authentication successful."
msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
@@ -5627,14 +5607,18 @@ msgid ""
"be visible to anybody using the internet."
msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden im Internet sichtbar sein."
-#: ../../mod/profiles.php:573 ../../mod/directory.php:159
-msgid "Age: "
-msgstr "Alter:"
-
#: ../../mod/profiles.php:612
msgid "Edit/Manage Profiles"
msgstr "Bearbeite/Verwalte Profile"
+#: ../../mod/profiles.php:613
+msgid "Add profile things"
+msgstr "Profil-Dinge hinzufügen"
+
+#: ../../mod/profiles.php:614
+msgid "Include desirable objects in your profile"
+msgstr "binde begehrenswerte Dinge in dein Profil ein"
+
#: ../../mod/new_channel.php:107
msgid "Add a Channel"
msgstr "Channel hinzufügen"
@@ -5665,23 +5649,47 @@ msgstr "Dein Spitzname wird verwendet, um eine einfach zu erinnernde Kanal-Adres
msgid "Or <a href=\"import\">import an existing channel</a> from another location"
msgstr "Oder <a href=\"import\">importiere einen bestehenden Kanal</a> von einem anderen Ort"
-#: ../../mod/filestorage.php:35
+#: ../../mod/filestorage.php:68
msgid "Permission Denied."
msgstr "Zugriff verweigert."
-#: ../../mod/filestorage.php:42
-msgid "Permission denied. VS."
-msgstr "Zugriff verweigert. VS."
+#: ../../mod/filestorage.php:86
+msgid "File not found."
+msgstr "Datei nicht gefunden"
+
+#: ../../mod/filestorage.php:120
+msgid "Edit file permissions"
+msgstr "Dateiberechtigungen bearbeiten"
-#: ../../mod/filestorage.php:79
+#: ../../mod/filestorage.php:127
+msgid "Include all files and sub folders"
+msgstr "Alle Dateien und Unterverzeichnisse einbinden"
+
+#: ../../mod/filestorage.php:128
+msgid "Return to file list"
+msgstr "Zurück zur Dateiliste"
+
+#: ../../mod/filestorage.php:130
+msgid "Copy/paste this code to attach file to a post"
+msgstr "Diesen Code kopieren/einfügen um die Datei an einen Beitrag anzuhängen"
+
+#: ../../mod/filestorage.php:131
+msgid "Copy/paste this URL to link file from a web page"
+msgstr "Diese URL verwenden um auf die Datei von einer Webseite aus zu verweisen"
+
+#: ../../mod/filestorage.php:168
msgid "Download"
msgstr "Download"
-#: ../../mod/filestorage.php:84
+#: ../../mod/filestorage.php:174
msgid "Used: "
msgstr "Verwendet:"
-#: ../../mod/filestorage.php:86
+#: ../../mod/filestorage.php:175
+msgid "[directory]"
+msgstr "[Verzeichnis]"
+
+#: ../../mod/filestorage.php:177
msgid "Limit: "
msgstr "Limit:"
@@ -6259,8 +6267,82 @@ msgstr "Erweiterte Account / Seiten Arten Einstellungen"
msgid "Change the behaviour of this account for special situations"
msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
-#: ../../mod/editlayout.php:36 ../../mod/editwebpage.php:32
-#: ../../mod/editpost.php:20 ../../mod/editblock.php:36
+#: ../../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:121 ../../mod/message.php:31
+msgid "Messages"
+msgstr "Nachrichten"
+
+#: ../../mod/mail.php:132
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
+
+#: ../../mod/mail.php:149
+msgid "Message recalled."
+msgstr "Nachricht widerrufen."
+
+#: ../../mod/mail.php:206
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
+
+#: ../../mod/mail.php:207 ../../mod/mail.php:323
+msgid "To:"
+msgstr "An:"
+
+#: ../../mod/mail.php:212 ../../mod/mail.php:325
+msgid "Subject:"
+msgstr "Betreff:"
+
+#: ../../mod/mail.php:249
+msgid "Message not found."
+msgstr "Nachricht nicht gefunden."
+
+#: ../../mod/mail.php:292 ../../mod/message.php:72
+msgid "Delete message"
+msgstr "Nachricht löschen"
+
+#: ../../mod/mail.php:293
+msgid "Recall message"
+msgstr "Widerrufe die Nachricht"
+
+#: ../../mod/mail.php:295
+msgid "Message has been recalled."
+msgstr "Die Nachricht wurde widerrufen."
+
+#: ../../mod/mail.php:312
+msgid "Private Conversation"
+msgstr "Private Unterhaltung"
+
+#: ../../mod/mail.php:316
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
+
+#: ../../mod/mail.php:318
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kannst du von der Profilseite des Absenders antworten."
+
+#: ../../mod/mail.php:322
+msgid "Send Reply"
+msgstr "Antwort senden"
+
+#: ../../mod/editlayout.php:36 ../../mod/editpost.php:20
+#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
msgid "Item not found"
msgstr "Element nicht gefunden"
@@ -6268,22 +6350,22 @@ msgstr "Element nicht gefunden"
msgid "Edit Layout"
msgstr "Layout bearbeiten"
-#: ../../mod/editlayout.php:104 ../../mod/editwebpage.php:147
-#: ../../mod/editpost.php:101 ../../mod/editblock.php:118
+#: ../../mod/editlayout.php:105 ../../mod/editpost.php:102
+#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:119
msgid "Insert YouTube video"
msgstr "YouTube-Video einfügen"
-#: ../../mod/editlayout.php:105 ../../mod/editwebpage.php:148
-#: ../../mod/editpost.php:102 ../../mod/editblock.php:119
+#: ../../mod/editlayout.php:106 ../../mod/editpost.php:103
+#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:120
msgid "Insert Vorbis [.ogg] video"
msgstr "Vorbis [.ogg]-Video einfügen"
-#: ../../mod/editlayout.php:106 ../../mod/editwebpage.php:149
-#: ../../mod/editpost.php:103 ../../mod/editblock.php:120
+#: ../../mod/editlayout.php:107 ../../mod/editpost.php:104
+#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:121
msgid "Insert Vorbis [.ogg] audio"
msgstr "Vorbis [.ogg]-Audio einfügen"
-#: ../../mod/editlayout.php:140
+#: ../../mod/editlayout.php:141
msgid "Delete Layout"
msgstr "Layout löschen"
@@ -6363,13 +6445,13 @@ msgstr "Hochladen des Bilds fehlgeschlagen."
msgid "Image size reduction [%s] failed."
msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen."
-#: ../../mod/editwebpage.php:106
-msgid "Edit Webpage"
-msgstr "Webseite bearbeiten"
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "Element kann nicht bearbeitet werden."
-#: ../../mod/editwebpage.php:188
-msgid "Delete Webpage"
-msgstr "Webseite löschen"
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
+msgstr "Eintrag löschen?"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
@@ -6399,9 +6481,17 @@ msgstr "Konnte den Hub nicht finden."
msgid "Post successful."
msgstr "Veröffentlichung erfolgreich."
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
-msgstr "Element kann nicht bearbeitet werden."
+#: ../../mod/editwebpage.php:106
+msgid "Edit Webpage"
+msgstr "Webseite bearbeiten"
+
+#: ../../mod/editwebpage.php:116
+msgid "Delete webpage?"
+msgstr "Webseite löschen?"
+
+#: ../../mod/editwebpage.php:189
+msgid "Delete Webpage"
+msgstr "Webseite löschen"
#: ../../mod/profile.php:64 ../../mod/profile.php:72
msgid "Access to this profile has been restricted."
@@ -6427,7 +6517,7 @@ msgstr "Wähle was du mit dem/r Empfänger/in tun willst"
msgid "Make this post private"
msgstr "Diesen Beitrag privat machen"
-#: ../../mod/wall_upload.php:41 ../../mod/item.php:1077
+#: ../../mod/wall_upload.php:41 ../../mod/item.php:1068
msgid "Wall Photos"
msgstr "Wall Fotos"
@@ -6435,7 +6525,7 @@ msgstr "Wall Fotos"
msgid "You must be logged in to see this page."
msgstr "Du musst angemeldet sein um diese Seite betrachten zu können."
-#: ../../mod/channel.php:83
+#: ../../mod/channel.php:85
msgid "Insufficient permissions. Request redirected to profile page."
msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."
@@ -6451,10 +6541,6 @@ msgstr "Gemeinschaft"
msgid "No results."
msgstr "Keine Ergebnisse."
-#: ../../mod/fbrowser.php:114
-msgid "Files"
-msgstr "Dateien"
-
#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
msgid "Contact not found."
msgstr "Kontakt nicht gefunden"
@@ -6476,7 +6562,7 @@ msgstr "Schlage %s einen Kontakt vor"
msgid "Edit Block"
msgstr "Block bearbeiten"
-#: ../../mod/editblock.php:156
+#: ../../mod/editblock.php:157
msgid "Delete Block"
msgstr "Block löschen"
@@ -6500,32 +6586,6 @@ msgstr "Sichtbar für"
msgid "All Contacts (with secure profile access)"
msgstr "Alle Kontakte (mit sicherem Zuging zum Profil)"
-#: ../../mod/item.php:144
-msgid "Unable to locate original post."
-msgstr "Originalbeitrag kann nicht gefunden werden."
-
-#: ../../mod/item.php:341
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag verworfen."
-
-#: ../../mod/item.php:383
-msgid "Executable content type not permitted to this channel."
-msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
-
-#: ../../mod/item.php:793
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag nicht gespeichert."
-
-#: ../../mod/item.php:1156
-#, 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:1162
-#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
-
#: ../../mod/siteinfo.php:57
#, php-format
msgid "Version %s"
@@ -6575,6 +6635,18 @@ msgid ""
"hours."
msgstr "Keine Vorschläge vorhanden. Wenn dies eine neue Seite ist versuche es bitte in 24 Stunden erneut."
+#: ../../mod/message.php:41
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
+
+#: ../../mod/message.php:56
+msgid "No messages."
+msgstr "Keine Nachrichten."
+
+#: ../../mod/message.php:74
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
+
#: ../../mod/pubsites.php:22
msgid "Public Sites"
msgstr "Öffentliche Seiten"
@@ -6627,43 +6699,51 @@ msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden
msgid "Your registration can not be processed."
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
-#: ../../mod/register.php:149
+#: ../../mod/register.php:147
+msgid "Registration on this site/hub is by approval only."
+msgstr "Anmeldungen auf dieser Seite / diesem Hub benötigen Zustimmung durch den Administrator"
+
+#: ../../mod/register.php:148
+msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
+msgstr "<a href=\"pubsites\">Registrierung auf einer angeschlossenen Seite</a>"
+
+#: ../../mod/register.php:156
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
-#: ../../mod/register.php:160
+#: ../../mod/register.php:167
msgid "Terms of Service"
msgstr "Nutzungsbedingungen"
-#: ../../mod/register.php:166
+#: ../../mod/register.php:173
#, php-format
msgid "I accept the %s for this website"
msgstr "Ich akzeptiere die %s für diese Webseite"
-#: ../../mod/register.php:168
+#: ../../mod/register.php:175
#, 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:183
+#: ../../mod/register.php:194
msgid "Membership on this site is by invitation only."
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
-#: ../../mod/register.php:184
+#: ../../mod/register.php:195
msgid "Please enter your invitation code"
msgstr "Bitte trage deinen Einladungs-Code ein"
-#: ../../mod/register.php:187
+#: ../../mod/register.php:198
msgid "Your email address"
msgstr "Ihre E-Mail Adresse"
-#: ../../mod/register.php:188
+#: ../../mod/register.php:199
msgid "Choose a password"
msgstr "Passwort"
-#: ../../mod/register.php:189
+#: ../../mod/register.php:200
msgid "Please re-enter your password"
msgstr "Bitte gib dein Passwort noch einmal ein"
@@ -6699,34 +6779,76 @@ msgstr "Standartmäßig wird der Kanal nur auf diesem Knoten gelöscht, seine Kl
msgid "Remove My Account"
msgstr "Mein Konto entfernen"
-#: ../../mod/directory.php:162
-msgid "Gender: "
-msgstr "Geschlecht:"
+#: ../../mod/item.php:145
+msgid "Unable to locate original post."
+msgstr "Originalbeitrag kann nicht gefunden werden."
-#: ../../mod/directory.php:223
-msgid "Finding:"
-msgstr "Ergebnisse:"
+#: ../../mod/item.php:343
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag verworfen."
-#: ../../mod/directory.php:231
-msgid "next page"
-msgstr "nächste Seite"
+#: ../../mod/item.php:385
+msgid "Executable content type not permitted to this channel."
+msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
-#: ../../mod/directory.php:231
-msgid "previous page"
-msgstr "vorige Seite"
+#: ../../mod/item.php:812
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag nicht gespeichert."
-#: ../../mod/directory.php:238
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge gefunden (einige könnten versteckt sein)."
+#: ../../mod/item.php:1148
+#, 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/mood.php:133
+#: ../../mod/item.php:1154
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
+
+#: ../../mod/mood.php:138
msgid "Mood"
msgstr "Laune"
-#: ../../mod/mood.php:134
+#: ../../mod/mood.php:139
msgid "Set your current mood and tell your friends"
msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
+#: ../../mod/ping.php:160
+msgid "sent you a private message"
+msgstr "eine private Nachricht schicken"
+
+#: ../../mod/ping.php:218
+msgid "added your channel"
+msgstr "hat deinen Kanal hinzugefügt"
+
+#: ../../mod/ping.php:262
+msgid "posted an event"
+msgstr "hat eine Veranstaltung veröffentlicht"
+
+#: ../../mod/dirprofile.php:111
+msgid "Status: "
+msgstr "Status:"
+
+#: ../../mod/dirprofile.php:112
+msgid "Sexual Preference: "
+msgstr "Sexuelle Vorlieben:"
+
+#: ../../mod/dirprofile.php:114
+msgid "Homepage: "
+msgstr "Webseite:"
+
+#: ../../mod/dirprofile.php:115
+msgid "Hometown: "
+msgstr "Wohnort:"
+
+#: ../../mod/dirprofile.php:117
+msgid "About: "
+msgstr "Über:"
+
+#: ../../mod/dirprofile.php:163
+msgid "Keywords: "
+msgstr "Schlüsselbegriffe:"
+
#: ../../view/theme/redbasic/php/config.php:74
msgid "Scheme Default"
msgstr "Standard-Schema"
diff --git a/view/de/strings.php b/view/de/strings.php
index ef98c6546..1dbbb36cc 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -12,96 +12,66 @@ $a->strings["public profile"] = "öffentliches Profil";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s auf &ldquo;%3\$s&rdquo; 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["Sort Options"] = "Sortieroptionen";
-$a->strings["Alphabetic"] = "alphabetisch";
-$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch";
-$a->strings["Newest to Oldest"] = "Neueste zuerst";
-$a->strings["Enable Safe Search"] = "Sichere Suche einschalten";
-$a->strings["Disable Safe Search"] = "Sichere Suche ausschalten";
-$a->strings["Safe Mode"] = "Sicherer Modus";
$a->strings["Public Timeline"] = "Öffentliche Zeitleiste";
-$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung";
-$a->strings["redmatrix"] = "redmatrix";
-$a->strings["Thank You,"] = "Danke.";
-$a->strings["%s Administrator"] = "%s Administrator";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Red:Notify] New mail received at %s"] = "[Red Notify] Neue Mail auf %s empfangen";
-$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat dir eine private Nachricht auf %3\$s gesendet.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat dir %2\$s geschickt.";
-$a->strings["a private message"] = "eine private Nachricht";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten.";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]a %4\$s[/zrl] kommentiert";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]deinen %4\$s[/zrl] kommentiert";
-$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] 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 ein Thema kommentiert, dem du folgst.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation 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 Notify] %s hat dich getaggt";
-$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat dich auf %3\$s getaggt";
-$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat dich erwähnt[/zrl].";
-$a->strings["[Red:Notify] %1\$s poked you"] = "[Red Notify] %1\$s hat dich angestupst";
-$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat dich auf %3\$s angestubst";
-$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:Hinweis] %s hat Dich getagged";
-$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat deinen Beitrag auf %3\$s getaggt";
-$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]deinen Beitrag[/zrl] getaggt";
-$a->strings["[Red:Notify] Introduction received"] = "[Red:Notify] Vorstellung erhalten";
-$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "%1\$s, du hast eine Vorstellung von „%2\$s“ auf %3\$s erhalten";
-$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "%1\$s, du hast [zrl=%2\$s]eine Vorstellung[/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 introduction."] = "Bitte besuche %s um sie anzunehmen oder abzulehnen.";
-$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Hinweis] Freundschaftsvorschlag erhalten";
-$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du hast einen Freundschaftsvorschlag 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 Freundschaftvorschlag[/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["Private Message"] = "Private Nachricht";
-$a->strings["Edit"] = "Bearbeiten";
-$a->strings["Delete"] = "Löschen";
-$a->strings["Select"] = "Auswählen";
-$a->strings["save to folder"] = "In Ordner speichern";
-$a->strings["add star"] = "markieren";
-$a->strings["remove star"] = "Markierung entfernen";
-$a->strings["toggle star status"] = "Stern-Status umschalten";
-$a->strings["starred"] = "markiert";
-$a->strings["Message is verified"] = "Nachricht überprüft";
-$a->strings["add tag"] = "Schlagwort hinzufügen";
-$a->strings["I like this (toggle)"] = "Ich mag das (Umschalter)";
-$a->strings["like"] = "Gefällt-mir";
-$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (Umschalter)";
-$a->strings["dislike"] = "Gefällt-mir-nicht";
-$a->strings["Share this"] = "Teile dies";
-$a->strings["share"] = "Teilen";
-$a->strings["View %s's profile - %s"] = "Schaue dir %s's Profil an - %s";
-$a->strings["to"] = "zu";
-$a->strings["via"] = "via";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings[" from %s"] = "von %s";
-$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s";
-$a->strings["Please wait"] = "Bitte warten";
-$a->strings["%d comment"] = array(
- 0 => "%d Kommentar",
- 1 => "%d Kommentare",
-);
-$a->strings["show more"] = "mehr zeigen";
-$a->strings["This is you"] = "Das bist du";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["Submit"] = "Bestätigen";
-$a->strings["Bold"] = "Fett";
-$a->strings["Italic"] = "Kursiv";
-$a->strings["Underline"] = "Unterstrichen";
-$a->strings["Quote"] = "Zitat";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Bild";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Preview"] = "Vorschau";
-$a->strings["Encrypt text"] = "Text verschlüsseln";
+$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"] = "Verwalte/Bearbeite Profile";
+$a->strings["Photos"] = "Fotos";
+$a->strings["Your photos"] = "Deine Bilder";
+$a->strings["Login"] = "Anmelden";
+$a->strings["Sign in"] = "Anmelden";
+$a->strings["%s - click to logout"] = "%s - Klick zum Abmelden";
+$a->strings["Click to authenticate to your home hub"] = "Klick zum Authentifizieren bei Deinem Heimat-Hub";
+$a->strings["Home Page"] = "Homepage";
+$a->strings["Register"] = "Registrieren";
+$a->strings["Create an account"] = "Erzeuge ein Konto";
+$a->strings["Help"] = "Hilfe";
+$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Addon Programme, Helferlein, Spiele";
+$a->strings["Search"] = "Suche";
+$a->strings["Search site content"] = "Durchsuche Seiten-Inhalt";
+$a->strings["Directory"] = "Verzeichnis";
+$a->strings["Channel Locator"] = "Kanal-Anzeiger";
+$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["Intros"] = "Vorstellungen";
+$a->strings["New Connections"] = "Neue Verbindungen";
+$a->strings["Notices"] = "Benachrichtigungen";
+$a->strings["Notifications"] = "Benachrichtigungen";
+$a->strings["See all notifications"] = "Alle Benachrichtigungen ansehen";
+$a->strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen";
+$a->strings["Mail"] = "Mail";
+$a->strings["Private mail"] = "Persönliche Mail";
+$a->strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen";
+$a->strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen";
+$a->strings["Inbox"] = "Eingang";
+$a->strings["Outbox"] = "Ausgang";
+$a->strings["New Message"] = "Neue Nachricht";
+$a->strings["Events"] = "Veranstaltungen";
+$a->strings["Event Calendar"] = "Veranstaltungskalender";
+$a->strings["See all events"] = "Alle Ereignisse ansehen";
+$a->strings["Mark all events seen"] = "Markiere alle Ereignisse als gesehen";
+$a->strings["Channel Select"] = "Kanal-Auswahl";
+$a->strings["Manage Your Channels"] = "Verwalte Deine Kanäle";
+$a->strings["Settings"] = "Einstellungen";
+$a->strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen";
+$a->strings["Connections"] = "Verbindungen";
+$a->strings["Manage/Edit Friends and Connections"] = "Verwalte/Bearbeite Freunde und Verbindungen";
+$a->strings["Admin"] = "Admin";
+$a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration";
+$a->strings["Nothing new here"] = "Nichts Neues hier";
+$a->strings["Please wait..."] = "Bitte warten...";
+$a->strings["Edit File properties"] = "Dateieigenschaften ändern";
$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";
@@ -139,9 +109,7 @@ $a->strings["Export channel"] = "Kanal exportieren";
$a->strings["Automatic Permissions (Advanced)"] = "Automatische Berechtigungen (Erweitert)";
$a->strings["Premium Channel Settings"] = "Prämium-Kanal Einstellungen";
$a->strings["Channel Sources"] = "Kanal Quellen";
-$a->strings["Settings"] = "Einstellungen";
$a->strings["Check Mail"] = "E-Mails abrufen";
-$a->strings["New Message"] = "Neue Nachricht";
$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
$a->strings["Block immediately"] = "Sofort blockieren";
$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
@@ -187,6 +155,89 @@ $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["prev"] = "vorherige";
+$a->strings["first"] = "erste";
+$a->strings["last"] = "letzte";
+$a->strings["next"] = "nächste";
+$a->strings["older"] = "älter";
+$a->strings["newer"] = "neuer";
+$a->strings["No connections"] = "Keine Verbindungen";
+$a->strings["%d Connection"] = array(
+ 0 => "%d Verbindung",
+ 1 => "%d Verbindungen",
+);
+$a->strings["View Connections"] = "Zeige Verbindungen";
+$a->strings["poke"] = "anstupsen";
+$a->strings["poked"] = "stupste";
+$a->strings["ping"] = "anpingen";
+$a->strings["pinged"] = "pingte";
+$a->strings["prod"] = "knuffen";
+$a->strings["prodded"] = "knuffte";
+$a->strings["slap"] = "ohrfeigen";
+$a->strings["slapped"] = "ohrfeigte";
+$a->strings["finger"] = "befummeln";
+$a->strings["fingered"] = "befummelte";
+$a->strings["rebuff"] = "eine Abfuhr erteilen";
+$a->strings["rebuffed"] = "abfuhrerteilte";
+$a->strings["happy"] = "glücklich";
+$a->strings["sad"] = "traurig";
+$a->strings["mellow"] = "sanft";
+$a->strings["tired"] = "müde";
+$a->strings["perky"] = "frech";
+$a->strings["angry"] = "sauer";
+$a->strings["stupified"] = "verblüfft";
+$a->strings["puzzled"] = "verwirrt";
+$a->strings["interested"] = "interessiert";
+$a->strings["bitter"] = "verbittert";
+$a->strings["cheerful"] = "fröhlich";
+$a->strings["alive"] = "lebendig";
+$a->strings["annoyed"] = "verärgert";
+$a->strings["anxious"] = "unruhig";
+$a->strings["cranky"] = "schrullig";
+$a->strings["disturbed"] = "verstört";
+$a->strings["frustrated"] = "frustriert";
+$a->strings["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 zum Originalbeitrag";
+$a->strings["Select a page layout: "] = "Ein Seiten-Layout auswählen";
+$a->strings["default"] = "Standard";
+$a->strings["Page content type: "] = "Content-Typ der Seite";
+$a->strings["Select an alternate language"] = "Wähle eine alternative Sprache";
+$a->strings["photo"] = "Foto";
+$a->strings["event"] = "Ereignis";
+$a->strings["status"] = "Status";
+$a->strings["comment"] = "Kommentar";
+$a->strings["activity"] = "Aktivität";
+$a->strings["Design"] = "Design";
+$a->strings["Blocks"] = "Blöcke";
+$a->strings["Menus"] = "Menüs";
+$a->strings["Layouts"] = "Layouts";
+$a->strings["Pages"] = "Seiten";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Ein gelöschte Gruppe mit diesem Namen wurde gefunden. Existierende Zugangsregeln für Elemente <strong>könnten</strong> für diese Gruppe angewendet werden, sowie für alle zukünftigen Elemente.";
$a->strings["Default privacy group for new contacts"] = "Standard-Privatsphärengruppe für neue Kontakte";
$a->strings["All Channels"] = "Alle Kanäle";
@@ -196,6 +247,8 @@ $a->strings["Edit collection"] = "Bearbeite Sammlungen";
$a->strings["Create a new collection"] = "Neue Sammlung erzeugen";
$a->strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind";
$a->strings["Delete this item?"] = "Dieses Element löschen?";
+$a->strings["Comment"] = "Kommentar";
+$a->strings["show more"] = "mehr zeigen";
$a->strings["show fewer"] = "Zeige weniger";
$a->strings["Password too short"] = "Kennwort zu kurz";
$a->strings["Passwords do not match"] = "Kennwörter stimmen nicht überein";
@@ -227,6 +280,7 @@ $a->strings["Profile Photos"] = "Profilfotos";
$a->strings["view full size"] = "In Vollbildansicht anschauen";
$a->strings["Image/photo"] = "Bild/Foto";
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
+$a->strings["QR code"] = "QR Code";
$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s";
$a->strings["post"] = "Beitrag";
$a->strings["$1 wrote:"] = "$1 schrieb:";
@@ -241,9 +295,8 @@ $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["Enhanced Photo Albums"] = "Erweitertes Fotoalbum";
-$a->strings["Enable photo album with enhanced features"] = "Aktiviere Fotoalbum mit erweiterten Funktionen";
$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 Seiten der Matrix geteilt.";
$a->strings["Expert Mode"] = "Expertenmodus";
$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviere Expertenmodus, um fortgeschrittene Konfiguration zur Verfügung zu stellen";
$a->strings["Premium Channel"] = "Premium-Kanal";
@@ -255,7 +308,7 @@ $a->strings["Post Preview"] = "Voransicht";
$a->strings["Allow previewing posts and comments before publishing them"] = "Erlaube Voransicht von Beiträgen und Kommentaren vor Veröffentlichung";
$a->strings["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 encryption of content end-to-end with a shared secret key"] = "Erlaube Ende-zu-Ende Verschlüsselung von Inhalten, mit einem geteilten geheimen Schlüssel";
+$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)";
$a->strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter";
$a->strings["Search by Date"] = "Suche nach Datum";
$a->strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen";
@@ -284,6 +337,107 @@ $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"] = "Tag Wolke";
$a->strings["Provide a personal tag cloud on your channel page"] = "Persönliche Schlagwort-Wolke für deine Kanal-Seite anlegen";
+$a->strings["channel"] = "Kanal";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$s's %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$s's %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";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
+$a->strings["Select"] = "Auswählen";
+$a->strings["Delete"] = "Löschen";
+$a->strings["Message is verified"] = "Nachricht überprüft";
+$a->strings["View %s's profile @ %s"] = "Schaue Dir %s's Profil auf %s an.";
+$a->strings["Categories:"] = "Kategorien:";
+$a->strings["Filed under:"] = "Gespeichert unter:";
+$a->strings[" from %s"] = "von %s";
+$a->strings["last edited: %s"] = "zuletzt bearbeitet: %s";
+$a->strings["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 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["<span %1\$s>%2\$d people</span> like this."] = array(
+ 0 => "<span %1\$s>%2\$d Person</span> gefällt das.",
+ 1 => "<span %1\$s>%2\$d Leuten</span> gefällt das.",
+);
+$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
+ 0 => "<span %1\$s>%2\$d Person</span> gefällt das nicht.",
+ 1 => "<span %1\$s>%2\$d Leuten</span> 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 <strong>everybody</strong>"] = "Sichtbar für <strong>jeden</strong>";
+$a->strings["Please enter a link URL:"] = "Gib eine URL ein:";
+$a->strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:";
+$a->strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:";
+$a->strings["Tag term:"] = "Schlagwort:";
+$a->strings["Save to Folder:"] = "Speichern in Ordner:";
+$a->strings["Where are you right now?"] = "Wo bist du jetzt grade?";
+$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM";
+$a->strings["Preview"] = "Vorschau";
+$a->strings["Share"] = "Teilen";
+$a->strings["Page link title"] = "Seitentitel-Link";
+$a->strings["Upload photo"] = "Foto hochladen";
+$a->strings["upload photo"] = "Foto hochladen";
+$a->strings["Attach file"] = "Datei anhängen";
+$a->strings["attach file"] = "Datei anfügen";
+$a->strings["Insert web link"] = "Link einfügen";
+$a->strings["web link"] = "Web-Link";
+$a->strings["Insert video link"] = "Video-Link einfügen";
+$a->strings["video link"] = "Video-Link";
+$a->strings["Insert audio link"] = "Audio-Link einfügen";
+$a->strings["audio link"] = "Audio-Link";
+$a->strings["Set your location"] = "Standort";
+$a->strings["set location"] = "Standort";
+$a->strings["Clear browser location"] = "Browser-Standort löschen";
+$a->strings["clear location"] = "Standort löschen";
+$a->strings["Set title"] = "Titel";
+$a->strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)";
+$a->strings["Permission settings"] = "Berechtigungs-Einstellungen";
+$a->strings["permissions"] = "Berechtigungen";
+$a->strings["Public post"] = "Öffentlicher Beitrag";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com";
+$a->strings["Set expiration date"] = "Verfallsdatum";
+$a->strings["Encrypt text"] = "Text verschlüsseln";
+$a->strings["OK"] = "OK";
+$a->strings["Cancel"] = "Abbrechen";
+$a->strings["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, in denen es um dich geht";
+$a->strings["New"] = "Neu";
+$a->strings["Activity Stream - by date"] = "Activity Stream - nach Datum sortiert";
+$a->strings["Starred"] = "Markiert";
+$a->strings["Favourite Posts"] = "Beiträge mit Sternchen";
+$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"] = "Dateien";
+$a->strings["Files and Storage"] = "Dateien und Speicher";
+$a->strings["Events and Calendar"] = "Veranstaltungen und Kalender";
+$a->strings["Webpages"] = "Webseiten";
+$a->strings["Manage Webpages"] = "Webseiten verwalten";
$a->strings["created a new post"] = "Neuer Beitrag wurde erzeugt";
$a->strings["commented on %s's post"] = "hat %s's Beitrag kommentiert";
$a->strings["Permission denied."] = "Zugang verweigert";
@@ -291,7 +445,6 @@ $a->strings["Image exceeds website size limit of %lu bytes"] = "Bild überschrei
$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["Male"] = "Männlich";
$a->strings["Female"] = "Weiblich";
@@ -364,72 +517,15 @@ $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["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["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"] = "Verwalte/Bearbeite Profile";
-$a->strings["Photos"] = "Fotos";
-$a->strings["Your photos"] = "Deine Bilder";
-$a->strings["Login"] = "Anmelden";
-$a->strings["Sign in"] = "Anmelden";
-$a->strings["%s - click to logout"] = "%s - Klick zum Abmelden";
-$a->strings["Click to authenticate to your home hub"] = "Klick zum Authentifizieren bei Deinem Heimat-Hub";
-$a->strings["Home Page"] = "Homepage";
-$a->strings["Register"] = "Registrieren";
-$a->strings["Create an account"] = "Erzeuge ein Konto";
-$a->strings["Help"] = "Hilfe";
-$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Addon Programme, Helferlein, Spiele";
-$a->strings["Search"] = "Suche";
-$a->strings["Search site content"] = "Durchsuche Seiten-Inhalt";
-$a->strings["Directory"] = "Verzeichnis";
-$a->strings["Channel Locator"] = "Kanal-Anzeiger";
-$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["Intros"] = "Vorstellungen";
-$a->strings["New Connections"] = "Neue 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"] = "Veranstaltungen";
-$a->strings["Event Calendar"] = "Veranstaltungskalender";
-$a->strings["See all events"] = "Alle Ereignisse ansehen";
-$a->strings["Mark all events seen"] = "Markiere alle Ereignisse als gesehen";
-$a->strings["Channel Select"] = "Kanal-Auswahl";
-$a->strings["Manage Your Channels"] = "Verwalte Deine Kanäle";
-$a->strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen";
-$a->strings["Connections"] = "Verbindungen";
-$a->strings["Manage/Edit Friends and Connections"] = "Verwalte/Bearbeite Freunde und Verbindungen";
-$a->strings["Admin"] = "Admin";
-$a->strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration";
-$a->strings["Nothing new here"] = "Nichts Neues hier";
-$a->strings["Please wait..."] = "Bitte warten...";
$a->strings["Tags"] = "Tags";
$a->strings["Keywords"] = "Schlüsselbegriffe";
$a->strings["have"] = "habe";
$a->strings["has"] = "hat";
$a->strings["want"] = "will";
$a->strings["wants"] = "will";
+$a->strings["like"] = "Gefällt-mir";
$a->strings["likes"] = "Gefällt-mir";
+$a->strings["dislike"] = "Gefällt-mir-nicht";
$a->strings["dislikes"] = "Gefällt-mir-nicht";
$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 nicht unter denen, die auf dieser Seite erlaubt sind";
@@ -444,99 +540,52 @@ $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["photo"] = "Foto";
-$a->strings["event"] = "Ereignis";
-$a->strings["channel"] = "Kanal";
-$a->strings["status"] = "Status";
-$a->strings["comment"] = "Kommentar";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$s's %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$s's %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";
-$a->strings["poked"] = "stupste";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
-$a->strings["View %s's profile @ %s"] = "Schaue Dir %s's Profil auf %s an.";
-$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["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 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["<span %1\$s>%2\$d people</span> like this."] = array(
- 0 => "<span %1\$s>%2\$d Person</span> gefällt das.",
- 1 => "<span %1\$s>%2\$d Leuten</span> gefällt das.",
-);
-$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
- 0 => "<span %1\$s>%2\$d Person</span> gefällt das nicht.",
- 1 => "<span %1\$s>%2\$d Leuten</span> 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 <strong>everybody</strong>"] = "Sichtbar für <strong>jeden</strong>";
-$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["Upload photo"] = "Foto hochladen";
-$a->strings["upload photo"] = "Foto hochladen";
-$a->strings["Attach file"] = "Datei anhängen";
-$a->strings["attach file"] = "Datei anfügen";
-$a->strings["Insert web link"] = "Link einfügen";
-$a->strings["web link"] = "Web-Link";
-$a->strings["Insert video link"] = "Video-Link einfügen";
-$a->strings["video link"] = "Video-Link";
-$a->strings["Insert audio link"] = "Audio-Link einfügen";
-$a->strings["audio link"] = "Audio-Link";
-$a->strings["Set your location"] = "Standort";
-$a->strings["set location"] = "Standort";
-$a->strings["Clear browser location"] = "Browser-Standort löschen";
-$a->strings["clear location"] = "Standort löschen";
-$a->strings["Set title"] = "Titel";
-$a->strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)";
-$a->strings["Permission settings"] = "Berechtigungs-Einstellungen";
-$a->strings["permissions"] = "Berechtigungen";
-$a->strings["Public post"] = "Öffentlicher Beitrag";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com";
-$a->strings["Set expiration date"] = "Verfallsdatum";
-$a->strings["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, in denen es um dich geht";
-$a->strings["New"] = "Neu";
-$a->strings["Activity Stream - by date"] = "Activity Stream - nach Datum sortiert";
-$a->strings["Starred"] = "Markiert";
-$a->strings["Favourite Posts"] = "Beiträge mit Sternchen";
-$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["Events and Calendar"] = "Veranstaltungen und Kalender";
-$a->strings["Webpages"] = "Webseiten";
-$a->strings["Manage Webpages"] = "Webseiten verwalten";
+$a->strings["Sort Options"] = "Sortieroptionen";
+$a->strings["Alphabetic"] = "alphabetisch";
+$a->strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch";
+$a->strings["Newest to Oldest"] = "Neueste zuerst";
+$a->strings["Enable Safe Search"] = "Sichere Suche einschalten";
+$a->strings["Disable Safe Search"] = "Sichere Suche ausschalten";
+$a->strings["Safe Mode"] = "Sicherer Modus";
+$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung";
+$a->strings["redmatrix"] = "redmatrix";
+$a->strings["Thank You,"] = "Danke.";
+$a->strings["%s Administrator"] = "%s Administrator";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Red:Notify] New mail received at %s"] = "[Red Notify] Neue Mail auf %s empfangen";
+$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat dir eine private Nachricht auf %3\$s gesendet.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s hat dir %2\$s geschickt.";
+$a->strings["a private message"] = "eine private Nachricht";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten.";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]a %4\$s[/zrl] kommentiert";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]deinen %4\$s[/zrl] kommentiert";
+$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] 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 ein Thema kommentiert, dem du folgst.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation 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 Notify] %s hat dich getaggt";
+$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat dich auf %3\$s getaggt";
+$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat dich erwähnt[/zrl].";
+$a->strings["[Red:Notify] %1\$s poked you"] = "[Red Notify] %1\$s hat dich angestupst";
+$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat dich auf %3\$s angestubst";
+$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:Hinweis] %s hat Dich getagged";
+$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat deinen Beitrag auf %3\$s getaggt";
+$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]deinen Beitrag[/zrl] getaggt";
+$a->strings["[Red:Notify] Introduction received"] = "[Red:Notify] Vorstellung erhalten";
+$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "%1\$s, du hast eine Vorstellung von „%2\$s“ auf %3\$s erhalten";
+$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "%1\$s, du hast [zrl=%2\$s]eine Vorstellung[/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 introduction."] = "Bitte besuche %s um sie anzunehmen oder abzulehnen.";
+$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Hinweis] Freundschaftsvorschlag erhalten";
+$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du hast einen Freundschaftsvorschlag 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 Freundschaftvorschlag[/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["Logged out."] = "Ausgeloggt.";
$a->strings["Failed authentication"] = "Authentifizierung fehlgeschlagen";
$a->strings["Login failed."] = "Login fehlgeschlagen.";
@@ -557,84 +606,7 @@ $a->strings["%d connection in common"] = array(
1 => "%d gemeinsame Verbindungen",
);
$a->strings["New Page"] = "Neue Seite";
-$a->strings["prev"] = "vorherige";
-$a->strings["first"] = "erste";
-$a->strings["last"] = "letzte";
-$a->strings["next"] = "nächste";
-$a->strings["older"] = "älter";
-$a->strings["newer"] = "neuer";
-$a->strings["No connections"] = "Keine Verbindungen";
-$a->strings["%d Connection"] = array(
- 0 => "%d Verbindung",
- 1 => "%d Verbindungen",
-);
-$a->strings["View Connections"] = "Zeige Verbindungen";
-$a->strings["poke"] = "anstupsen";
-$a->strings["ping"] = "anpingen";
-$a->strings["pinged"] = "pingte";
-$a->strings["prod"] = "knuffen";
-$a->strings["prodded"] = "knuffte";
-$a->strings["slap"] = "ohrfeigen";
-$a->strings["slapped"] = "ohrfeigte";
-$a->strings["finger"] = "befummeln";
-$a->strings["fingered"] = "befummelte";
-$a->strings["rebuff"] = "eine Abfuhr erteilen";
-$a->strings["rebuffed"] = "abfuhrerteilte";
-$a->strings["happy"] = "glücklich";
-$a->strings["sad"] = "traurig";
-$a->strings["mellow"] = "sanft";
-$a->strings["tired"] = "müde";
-$a->strings["perky"] = "frech";
-$a->strings["angry"] = "sauer";
-$a->strings["stupified"] = "verblüfft";
-$a->strings["puzzled"] = "verwirrt";
-$a->strings["interested"] = "interessiert";
-$a->strings["bitter"] = "verbittert";
-$a->strings["cheerful"] = "fröhlich";
-$a->strings["alive"] = "lebendig";
-$a->strings["annoyed"] = "verärgert";
-$a->strings["anxious"] = "unruhig";
-$a->strings["cranky"] = "schrullig";
-$a->strings["disturbed"] = "verstört";
-$a->strings["frustrated"] = "frustriert";
-$a->strings["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 zum Originalbeitrag";
-$a->strings["Select a page layout: "] = "Ein Seiten-Layout auswählen";
-$a->strings["default"] = "Standard";
-$a->strings["Page content type: "] = "Content-Typ der Seite";
-$a->strings["Select an alternate language"] = "Wähle eine alternative Sprache";
-$a->strings["activity"] = "Aktivität";
-$a->strings["Design"] = "Design";
-$a->strings["Blocks"] = "Blöcke";
-$a->strings["Menus"] = "Menüs";
-$a->strings["Layouts"] = "Layouts";
-$a->strings["Pages"] = "Seiten";
+$a->strings["Edit"] = "Bearbeiten";
$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.";
@@ -721,10 +693,6 @@ $a->strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltun
$a->strings["Love/Romance:"] = "Liebe/Romantik:";
$a->strings["Work/employment:"] = "Arbeit/Anstellung:";
$a->strings["School/education:"] = "Schule/Ausbildung:";
-$a->strings["Welcome "] = "Willkommen";
-$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilfoto hoch.";
-$a->strings["Welcome back "] = "Willkommen zurück";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das 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["Permission denied"] = "Keine Berechtigung";
$a->strings["Item not found."] = "Element nicht gefunden.";
$a->strings["Collection not found."] = "Sammlung nicht gefunden";
@@ -732,6 +700,44 @@ $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["Private Message"] = "Private Nachricht";
+$a->strings["save to folder"] = "In Ordner speichern";
+$a->strings["add star"] = "markieren";
+$a->strings["remove star"] = "Markierung entfernen";
+$a->strings["toggle star status"] = "Stern-Status umschalten";
+$a->strings["starred"] = "markiert";
+$a->strings["add tag"] = "Schlagwort hinzufügen";
+$a->strings["I like this (toggle)"] = "Ich mag das (Umschalter)";
+$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (Umschalter)";
+$a->strings["Share this"] = "Teile dies";
+$a->strings["share"] = "Teilen";
+$a->strings["View %s's profile - %s"] = "Schaue dir %s's Profil an - %s";
+$a->strings["to"] = "zu";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["Expires: %s"] = "Verfällt: %s";
+$a->strings["%d comment"] = array(
+ 0 => "%d Kommentar",
+ 1 => "%d Kommentare",
+);
+$a->strings["This is you"] = "Das bist du";
+$a->strings["Submit"] = "Bestätigen";
+$a->strings["Bold"] = "Fett";
+$a->strings["Italic"] = "Kursiv";
+$a->strings["Underline"] = "Unterstrichen";
+$a->strings["Quote"] = "Zitat";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Bild";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Welcome "] = "Willkommen";
+$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilfoto hoch.";
+$a->strings["Welcome back "] = "Willkommen zurück";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das 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["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["No channel."] = "Kein Channel.";
$a->strings["Common connections"] = "Gemeinsame Verbindungen";
$a->strings["No connections in common."] = "Keine gemeinsamen Verbindungen.";
@@ -752,16 +758,19 @@ $a->strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anp
$a->strings["Description:"] = "Beschreibung:";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Die Veranstaltung teilen";
+$a->strings["Thing updated"] = "Ding aktualisiert";
$a->strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen";
-$a->strings["thing/stuff added"] = "Ding/Zeugs hinzugefügt";
+$a->strings["Thing added"] = "Ding hinzugefügt";
$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
-$a->strings["not yet implemented."] = "noch nicht eingebaut.";
-$a->strings["Add Stuff to your Profile"] = "Füge Sachen zu deinem Profil hinzu";
+$a->strings["Show Thing"] = "Ding anzeigen";
+$a->strings["item not found."] = "Eintrag nicht gefunden";
+$a->strings["Edit Thing"] = "Ding bearbeiten";
$a->strings["Select a profile"] = "Wähle ein Profil";
$a->strings["Select a category of stuff. e.g. I ______ something"] = "Wähle eine Kategorie für das Zeugs, z.B. Ich ______ etwas";
-$a->strings["Name of thing or stuff e.g. something"] = "Name des Dings/Zeugs, z.B. etwas";
-$a->strings["URL of thing or stuff (optional)"] = "URL des Dings oder Zeugs (optional)";
-$a->strings["URL for photo of thing or stuff (optional)"] = "URL eines Fotos von dem Ding oder Zeugs (optional)";
+$a->strings["Name of thing e.g. something"] = "Name des Dings, z.B. Etwas";
+$a->strings["URL of thing (optional)"] = "URL des Dings (optional)";
+$a->strings["URL for photo of thing (optional)"] = "URL eines Fotos von dem Ding (optional)";
+$a->strings["Add Thing to your Profile"] = "Das Ding deinem Profil hinzufügen";
$a->strings["Total invitation limit exceeded."] = "Limit der maximalen Einladungen überschritten.";
$a->strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse.";
$a->strings["Please join us on Red"] = "Bitte schließe Dich uns an und werde Teil der Red Matrix";
@@ -933,6 +942,8 @@ $a->strings["In order to store these compiled templates, the web server needs to
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Zugriff zum Schreiben auf dieses Verzeichnis hat.";
$a->strings["Note: as a security measure, you should give the web server write access to view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: Als Sicherheitsvorkehrung solltest du dem Webserver nur Schreib-Zugriff auf das Verzeichnis view/tpl/smarty3 geben, nicht dem Vorlagen (.tpl) die in diesem Verzeichnis liegen.";
$a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 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 store Verzeichnis um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red Stammverzeichnis.";
+$a->strings["store is writable"] = "store ist schreibbar";
$a->strings["SSL certificate validation"] = "SSL Zertifikatverifizierung";
$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 schalte HTTPS ab um auf diese Seite zuzugreifen.";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite funktioniert in der .htaccess nicht. Überprüfe deine Server-Konfiguration.";
@@ -950,7 +961,6 @@ $a->strings["Public access denied."] = "Öffentlicher Zugang verweigert.";
$a->strings["No connections."] = "Keine Verbindungen.";
$a->strings["Visit %s's profile [%s]"] = "Besuche %s's Profil [%s]";
$a->strings["View Connnections"] = "Zeige Verbindungen";
-$a->strings["Cancel"] = "Abbrechen";
$a->strings["Tag removed"] = "Schlagwort entfernt";
$a->strings["Remove Item Tag"] = "Schlagwort des Beitrags entfernen";
$a->strings["Select a tag to remove: "] = "Schlagwort zum entfernen auswählen:";
@@ -1187,9 +1197,6 @@ $a->strings["Add a Tag"] = "Schlagwort hinzufügen";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["View Album"] = "Album ansehen";
$a->strings["Recent Photos"] = "Neueste Fotos";
-$a->strings["sent you a private message"] = "eine private Nachricht schicken";
-$a->strings["added your channel"] = "hat deinen Kanal hinzugefügt";
-$a->strings["posted an event"] = "hat eine Veranstaltung veröffentlicht";
$a->strings["- select -"] = "-auswählen-";
$a->strings["Menu updated."] = "Menü aktualisiert.";
$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren.";
@@ -1211,27 +1218,12 @@ $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["Welcome to %s"] = "Willkommen auf %s";
-$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["Conversation removed."] = "Unterhaltung 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["No messages."] = "Keine Nachrichten.";
-$a->strings["Delete message"] = "Nachricht löschen";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
-$a->strings["Message not found."] = "Nachricht nicht gefunden.";
-$a->strings["Recall message"] = "Widerrufe die Nachricht";
-$a->strings["Message has been recalled."] = "Die Nachricht wurde widerrufen.";
-$a->strings["Private Conversation"] = "Private Unterhaltung";
-$a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kannst du von der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
+$a->strings["Age: "] = "Alter:";
+$a->strings["Gender: "] = "Geschlecht:";
+$a->strings["Finding:"] = "Ergebnisse:";
+$a->strings["next page"] = "nächste Seite";
+$a->strings["previous page"] = "vorige Seite";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein).";
$a->strings["Blocked"] = "Blockiert";
$a->strings["Ignored"] = "Ignoriert";
$a->strings["Hidden"] = "Versteckt";
@@ -1330,8 +1322,9 @@ $a->strings["Love/romance"] = "Liebe/Romantik";
$a->strings["Work/employment"] = "Arbeit/Anstellung";
$a->strings["School/education"] = "Schule/Ausbildung";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden im Internet sichtbar sein.";
-$a->strings["Age: "] = "Alter:";
$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
+$a->strings["Add profile things"] = "Profil-Dinge hinzufügen";
+$a->strings["Include desirable objects in your profile"] = "binde begehrenswerte Dinge in dein Profil ein";
$a->strings["Add a Channel"] = "Channel hinzufügen";
$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist deine eigene Sammlung von verbundenen Webseiten. Ein Kanal kann genutzt werden, um Social Network-Profile, Blogs, Gesprächsgruppen und Foren, Promi-Seiten und viel mehr zu erfassen. Du kannst so viele Kanäle erstellen, wie es der Betreiber deiner Seite zulässt.";
$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Beispiele: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" ";
@@ -1339,9 +1332,15 @@ $a->strings["Choose a short nickname"] = "Wähle einen kurzen Spitznahmen";
$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 einfach zu erinnernde Kanal-Adresse (ähnlich einer E-Mail Adresse) zu erzeugen, die Du mit anderen austauschen kannst.";
$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "Oder <a href=\"import\">importiere einen bestehenden Kanal</a> von einem anderen Ort";
$a->strings["Permission Denied."] = "Zugriff verweigert.";
-$a->strings["Permission denied. VS."] = "Zugriff verweigert. VS.";
+$a->strings["File not found."] = "Datei nicht gefunden";
+$a->strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten";
+$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/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 auf die Datei von einer Webseite aus zu verweisen";
$a->strings["Download"] = "Download";
$a->strings["Used: "] = "Verwendet:";
+$a->strings["[directory]"] = "[Verzeichnis]";
$a->strings["Limit: "] = "Limit:";
$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts veranlasst. Rufe bitte Deine E-Mails ab.";
@@ -1481,6 +1480,24 @@ $a->strings["You are tagged in a post"] = "Du wurdest in einem Beitrag getaggt";
$a->strings["You are poked/prodded/etc. in a post"] = "Du in einer Nachricht angestupst/geknufft/o.ä. wirst";
$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account / Seiten Arten Einstellungen";
$a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen";
+$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["Message not found."] = "Nachricht nicht gefunden.";
+$a->strings["Delete message"] = "Nachricht löschen";
+$a->strings["Recall message"] = "Widerrufe die Nachricht";
+$a->strings["Message has been recalled."] = "Die Nachricht wurde widerrufen.";
+$a->strings["Private Conversation"] = "Private Unterhaltung";
+$a->strings["Delete conversation"] = "Unterhaltung löschen";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. <strong>Eventuell</strong> kannst du von der Profilseite des Absenders antworten.";
+$a->strings["Send Reply"] = "Antwort senden";
$a->strings["Item not found"] = "Element nicht gefunden";
$a->strings["Edit Layout"] = "Layout bearbeiten";
$a->strings["Insert YouTube video"] = "YouTube-Video einfügen";
@@ -1505,8 +1522,8 @@ $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["Edit Webpage"] = "Webseite bearbeiten";
-$a->strings["Delete Webpage"] = "Webseite löschen";
+$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden.";
+$a->strings["Delete item?"] = "Eintrag löschen?";
$a->strings["Invalid request identifier."] = "Ungültige Anfrage Identifikator.";
$a->strings["Discard"] = "Verwerfen";
$a->strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr.";
@@ -1514,7 +1531,9 @@ $a->strings["System Notifications"] = "System-Benachrichtigungen";
$a->strings["Block Name"] = "Block Name";
$a->strings["Unable to find your hub."] = "Konnte den Hub nicht finden.";
$a->strings["Post successful."] = "Veröffentlichung erfolgreich.";
-$a->strings["Item is not editable"] = "Element kann nicht bearbeitet werden.";
+$a->strings["Edit Webpage"] = "Webseite bearbeiten";
+$a->strings["Delete webpage?"] = "Webseite löschen?";
+$a->strings["Delete Webpage"] = "Webseite löschen";
$a->strings["Access to this profile has been restricted."] = "Der Zugang zu diesem Profil ist begrenzt.";
$a->strings["Poke/Prod"] = "Anstupsen/Kuffen";
$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
@@ -1527,7 +1546,6 @@ $a->strings["Insufficient permissions. Request redirected to profile page."] =
$a->strings["Not available."] = "Nicht verfügbar.";
$a->strings["Community"] = "Gemeinschaft";
$a->strings["No results."] = "Keine Ergebnisse.";
-$a->strings["Files"] = "Dateien";
$a->strings["Contact not found."] = "Kontakt nicht gefunden";
$a->strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden.";
$a->strings["Suggest Friends"] = "Kontakte Vorschlagen";
@@ -1539,12 +1557,6 @@ $a->strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits Editor";
$a->strings["Click on a contact to add or remove."] = "Wähle einen Kontakt zum Hinzufügen oder Löschen aus.";
$a->strings["Visible To"] = "Sichtbar für";
$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit sicherem Zuging zum Profil)";
-$a->strings["Unable to locate original post."] = "Originalbeitrag kann nicht gefunden werden.";
-$a->strings["Empty post discarded."] = "Leerer 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["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";
@@ -1555,6 +1567,9 @@ $a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
$a->strings["Suggestions, praise, donations, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an 'redmatrix' at librelist - dot - com";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn dies eine neue Seite ist versuche es bitte in 24 Stunden erneut.";
+$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
+$a->strings["No messages."] = "Keine Nachrichten.";
+$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
$a->strings["Public Sites"] = "Öffentliche Seiten";
$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 <strong>may</strong> provide additional details."] = "Die hier aufgeführten Seiten erlauben dir einen Account in der Red Matrix anzulegen. Alle Seiten der Matrix sind mit einander verbunden, so dass die Mitgliedschaft auf einer Seite die Mitgliedschaft auf einer beliebigen anderen Seite der Matrix beinhaltet. Es könnte sein, dass einige dieser Seiten Abonnements benötigen oder abgestufte Service-Pläne anbieten. Auf den jeweiligen Seiten <strong>könnten</strong> nähere Details diesbezüglich stehen.";
$a->strings["Site URL"] = "URL der Seite";
@@ -1566,6 +1581,8 @@ $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 dieser Seite / diesem Hub benötigen Zustimmung durch den Administrator";
+$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">Registrierung auf einer angeschlossenen Seite</a>";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
$a->strings["Terms of Service"] = "Nutzungsbedingungen";
$a->strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite";
@@ -1582,13 +1599,23 @@ $a->strings["Please enter your password for verification:"] = "Bitte gib zur Bes
$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"] = "Standartmäßig wird der Kanal nur auf diesem Knoten gelöscht, seine Klone verbleiben im Netzwerk";
$a->strings["Remove My Account"] = "Mein Konto entfernen";
-$a->strings["Gender: "] = "Geschlecht:";
-$a->strings["Finding:"] = "Ergebnisse:";
-$a->strings["next page"] = "nächste Seite";
-$a->strings["previous page"] = "vorige Seite";
-$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein).";
+$a->strings["Unable to locate original post."] = "Originalbeitrag kann nicht gefunden werden.";
+$a->strings["Empty post discarded."] = "Leerer 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["Mood"] = "Laune";
$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
+$a->strings["sent you a private message"] = "eine private Nachricht schicken";
+$a->strings["added your channel"] = "hat deinen Kanal hinzugefügt";
+$a->strings["posted an event"] = "hat eine Veranstaltung veröffentlicht";
+$a->strings["Status: "] = "Status:";
+$a->strings["Sexual Preference: "] = "Sexuelle Vorlieben:";
+$a->strings["Homepage: "] = "Webseite:";
+$a->strings["Hometown: "] = "Wohnort:";
+$a->strings["About: "] = "Über:";
+$a->strings["Keywords: "] = "Schlüsselbegriffe:";
$a->strings["Scheme Default"] = "Standard-Schema";
$a->strings["red"] = "Rot";
$a->strings["black"] = "Schwarz";
diff --git a/view/it/messages.po b/view/it/messages.po
index c16a2cf4a..6941bbf53 100644
--- a/view/it/messages.po
+++ b/view/it/messages.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Red Matrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-01-03 00:02-0800\n"
-"PO-Revision-Date: 2014-01-04 09:40+0000\n"
+"POT-Creation-Date: 2014-01-10 00:02-0800\n"
+"PO-Revision-Date: 2014-01-10 18:25+0000\n"
"Last-Translator: tuscanhobbit Pa <pynolo@tarine.net>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/red-matrix/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -35,25 +35,25 @@ msgstr "mostra"
msgid "don't show"
msgstr "non mostrare"
-#: ../../include/activities.php:37
+#: ../../include/activities.php:39
msgid " and "
msgstr "e"
-#: ../../include/activities.php:45
+#: ../../include/activities.php:47
msgid "public profile"
msgstr "profilo pubblico"
-#: ../../include/activities.php:50
+#: ../../include/activities.php:52
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s ha cambiato %2$s in &ldquo;%3$s&rdquo;"
-#: ../../include/activities.php:51
+#: ../../include/activities.php:53
#, php-format
msgid "Visit %1$s's %2$s"
msgstr "Guarda %2$s di %1$s "
-#: ../../include/activities.php:54
+#: ../../include/activities.php:56
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s ha aggiornato %2$s cambiando %3$s."
@@ -78,7 +78,7 @@ msgstr "Bacheca"
msgid "Your posts and conversations"
msgstr "I tuoi articoli e conversazioni"
-#: ../../include/nav.php:76 ../../include/conversation.php:929
+#: ../../include/nav.php:76 ../../include/conversation.php:932
#: ../../mod/connedit.php:309 ../../mod/connedit.php:423
msgid "View Profile"
msgstr "Profilo"
@@ -95,7 +95,7 @@ msgstr "Modifica i profili"
msgid "Manage/Edit Profiles"
msgstr "Gestisci e modifica i profili"
-#: ../../include/nav.php:79 ../../include/conversation.php:1459
+#: ../../include/nav.php:79 ../../include/conversation.php:1462
#: ../../mod/fbrowser.php:25
msgid "Photos"
msgstr "Foto"
@@ -242,7 +242,7 @@ msgstr "Inviati"
msgid "New Message"
msgstr "Nuovo messaggio"
-#: ../../include/nav.php:171 ../../include/conversation.php:1470
+#: ../../include/nav.php:171 ../../include/conversation.php:1482
#: ../../mod/events.php:354
msgid "Events"
msgstr "Eventi"
@@ -300,10 +300,14 @@ msgstr "Niente di nuovo qui"
msgid "Please wait..."
msgstr "Attendere..."
+#: ../../include/reddav.php:940
+msgid "Edit File properties"
+msgstr "Modifica le proprietà dei file"
+
#: ../../include/Contact.php:104 ../../include/widgets.php:115
#: ../../include/widgets.php:155 ../../include/identity.php:625
#: ../../mod/directory.php:182 ../../mod/match.php:62 ../../mod/suggest.php:51
-#: ../../mod/dirprofile.php:162
+#: ../../mod/dirprofile.php:165
msgid "Connect"
msgstr "Entra in contatto"
@@ -379,7 +383,7 @@ msgstr "Cartelle salvate"
msgid "Everything"
msgstr "Tutto"
-#: ../../include/widgets.php:318 ../../include/items.php:3558
+#: ../../include/widgets.php:318 ../../include/items.php:3566
msgid "Archives"
msgstr "Archivi"
@@ -642,10 +646,337 @@ msgstr "Fine:"
#: ../../include/event.php:40 ../../include/identity.php:676
#: ../../include/bb2diaspora.php:455 ../../mod/events.php:463
-#: ../../mod/directory.php:156 ../../mod/dirprofile.php:106
+#: ../../mod/directory.php:156 ../../mod/dirprofile.php:108
msgid "Location:"
msgstr "Luogo:"
+#: ../../include/text.php:315
+msgid "prev"
+msgstr "prec"
+
+#: ../../include/text.php:317
+msgid "first"
+msgstr "inizio"
+
+#: ../../include/text.php:346
+msgid "last"
+msgstr "fine"
+
+#: ../../include/text.php:349
+msgid "next"
+msgstr "succ"
+
+#: ../../include/text.php:361
+msgid "older"
+msgstr "più recenti"
+
+#: ../../include/text.php:363
+msgid "newer"
+msgstr "più nuovi"
+
+#: ../../include/text.php:654
+msgid "No connections"
+msgstr "Nessun contatto"
+
+#: ../../include/text.php:665
+#, php-format
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] "%d contatto"
+msgstr[1] "%d contatti"
+
+#: ../../include/text.php:677
+msgid "View Connections"
+msgstr "Elenco contatti"
+
+#: ../../include/text.php:818
+msgid "poke"
+msgstr "poke"
+
+#: ../../include/text.php:818 ../../include/conversation.php:240
+msgid "poked"
+msgstr "ha ricevuto un poke"
+
+#: ../../include/text.php:819
+msgid "ping"
+msgstr "ping"
+
+#: ../../include/text.php:819
+msgid "pinged"
+msgstr "ha ricevuto un ping"
+
+#: ../../include/text.php:820
+msgid "prod"
+msgstr "prod"
+
+#: ../../include/text.php:820
+msgid "prodded"
+msgstr "ha ricevuto un prod"
+
+#: ../../include/text.php:821
+msgid "slap"
+msgstr "schiaffo"
+
+#: ../../include/text.php:821
+msgid "slapped"
+msgstr "ha ricevuto uno schiaffo"
+
+#: ../../include/text.php:822
+msgid "finger"
+msgstr "finger"
+
+#: ../../include/text.php:822
+msgid "fingered"
+msgstr "ha ricevuto un finger"
+
+#: ../../include/text.php:823
+msgid "rebuff"
+msgstr "rifiuto"
+
+#: ../../include/text.php:823
+msgid "rebuffed"
+msgstr "ha ricevuto un rifiuto"
+
+#: ../../include/text.php:835
+msgid "happy"
+msgstr "allegro"
+
+#: ../../include/text.php:836
+msgid "sad"
+msgstr "triste"
+
+#: ../../include/text.php:837
+msgid "mellow"
+msgstr "calmo"
+
+#: ../../include/text.php:838
+msgid "tired"
+msgstr "stanco"
+
+#: ../../include/text.php:839
+msgid "perky"
+msgstr "vivace"
+
+#: ../../include/text.php:840
+msgid "angry"
+msgstr "arrabbiato"
+
+#: ../../include/text.php:841
+msgid "stupified"
+msgstr "stordito"
+
+#: ../../include/text.php:842
+msgid "puzzled"
+msgstr "confuso"
+
+#: ../../include/text.php:843
+msgid "interested"
+msgstr "attento"
+
+#: ../../include/text.php:844
+msgid "bitter"
+msgstr "amaro"
+
+#: ../../include/text.php:845
+msgid "cheerful"
+msgstr "allegro"
+
+#: ../../include/text.php:846
+msgid "alive"
+msgstr "vivace"
+
+#: ../../include/text.php:847
+msgid "annoyed"
+msgstr "seccato"
+
+#: ../../include/text.php:848
+msgid "anxious"
+msgstr "ansioso"
+
+#: ../../include/text.php:849
+msgid "cranky"
+msgstr "irritabile"
+
+#: ../../include/text.php:850
+msgid "disturbed"
+msgstr "turbato"
+
+#: ../../include/text.php:851
+msgid "frustrated"
+msgstr "frustrato"
+
+#: ../../include/text.php:852
+msgid "motivated"
+msgstr "motivato"
+
+#: ../../include/text.php:853
+msgid "relaxed"
+msgstr "rilassato"
+
+#: ../../include/text.php:854
+msgid "surprised"
+msgstr "sorpreso"
+
+#: ../../include/text.php:1016
+msgid "Monday"
+msgstr "lunedì"
+
+#: ../../include/text.php:1016
+msgid "Tuesday"
+msgstr "martedì"
+
+#: ../../include/text.php:1016
+msgid "Wednesday"
+msgstr "mercoledì"
+
+#: ../../include/text.php:1016
+msgid "Thursday"
+msgstr "giovedì"
+
+#: ../../include/text.php:1016
+msgid "Friday"
+msgstr "venerdì"
+
+#: ../../include/text.php:1016
+msgid "Saturday"
+msgstr "sabato"
+
+#: ../../include/text.php:1016
+msgid "Sunday"
+msgstr "domenica"
+
+#: ../../include/text.php:1020
+msgid "January"
+msgstr "gennaio"
+
+#: ../../include/text.php:1020
+msgid "February"
+msgstr "febbraio"
+
+#: ../../include/text.php:1020
+msgid "March"
+msgstr "marzo"
+
+#: ../../include/text.php:1020
+msgid "April"
+msgstr "aprile"
+
+#: ../../include/text.php:1020
+msgid "May"
+msgstr "maggio"
+
+#: ../../include/text.php:1020
+msgid "June"
+msgstr "giugno"
+
+#: ../../include/text.php:1020
+msgid "July"
+msgstr "luglio"
+
+#: ../../include/text.php:1020
+msgid "August"
+msgstr "agosto"
+
+#: ../../include/text.php:1020
+msgid "September"
+msgstr "settembre"
+
+#: ../../include/text.php:1020
+msgid "October"
+msgstr "ottobre"
+
+#: ../../include/text.php:1020
+msgid "November"
+msgstr "novembre"
+
+#: ../../include/text.php:1020
+msgid "December"
+msgstr "dicembre"
+
+#: ../../include/text.php:1098
+msgid "unknown.???"
+msgstr "sconosciuto???"
+
+#: ../../include/text.php:1099
+msgid "bytes"
+msgstr "byte"
+
+#: ../../include/text.php:1134
+msgid "remove category"
+msgstr "rimuovi la categoria"
+
+#: ../../include/text.php:1156
+msgid "remove from file"
+msgstr "rimuovi dal file"
+
+#: ../../include/text.php:1214 ../../include/text.php:1226
+msgid "Click to open/close"
+msgstr "Clicca per aprire/chiudere"
+
+#: ../../include/text.php:1402 ../../mod/events.php:332
+msgid "link to source"
+msgstr "Link all'originale"
+
+#: ../../include/text.php:1421
+msgid "Select a page layout: "
+msgstr "Scegli il layout della pagina:"
+
+#: ../../include/text.php:1424 ../../include/text.php:1489
+msgid "default"
+msgstr "predefinito"
+
+#: ../../include/text.php:1460
+msgid "Page content type: "
+msgstr "Contenuto della pagina:"
+
+#: ../../include/text.php:1501
+msgid "Select an alternate language"
+msgstr "Seleziona una lingua diversa"
+
+#: ../../include/text.php:1653 ../../include/conversation.php:117
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
+msgid "photo"
+msgstr "la foto"
+
+#: ../../include/text.php:1656 ../../include/conversation.php:120
+#: ../../mod/tagger.php:49
+msgid "event"
+msgstr "l'evento"
+
+#: ../../include/text.php:1659 ../../include/conversation.php:145
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
+msgid "status"
+msgstr "il messaggio di stato"
+
+#: ../../include/text.php:1661 ../../include/conversation.php:147
+#: ../../mod/tagger.php:55
+msgid "comment"
+msgstr "il commento"
+
+#: ../../include/text.php:1666
+msgid "activity"
+msgstr "l'attività"
+
+#: ../../include/text.php:1928
+msgid "Design"
+msgstr "Design"
+
+#: ../../include/text.php:1930
+msgid "Blocks"
+msgstr "Riquadri"
+
+#: ../../include/text.php:1931
+msgid "Menus"
+msgstr "Menù"
+
+#: ../../include/text.php:1932
+msgid "Layouts"
+msgstr "Layout"
+
+#: ../../include/text.php:1933
+msgid "Pages"
+msgstr "Pagine"
+
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
@@ -685,13 +1016,13 @@ msgstr "Canali che non sono in un insieme"
msgid "Delete this item?"
msgstr "Eliminare questo elemento?"
-#: ../../include/js_strings.php:6 ../../include/ItemObject.php:530
-#: ../../mod/photos.php:1081 ../../mod/photos.php:1168
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:536
+#: ../../mod/photos.php:1099 ../../mod/photos.php:1186
msgid "Comment"
msgstr "Commento"
#: ../../include/js_strings.php:7 ../../include/contact_widgets.php:125
-#: ../../include/ItemObject.php:269
+#: ../../include/ItemObject.php:270
msgid "show more"
msgstr "mostra tutto"
@@ -809,7 +1140,7 @@ msgid "Stored post could not be verified."
msgstr "Non è stato possibile verificare l'articolo inserito."
#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
-#: ../../mod/photos.php:91 ../../mod/photos.php:767 ../../mod/photos.php:789
+#: ../../mod/photos.php:91 ../../mod/photos.php:783 ../../mod/photos.php:805
#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
#: ../../mod/profile_photo.php:336
msgid "Profile Photos"
@@ -819,25 +1150,29 @@ msgstr "Foto del profilo"
msgid "view full size"
msgstr "guarda nelle dimensioni reali"
-#: ../../include/bbcode.php:94 ../../include/bbcode.php:497
-#: ../../include/bbcode.php:500
+#: ../../include/bbcode.php:94 ../../include/bbcode.php:509
+#: ../../include/bbcode.php:512
msgid "Image/photo"
msgstr "Immagine"
-#: ../../include/bbcode.php:129 ../../include/bbcode.php:505
+#: ../../include/bbcode.php:129 ../../include/bbcode.php:517
msgid "Encrypted content"
msgstr "Contenuto crittografato"
-#: ../../include/bbcode.php:176
+#: ../../include/bbcode.php:136
+msgid "QR code"
+msgstr "QR code"
+
+#: ../../include/bbcode.php:179
#, php-format
msgid "%1$s wrote the following %2$s %3$s"
msgstr "%1$s ha scritto %2$s seguente %3$s"
-#: ../../include/bbcode.php:178
+#: ../../include/bbcode.php:181
msgid "post"
msgstr "l'articolo"
-#: ../../include/bbcode.php:457 ../../include/bbcode.php:477
+#: ../../include/bbcode.php:469 ../../include/bbcode.php:489
msgid "$1 wrote:"
msgstr "$1 ha scritto:"
@@ -1058,30 +1393,10 @@ msgstr "Nuvola di tag"
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/conversation.php:117 ../../include/text.php:1653
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
-msgid "photo"
-msgstr "la foto"
-
-#: ../../include/conversation.php:120 ../../include/text.php:1656
-#: ../../mod/tagger.php:49
-msgid "event"
-msgstr "l'evento"
-
#: ../../include/conversation.php:123
msgid "channel"
msgstr "canale"
-#: ../../include/conversation.php:145 ../../include/text.php:1659
-#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
-msgid "status"
-msgstr "il messaggio di stato"
-
-#: ../../include/conversation.php:147 ../../include/text.php:1661
-#: ../../mod/tagger.php:55
-msgid "comment"
-msgstr "il commento"
-
#: ../../include/conversation.php:161 ../../mod/like.php:134
#, php-format
msgid "%1$s likes %2$s's %3$s"
@@ -1102,27 +1417,23 @@ msgstr "%1$s adesso è connesso con %2$s"
msgid "%1$s poked %2$s"
msgstr "%1$s ha mandato un poke a %2$s"
-#: ../../include/conversation.php:240 ../../include/text.php:818
-msgid "poked"
-msgstr "ha ricevuto un poke"
-
#: ../../include/conversation.php:258 ../../mod/mood.php:63
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s al momento è %2$s"
-#: ../../include/conversation.php:631 ../../include/ItemObject.php:113
+#: ../../include/conversation.php:631 ../../include/ItemObject.php:114
msgid "Select"
msgstr "Seleziona"
-#: ../../include/conversation.php:632 ../../include/ItemObject.php:107
+#: ../../include/conversation.php:632 ../../include/ItemObject.php:108
#: ../../mod/thing.php:230 ../../mod/connedit.php:356 ../../mod/admin.php:693
-#: ../../mod/group.php:176 ../../mod/photos.php:1132
-#: ../../mod/filestorage.php:82 ../../mod/settings.php:570
+#: ../../mod/group.php:176 ../../mod/photos.php:1150
+#: ../../mod/filestorage.php:172 ../../mod/settings.php:570
msgid "Delete"
msgstr "Elimina"
-#: ../../include/conversation.php:642 ../../include/ItemObject.php:160
+#: ../../include/conversation.php:642 ../../include/ItemObject.php:161
msgid "Message is verified"
msgstr "Messaggio verificato"
@@ -1139,12 +1450,12 @@ msgstr "Categorie:"
msgid "Filed under:"
msgstr "Classificato come:"
-#: ../../include/conversation.php:686 ../../include/ItemObject.php:216
+#: ../../include/conversation.php:686 ../../include/ItemObject.php:217
#, php-format
msgid " from %s"
msgstr " da %s"
-#: ../../include/conversation.php:689 ../../include/ItemObject.php:219
+#: ../../include/conversation.php:689 ../../include/ItemObject.php:220
#, php-format
msgid "last edited: %s"
msgstr "ultima modifica: %s"
@@ -1153,356 +1464,364 @@ msgstr "ultima modifica: %s"
msgid "View in context"
msgstr "Vedi nel contesto"
-#: ../../include/conversation.php:706 ../../include/conversation.php:1116
-#: ../../include/ItemObject.php:247 ../../mod/photos.php:1063
-#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:109
-#: ../../mod/editwebpage.php:152 ../../mod/editpost.php:106
-#: ../../mod/editblock.php:123
+#: ../../include/conversation.php:706 ../../include/conversation.php:1119
+#: ../../include/ItemObject.php:248 ../../mod/photos.php:1081
+#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:110
+#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:153
+#: ../../mod/editblock.php:124
msgid "Please wait"
msgstr "Attendere"
-#: ../../include/conversation.php:830
+#: ../../include/conversation.php:833
msgid "remove"
msgstr "rimuovi"
-#: ../../include/conversation.php:834
+#: ../../include/conversation.php:837
msgid "Loading..."
msgstr "Caricamento in corso..."
-#: ../../include/conversation.php:835
+#: ../../include/conversation.php:838
msgid "Delete Selected Items"
msgstr "Elimina gli oggetti selezionati"
-#: ../../include/conversation.php:926
+#: ../../include/conversation.php:929
msgid "View Source"
msgstr "Vedi il sorgente"
-#: ../../include/conversation.php:927
+#: ../../include/conversation.php:930
msgid "Follow Thread"
msgstr "Segui la discussione"
-#: ../../include/conversation.php:928
+#: ../../include/conversation.php:931
msgid "View Status"
msgstr "Guarda il messaggio di stato"
-#: ../../include/conversation.php:930
+#: ../../include/conversation.php:933
msgid "View Photos"
msgstr "Guarda le foto"
-#: ../../include/conversation.php:931
+#: ../../include/conversation.php:934
msgid "Matrix Activity"
msgstr "Attività nella tua rete"
-#: ../../include/conversation.php:932
+#: ../../include/conversation.php:935
msgid "Edit Contact"
msgstr "Modifica il contatto"
-#: ../../include/conversation.php:933
+#: ../../include/conversation.php:936
msgid "Send PM"
msgstr "Invia messaggio privato"
-#: ../../include/conversation.php:934
+#: ../../include/conversation.php:937
msgid "Poke"
msgstr "Poke"
-#: ../../include/conversation.php:996
+#: ../../include/conversation.php:999
#, php-format
msgid "%s likes this."
msgstr "Piace a %s."
-#: ../../include/conversation.php:996
+#: ../../include/conversation.php:999
#, php-format
msgid "%s doesn't like this."
msgstr "Non piace a %s."
-#: ../../include/conversation.php:1000
+#: ../../include/conversation.php:1003
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgid_plural "<span %1$s>%2$d people</span> like this."
msgstr[0] ""
msgstr[1] "Piace a <span %1$s>%2$d persone</span>."
-#: ../../include/conversation.php:1002
+#: ../../include/conversation.php:1005
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgid_plural "<span %1$s>%2$d people</span> don't like this."
msgstr[0] ""
msgstr[1] "Non piace a <span %1$s>%2$d persone</span>."
-#: ../../include/conversation.php:1008
+#: ../../include/conversation.php:1011
msgid "and"
msgstr "e"
-#: ../../include/conversation.php:1011
+#: ../../include/conversation.php:1014
#, php-format
msgid ", and %d other people"
msgid_plural ", and %d other people"
msgstr[0] ""
msgstr[1] "e altre %d persone"
-#: ../../include/conversation.php:1012
+#: ../../include/conversation.php:1015
#, php-format
msgid "%s like this."
msgstr "Piace a %s."
-#: ../../include/conversation.php:1012
+#: ../../include/conversation.php:1015
#, php-format
msgid "%s don't like this."
msgstr "Non piace a %s."
-#: ../../include/conversation.php:1062
+#: ../../include/conversation.php:1065
msgid "Visible to <strong>everybody</strong>"
msgstr "Visibile a <strong>tutti</strong>"
-#: ../../include/conversation.php:1063 ../../mod/mail.php:171
+#: ../../include/conversation.php:1066 ../../mod/mail.php:171
#: ../../mod/mail.php:269
msgid "Please enter a link URL:"
msgstr "Inserisci l'indirizzo del link:"
-#: ../../include/conversation.php:1064
+#: ../../include/conversation.php:1067
msgid "Please enter a video link/URL:"
msgstr "Inserisci l'indirizzo del video:"
-#: ../../include/conversation.php:1065
+#: ../../include/conversation.php:1068
msgid "Please enter an audio link/URL:"
msgstr "Inserisci l'indirizzo dell'audio:"
-#: ../../include/conversation.php:1066
+#: ../../include/conversation.php:1069
msgid "Tag term:"
msgstr "Tag:"
-#: ../../include/conversation.php:1067 ../../mod/filer.php:35
+#: ../../include/conversation.php:1070 ../../mod/filer.php:35
msgid "Save to Folder:"
msgstr "Salva nella cartella:"
-#: ../../include/conversation.php:1068
+#: ../../include/conversation.php:1071
msgid "Where are you right now?"
msgstr "Dove sei ora?"
-#: ../../include/conversation.php:1069 ../../mod/mail.php:172
+#: ../../include/conversation.php:1072 ../../mod/mail.php:172
#: ../../mod/mail.php:270 ../../mod/editpost.php:52
msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Scadenza il AAAA-MM-GG OO:MM"
-#: ../../include/conversation.php:1079 ../../include/ItemObject.php:540
-#: ../../mod/webpages.php:122 ../../mod/photos.php:1083
-#: ../../mod/editlayout.php:129 ../../mod/editwebpage.php:176
-#: ../../mod/editpost.php:126 ../../mod/editblock.php:144
+#: ../../include/conversation.php:1082 ../../include/ItemObject.php:546
+#: ../../mod/webpages.php:122 ../../mod/photos.php:1101
+#: ../../mod/editlayout.php:130 ../../mod/editpost.php:127
+#: ../../mod/editwebpage.php:177 ../../mod/editblock.php:145
msgid "Preview"
msgstr "Anteprima"
-#: ../../include/conversation.php:1093 ../../mod/photos.php:1062
+#: ../../include/conversation.php:1096 ../../mod/photos.php:1080
msgid "Share"
msgstr "Condividi"
-#: ../../include/conversation.php:1095 ../../mod/editwebpage.php:139
+#: ../../include/conversation.php:1098 ../../mod/editwebpage.php:140
msgid "Page link title"
msgstr "Link del titolo"
-#: ../../include/conversation.php:1097 ../../mod/mail.php:219
-#: ../../mod/mail.php:332 ../../mod/editlayout.php:101
-#: ../../mod/editwebpage.php:144 ../../mod/editpost.php:98
-#: ../../mod/editblock.php:115
+#: ../../include/conversation.php:1100 ../../mod/mail.php:219
+#: ../../mod/mail.php:332 ../../mod/editlayout.php:102
+#: ../../mod/editpost.php:99 ../../mod/editwebpage.php:145
+#: ../../mod/editblock.php:116
msgid "Upload photo"
msgstr "Carica foto"
-#: ../../include/conversation.php:1098
+#: ../../include/conversation.php:1101
msgid "upload photo"
msgstr "carica foto"
-#: ../../include/conversation.php:1099 ../../mod/mail.php:220
-#: ../../mod/mail.php:333 ../../mod/editlayout.php:102
-#: ../../mod/editwebpage.php:145 ../../mod/editpost.php:99
-#: ../../mod/editblock.php:116
+#: ../../include/conversation.php:1102 ../../mod/mail.php:220
+#: ../../mod/mail.php:333 ../../mod/editlayout.php:103
+#: ../../mod/editpost.php:100 ../../mod/editwebpage.php:146
+#: ../../mod/editblock.php:117
msgid "Attach file"
msgstr "Allega file"
-#: ../../include/conversation.php:1100
+#: ../../include/conversation.php:1103
msgid "attach file"
msgstr "allega file"
-#: ../../include/conversation.php:1101 ../../mod/mail.php:221
-#: ../../mod/mail.php:334 ../../mod/editlayout.php:103
-#: ../../mod/editwebpage.php:146 ../../mod/editpost.php:100
-#: ../../mod/editblock.php:117
+#: ../../include/conversation.php:1104 ../../mod/mail.php:221
+#: ../../mod/mail.php:334 ../../mod/editlayout.php:104
+#: ../../mod/editpost.php:101 ../../mod/editwebpage.php:147
+#: ../../mod/editblock.php:118
msgid "Insert web link"
msgstr "Inserisci un indirizzo web"
-#: ../../include/conversation.php:1102
+#: ../../include/conversation.php:1105
msgid "web link"
msgstr "link web"
-#: ../../include/conversation.php:1103
+#: ../../include/conversation.php:1106
msgid "Insert video link"
msgstr "Inserisci l'indirizzo di un video"
-#: ../../include/conversation.php:1104
+#: ../../include/conversation.php:1107
msgid "video link"
msgstr "link video"
-#: ../../include/conversation.php:1105
+#: ../../include/conversation.php:1108
msgid "Insert audio link"
msgstr "Inserisci l'indirizzo di un audio"
-#: ../../include/conversation.php:1106
+#: ../../include/conversation.php:1109
msgid "audio link"
msgstr "link audio"
-#: ../../include/conversation.php:1107 ../../mod/editlayout.php:107
-#: ../../mod/editwebpage.php:150 ../../mod/editpost.php:104
-#: ../../mod/editblock.php:121
+#: ../../include/conversation.php:1110 ../../mod/editlayout.php:108
+#: ../../mod/editpost.php:105 ../../mod/editwebpage.php:151
+#: ../../mod/editblock.php:122
msgid "Set your location"
msgstr "La tua località"
-#: ../../include/conversation.php:1108
+#: ../../include/conversation.php:1111
msgid "set location"
msgstr "la tua località"
-#: ../../include/conversation.php:1109 ../../mod/editlayout.php:108
-#: ../../mod/editwebpage.php:151 ../../mod/editpost.php:105
-#: ../../mod/editblock.php:122
+#: ../../include/conversation.php:1112 ../../mod/editlayout.php:109
+#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:152
+#: ../../mod/editblock.php:123
msgid "Clear browser location"
msgstr "Rimuovi la località data dal browser"
-#: ../../include/conversation.php:1110
+#: ../../include/conversation.php:1113
msgid "clear location"
msgstr "rimuovi la località"
-#: ../../include/conversation.php:1112 ../../mod/editlayout.php:121
-#: ../../mod/editwebpage.php:168 ../../mod/editpost.php:118
-#: ../../mod/editblock.php:136
+#: ../../include/conversation.php:1115 ../../mod/editlayout.php:122
+#: ../../mod/editpost.php:119 ../../mod/editwebpage.php:169
+#: ../../mod/editblock.php:137
msgid "Set title"
msgstr "Scegli un titolo"
-#: ../../include/conversation.php:1115 ../../mod/editlayout.php:123
-#: ../../mod/editwebpage.php:170 ../../mod/editpost.php:120
-#: ../../mod/editblock.php:138
+#: ../../include/conversation.php:1118 ../../mod/editlayout.php:124
+#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:171
+#: ../../mod/editblock.php:139
msgid "Categories (comma-separated list)"
msgstr "Categorie (separate da virgola)"
-#: ../../include/conversation.php:1117 ../../mod/editlayout.php:110
-#: ../../mod/editwebpage.php:153 ../../mod/editpost.php:107
-#: ../../mod/editblock.php:124
+#: ../../include/conversation.php:1120 ../../mod/editlayout.php:111
+#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:154
+#: ../../mod/editblock.php:125
msgid "Permission settings"
msgstr "Impostazioni permessi"
-#: ../../include/conversation.php:1118
+#: ../../include/conversation.php:1121
msgid "permissions"
msgstr "permessi"
-#: ../../include/conversation.php:1126 ../../mod/editlayout.php:118
-#: ../../mod/editwebpage.php:163 ../../mod/editpost.php:115
-#: ../../mod/editblock.php:133
+#: ../../include/conversation.php:1129 ../../mod/editlayout.php:119
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:164
+#: ../../mod/editblock.php:134
msgid "Public post"
msgstr "Articolo pubblico"
-#: ../../include/conversation.php:1128 ../../mod/editlayout.php:124
-#: ../../mod/editwebpage.php:171 ../../mod/editpost.php:121
-#: ../../mod/editblock.php:139
+#: ../../include/conversation.php:1131 ../../mod/editlayout.php:125
+#: ../../mod/editpost.php:122 ../../mod/editwebpage.php:172
+#: ../../mod/editblock.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Per esempio: mario@esempio.com, simona@esempio.com"
-#: ../../include/conversation.php:1141 ../../mod/mail.php:226
-#: ../../mod/mail.php:339 ../../mod/editlayout.php:134
-#: ../../mod/editwebpage.php:181 ../../mod/editpost.php:132
-#: ../../mod/editblock.php:149
+#: ../../include/conversation.php:1144 ../../mod/mail.php:226
+#: ../../mod/mail.php:339 ../../mod/editlayout.php:135
+#: ../../mod/editpost.php:133 ../../mod/editwebpage.php:182
+#: ../../mod/editblock.php:150
msgid "Set expiration date"
msgstr "Data di scadenza"
-#: ../../include/conversation.php:1143 ../../include/ItemObject.php:543
-#: ../../mod/mail.php:228 ../../mod/mail.php:341 ../../mod/editpost.php:134
+#: ../../include/conversation.php:1146 ../../include/ItemObject.php:549
+#: ../../mod/mail.php:228 ../../mod/mail.php:341 ../../mod/editpost.php:135
msgid "Encrypt text"
msgstr "Crittografia del testo"
-#: ../../include/conversation.php:1145 ../../mod/editpost.php:135
+#: ../../include/conversation.php:1148 ../../mod/editpost.php:136
msgid "OK"
msgstr "OK"
-#: ../../include/conversation.php:1146 ../../mod/tagrm.php:11
+#: ../../include/conversation.php:1149 ../../mod/tagrm.php:11
#: ../../mod/tagrm.php:94 ../../mod/settings.php:508
-#: ../../mod/settings.php:534 ../../mod/editpost.php:136
+#: ../../mod/settings.php:534 ../../mod/editpost.php:137
#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
msgid "Cancel"
msgstr "Annulla"
-#: ../../include/conversation.php:1373
+#: ../../include/conversation.php:1376
msgid "Commented Order"
msgstr "Ultimi commenti"
-#: ../../include/conversation.php:1376
+#: ../../include/conversation.php:1379
msgid "Sort by Comment Date"
msgstr "Per data del commento"
-#: ../../include/conversation.php:1379
+#: ../../include/conversation.php:1382
msgid "Posted Order"
msgstr "Ultimi articoli"
-#: ../../include/conversation.php:1382
+#: ../../include/conversation.php:1385
msgid "Sort by Post Date"
msgstr "Per data di creazione"
-#: ../../include/conversation.php:1386
+#: ../../include/conversation.php:1389
msgid "Personal"
msgstr "Personali"
-#: ../../include/conversation.php:1389
+#: ../../include/conversation.php:1392
msgid "Posts that mention or involve you"
msgstr "Articoli che ti riguardano o ti menzionano"
-#: ../../include/conversation.php:1392 ../../mod/menu.php:57
+#: ../../include/conversation.php:1395 ../../mod/menu.php:57
#: ../../mod/connections.php:209
msgid "New"
msgstr "Novità"
-#: ../../include/conversation.php:1395
+#: ../../include/conversation.php:1398
msgid "Activity Stream - by date"
msgstr "Elenco attività - per data"
-#: ../../include/conversation.php:1402
+#: ../../include/conversation.php:1405
msgid "Starred"
msgstr "Preferiti"
-#: ../../include/conversation.php:1405
+#: ../../include/conversation.php:1408
msgid "Favourite Posts"
msgstr "Articoli preferiti"
-#: ../../include/conversation.php:1412
+#: ../../include/conversation.php:1415
msgid "Spam"
msgstr "Spam"
-#: ../../include/conversation.php:1415
+#: ../../include/conversation.php:1418
msgid "Posts flagged as SPAM"
msgstr "Articoli marcati come spam"
-#: ../../include/conversation.php:1445
+#: ../../include/conversation.php:1448
msgid "Channel"
msgstr "Canale"
-#: ../../include/conversation.php:1448
+#: ../../include/conversation.php:1451
msgid "Status Messages and Posts"
msgstr "Articoli e messaggi di stato"
-#: ../../include/conversation.php:1452
+#: ../../include/conversation.php:1455
msgid "About"
msgstr "Informazioni"
-#: ../../include/conversation.php:1455
+#: ../../include/conversation.php:1458
msgid "Profile Details"
msgstr "Dettagli del profilo"
-#: ../../include/conversation.php:1462 ../../include/photos.php:296
+#: ../../include/conversation.php:1465 ../../include/photos.php:297
msgid "Photo Albums"
msgstr "Album foto"
+#: ../../include/conversation.php:1470 ../../mod/fbrowser.php:114
+msgid "Files"
+msgstr "Elenco file"
+
#: ../../include/conversation.php:1473
+msgid "Files and Storage"
+msgstr "Archivio file"
+
+#: ../../include/conversation.php:1485
msgid "Events and Calendar"
msgstr "Calendario eventi"
-#: ../../include/conversation.php:1478
+#: ../../include/conversation.php:1490
msgid "Webpages"
msgstr "Pagine web"
-#: ../../include/conversation.php:1481
+#: ../../include/conversation.php:1493
msgid "Manage Webpages"
msgstr "Gestisci le pagine web"
@@ -1515,12 +1834,12 @@ msgstr "Ha creato un nuovo articolo"
msgid "commented on %s's post"
msgstr "ha commentato l'articolo di %s"
-#: ../../include/photos.php:15 ../../include/attach.php:102
-#: ../../include/attach.php:133 ../../include/attach.php:189
-#: ../../include/attach.php:204 ../../include/attach.php:237
-#: ../../include/attach.php:251 ../../include/attach.php:272
-#: ../../include/attach.php:464 ../../include/attach.php:539
-#: ../../include/items.php:3437 ../../mod/common.php:35
+#: ../../include/photos.php:15 ../../include/attach.php:97
+#: ../../include/attach.php:128 ../../include/attach.php:184
+#: ../../include/attach.php:199 ../../include/attach.php:232
+#: ../../include/attach.php:246 ../../include/attach.php:267
+#: ../../include/attach.php:461 ../../include/attach.php:539
+#: ../../include/items.php:3445 ../../mod/common.php:35
#: ../../mod/events.php:140 ../../mod/thing.php:241 ../../mod/thing.php:257
#: ../../mod/thing.php:291 ../../mod/invite.php:13 ../../mod/invite.php:104
#: ../../mod/connedit.php:179 ../../mod/webpages.php:40 ../../mod/api.php:26
@@ -1528,22 +1847,26 @@ msgstr "ha commentato l'articolo di %s"
#: ../../mod/setup.php:200 ../../mod/viewconnections.php:22
#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6
#: ../../mod/sources.php:62 ../../mod/mitem.php:73 ../../mod/group.php:9
-#: ../../mod/photos.php:68 ../../mod/photos.php:646 ../../mod/viewsrc.php:12
+#: ../../mod/photos.php:68 ../../mod/photos.php:653 ../../mod/viewsrc.php:12
#: ../../mod/menu.php:40 ../../mod/connections.php:167
#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/network.php:12
#: ../../mod/profiles.php:152 ../../mod/profiles.php:465
#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/achievements.php:27 ../../mod/filestorage.php:26
-#: ../../mod/manage.php:6 ../../mod/settings.php:484 ../../mod/mail.php:108
+#: ../../mod/achievements.php:27 ../../mod/filestorage.php:10
+#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:76
+#: ../../mod/filestorage.php:99 ../../mod/manage.php:6
+#: ../../mod/settings.php:484 ../../mod/mail.php:108
#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
-#: ../../mod/profile_photo.php:200 ../../mod/editwebpage.php:44
-#: ../../mod/editwebpage.php:83 ../../mod/notifications.php:66
-#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/editpost.php:13
-#: ../../mod/poke.php:128 ../../mod/channel.php:86 ../../mod/fsuggest.php:78
-#: ../../mod/editblock.php:48 ../../mod/suggest.php:26
-#: ../../mod/message.php:16 ../../mod/register.php:68 ../../mod/regmod.php:18
-#: ../../mod/authtest.php:13 ../../mod/item.php:181 ../../mod/item.php:189
-#: ../../mod/mood.php:114 ../../index.php:176 ../../index.php:344
+#: ../../mod/profile_photo.php:200 ../../mod/editpost.php:13
+#: ../../mod/notifications.php:66 ../../mod/blocks.php:29
+#: ../../mod/blocks.php:44 ../../mod/editwebpage.php:44
+#: ../../mod/editwebpage.php:83 ../../mod/poke.php:128
+#: ../../mod/channel.php:88 ../../mod/channel.php:225
+#: ../../mod/fsuggest.php:78 ../../mod/editblock.php:48
+#: ../../mod/suggest.php:26 ../../mod/message.php:16 ../../mod/register.php:68
+#: ../../mod/regmod.php:18 ../../mod/authtest.php:13 ../../mod/item.php:182
+#: ../../mod/item.php:190 ../../mod/mood.php:119 ../../index.php:176
+#: ../../index.php:344
msgid "Permission denied."
msgstr "Permesso negato."
@@ -1556,16 +1879,16 @@ msgstr "L'immagine supera il limite massimo di %lu bytes"
msgid "Image file is empty."
msgstr "Il file dell'immagine è vuoto."
-#: ../../include/photos.php:124 ../../mod/profile_photo.php:147
+#: ../../include/photos.php:122 ../../mod/profile_photo.php:147
msgid "Unable to process image"
msgstr "Impossibile elaborare l'immagine"
-#: ../../include/photos.php:186
+#: ../../include/photos.php:184
msgid "Photo storage failed."
msgstr "Impossibile caricare la foto."
-#: ../../include/photos.php:300 ../../mod/photos.php:805
-#: ../../mod/photos.php:1278
+#: ../../include/photos.php:301 ../../mod/photos.php:821
+#: ../../mod/photos.php:1296
msgid "Upload New Photos"
msgstr "Carica nuove foto"
@@ -1797,41 +2120,41 @@ msgstr "Chi se ne frega"
msgid "Ask me"
msgstr "Chiedimelo"
-#: ../../include/attach.php:184 ../../include/attach.php:232
+#: ../../include/attach.php:179 ../../include/attach.php:227
msgid "Item was not found."
msgstr "Elemento non trovato."
-#: ../../include/attach.php:285
+#: ../../include/attach.php:280
msgid "No source file."
msgstr "Nessun file di origine."
-#: ../../include/attach.php:302
+#: ../../include/attach.php:297
msgid "Cannot locate file to replace"
msgstr "Il file da sostituire non è stato trovato"
-#: ../../include/attach.php:320
+#: ../../include/attach.php:315
msgid "Cannot locate file to revise/update"
msgstr "Il file da aggiornare non è stato trovato"
-#: ../../include/attach.php:331
+#: ../../include/attach.php:326
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Il file supera la dimensione massima di %d"
-#: ../../include/attach.php:342
+#: ../../include/attach.php:337
#, 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:424
+#: ../../include/attach.php:421
msgid "File upload failed. Possible system limit or action terminated."
msgstr "Caricamento file fallito, potrebbe aver superato i limiti o l'azione potrebbe essere stata interrotta."
-#: ../../include/attach.php:436
+#: ../../include/attach.php:433
msgid "Stored file could not be verified. Upload failed."
msgstr "Il file non può essere verificato. Caricamento fallito."
-#: ../../include/attach.php:480 ../../include/attach.php:497
+#: ../../include/attach.php:477 ../../include/attach.php:494
msgid "Path not available."
msgstr "Percorso non disponibile."
@@ -1843,31 +2166,18 @@ msgstr "Il percorso del file è vuoto"
msgid "duplicate filename or path"
msgstr "il file o percorso del file è duplicato"
-#: ../../include/attach.php:584
+#: ../../include/attach.php:587
msgid "Path not found."
msgstr "Percorso del file non trovato."
-#: ../../include/attach.php:628
+#: ../../include/attach.php:632
msgid "mkdir failed."
msgstr "mkdir fallito."
-#: ../../include/attach.php:632
+#: ../../include/attach.php:636
msgid "database storage failed."
msgstr "scrittura su database fallita."
-#: ../../include/zot.php:545
-msgid "Invalid data packet"
-msgstr "Dati non validi"
-
-#: ../../include/zot.php:555
-msgid "Unable to verify channel signature"
-msgstr "Impossibile verificare la firma elettronica del canale"
-
-#: ../../include/zot.php:732
-#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "Impossibile verificare la firma elettronica del sito %s"
-
#: ../../include/taxonomy.php:210
msgid "Tags"
msgstr "Tag"
@@ -1892,7 +2202,7 @@ msgstr "voglio"
msgid "wants"
msgstr "vuole"
-#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:174
+#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:175
msgid "like"
msgstr "mi piace"
@@ -1900,7 +2210,7 @@ msgstr "mi piace"
msgid "likes"
msgstr "ama"
-#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:175
+#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:176
msgid "dislike"
msgstr "non mi piace"
@@ -1928,38 +2238,38 @@ msgstr "È necessario un invito."
msgid "Invitation could not be verified."
msgstr "L'invito non può essere verificato."
-#: ../../include/account.php:118
+#: ../../include/account.php:119
msgid "Please enter the required information."
msgstr "Inserisci le informazioni richieste."
-#: ../../include/account.php:186
+#: ../../include/account.php:187
msgid "Failed to store account information."
msgstr "Non è stato possibile salvare le informazioni del tuo account."
-#: ../../include/account.php:272
+#: ../../include/account.php:273
#, php-format
msgid "Registration request at %s"
msgstr "Richiesta di registrazione su %s"
-#: ../../include/account.php:274 ../../include/account.php:301
-#: ../../include/account.php:358
+#: ../../include/account.php:275 ../../include/account.php:302
+#: ../../include/account.php:359
msgid "Administrator"
msgstr "Amministratore"
-#: ../../include/account.php:296
+#: ../../include/account.php:297
msgid "your registration password"
msgstr "la password di registrazione"
-#: ../../include/account.php:299 ../../include/account.php:356
+#: ../../include/account.php:300 ../../include/account.php:357
#, php-format
msgid "Registration details for %s"
msgstr "Dettagli della registrazione di %s"
-#: ../../include/account.php:365
+#: ../../include/account.php:366
msgid "Account approved."
msgstr "Account approvato."
-#: ../../include/account.php:399
+#: ../../include/account.php:400
#, php-format
msgid "Registration revoked for %s"
msgstr "Registrazione revocata per %s"
@@ -2038,147 +2348,147 @@ msgstr "un messaggio privato"
msgid "Please visit %s to view and/or reply to your private messages."
msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere."
-#: ../../include/enotify.php:139
+#: ../../include/enotify.php:142
#, php-format
msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]"
-#: ../../include/enotify.php:147
+#: ../../include/enotify.php:150
#, php-format
msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]"
-#: ../../include/enotify.php:156
+#: ../../include/enotify.php:159
#, php-format
msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]"
-#: ../../include/enotify.php:167
+#: ../../include/enotify.php:170
#, php-format
msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
msgstr "[Red:Notifica] Nuovo commento di %2$s alla conversazione #%1$d"
-#: ../../include/enotify.php:168
+#: ../../include/enotify.php:171
#, php-format
msgid "%1$s, %2$s commented on an item/conversation you have been following."
msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo."
-#: ../../include/enotify.php:171 ../../include/enotify.php:187
-#: ../../include/enotify.php:213 ../../include/enotify.php:232
-#: ../../include/enotify.php:246
+#: ../../include/enotify.php:174 ../../include/enotify.php:189
+#: ../../include/enotify.php:215 ../../include/enotify.php:234
+#: ../../include/enotify.php:248
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr "Visita %s per leggere o commentare la conversazione."
-#: ../../include/enotify.php:178
+#: ../../include/enotify.php:180
#, php-format
msgid "[Red:Notify] %s posted to your profile wall"
msgstr "[Red:Notifica] %s ha scritto sulla tua bacheca"
-#: ../../include/enotify.php:180
+#: ../../include/enotify.php:182
#, php-format
msgid "%1$s, %2$s posted to your profile wall at %3$s"
msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo alle %3$s"
-#: ../../include/enotify.php:182
+#: ../../include/enotify.php:184
#, php-format
msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]"
-#: ../../include/enotify.php:206
+#: ../../include/enotify.php:208
#, php-format
msgid "[Red:Notify] %s tagged you"
msgstr "[Red:Notifica] %s ti ha taggato"
-#: ../../include/enotify.php:207
+#: ../../include/enotify.php:209
#, php-format
msgid "%1$s, %2$s tagged you at %3$s"
msgstr "%1$s, %2$s ti ha taggato alle %3$s"
-#: ../../include/enotify.php:208
+#: ../../include/enotify.php:210
#, php-format
msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]."
-#: ../../include/enotify.php:221
+#: ../../include/enotify.php:223
#, php-format
msgid "[Red:Notify] %1$s poked you"
msgstr "[Red:Notifica] %1$s ti ha mandato un poke"
-#: ../../include/enotify.php:222
+#: ../../include/enotify.php:224
#, php-format
msgid "%1$s, %2$s poked you at %3$s"
msgstr "%1$s, %2$s ti ha mandato un poke alle %3$s"
-#: ../../include/enotify.php:223
+#: ../../include/enotify.php:225
#, php-format
msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]."
-#: ../../include/enotify.php:239
+#: ../../include/enotify.php:241
#, php-format
msgid "[Red:Notify] %s tagged your post"
msgstr "[Red:Notifica] %s ha taggato il tuo articolo"
-#: ../../include/enotify.php:240
+#: ../../include/enotify.php:242
#, php-format
msgid "%1$s, %2$s tagged your post at %3$s"
msgstr "%1$s, %2$s ha taggato il tuo articolo alle %3$s"
-#: ../../include/enotify.php:241
+#: ../../include/enotify.php:243
#, 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]"
-#: ../../include/enotify.php:253
+#: ../../include/enotify.php:255
msgid "[Red:Notify] Introduction received"
msgstr "[Red:Notifica] Hai una richiesta di amicizia"
-#: ../../include/enotify.php:254
+#: ../../include/enotify.php:256
#, php-format
msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
msgstr "%1$s, hai ricevuto una richiesta di contatto da '%2$s' alle %3$s"
-#: ../../include/enotify.php:255
+#: ../../include/enotify.php:257
#, php-format
msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
msgstr "%1$s, hai ricevuto [zrl=%2$s]una richiesta di amicizia[/zrl] da %3$s."
-#: ../../include/enotify.php:259 ../../include/enotify.php:278
+#: ../../include/enotify.php:261 ../../include/enotify.php:280
#, php-format
msgid "You may visit their profile at %s"
msgstr "Puoi visitare il suo profilo su %s"
-#: ../../include/enotify.php:261
+#: ../../include/enotify.php:263
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Visita %s per approvare o rifiutare la richiesta."
-#: ../../include/enotify.php:268
+#: ../../include/enotify.php:270
msgid "[Red:Notify] Friend suggestion received"
msgstr "[Red:Notifica] Ti è stato suggerito un amico"
-#: ../../include/enotify.php:269
+#: ../../include/enotify.php:271
#, php-format
msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
msgstr "%1$s, ti è stato suggerito un amico da '%2$s' alle %3$s"
-#: ../../include/enotify.php:270
+#: ../../include/enotify.php:272
#, php-format
msgid ""
"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from "
"%4$s."
msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico."
-#: ../../include/enotify.php:276
+#: ../../include/enotify.php:278
msgid "Name:"
msgstr "Nome:"
-#: ../../include/enotify.php:277
+#: ../../include/enotify.php:279
msgid "Photo:"
msgstr "Foto:"
-#: ../../include/enotify.php:280
+#: ../../include/enotify.php:282
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr "Visita %s per approvare o rifiutare il suggerimento."
@@ -2246,318 +2556,15 @@ msgstr[1] "%d contatti in comune"
msgid "New Page"
msgstr "Nuova pagina web"
-#: ../../include/page_widgets.php:8 ../../include/ItemObject.php:95
+#: ../../include/page_widgets.php:8 ../../include/ItemObject.php:96
#: ../../mod/thing.php:229 ../../mod/webpages.php:118 ../../mod/menu.php:55
-#: ../../mod/layouts.php:102 ../../mod/settings.php:569
-#: ../../mod/editlayout.php:100 ../../mod/editwebpage.php:143
-#: ../../mod/blocks.php:93 ../../mod/editpost.php:97
-#: ../../mod/editblock.php:114
+#: ../../mod/layouts.php:102 ../../mod/filestorage.php:171
+#: ../../mod/settings.php:569 ../../mod/editlayout.php:101
+#: ../../mod/editpost.php:98 ../../mod/blocks.php:93
+#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:115
msgid "Edit"
msgstr "Modifica"
-#: ../../include/text.php:315
-msgid "prev"
-msgstr "prec"
-
-#: ../../include/text.php:317
-msgid "first"
-msgstr "inizio"
-
-#: ../../include/text.php:346
-msgid "last"
-msgstr "fine"
-
-#: ../../include/text.php:349
-msgid "next"
-msgstr "succ"
-
-#: ../../include/text.php:361
-msgid "older"
-msgstr "più recenti"
-
-#: ../../include/text.php:363
-msgid "newer"
-msgstr "più nuovi"
-
-#: ../../include/text.php:654
-msgid "No connections"
-msgstr "Nessun contatto"
-
-#: ../../include/text.php:665
-#, php-format
-msgid "%d Connection"
-msgid_plural "%d Connections"
-msgstr[0] "%d contatto"
-msgstr[1] "%d contatti"
-
-#: ../../include/text.php:677
-msgid "View Connections"
-msgstr "Elenco contatti"
-
-#: ../../include/text.php:818
-msgid "poke"
-msgstr "poke"
-
-#: ../../include/text.php:819
-msgid "ping"
-msgstr "ping"
-
-#: ../../include/text.php:819
-msgid "pinged"
-msgstr "ha ricevuto un ping"
-
-#: ../../include/text.php:820
-msgid "prod"
-msgstr "prod"
-
-#: ../../include/text.php:820
-msgid "prodded"
-msgstr "ha ricevuto un prod"
-
-#: ../../include/text.php:821
-msgid "slap"
-msgstr "schiaffo"
-
-#: ../../include/text.php:821
-msgid "slapped"
-msgstr "ha ricevuto uno schiaffo"
-
-#: ../../include/text.php:822
-msgid "finger"
-msgstr "finger"
-
-#: ../../include/text.php:822
-msgid "fingered"
-msgstr "ha ricevuto un finger"
-
-#: ../../include/text.php:823
-msgid "rebuff"
-msgstr "rifiuto"
-
-#: ../../include/text.php:823
-msgid "rebuffed"
-msgstr "ha ricevuto un rifiuto"
-
-#: ../../include/text.php:835
-msgid "happy"
-msgstr "allegro"
-
-#: ../../include/text.php:836
-msgid "sad"
-msgstr "triste"
-
-#: ../../include/text.php:837
-msgid "mellow"
-msgstr "calmo"
-
-#: ../../include/text.php:838
-msgid "tired"
-msgstr "stanco"
-
-#: ../../include/text.php:839
-msgid "perky"
-msgstr "vivace"
-
-#: ../../include/text.php:840
-msgid "angry"
-msgstr "arrabbiato"
-
-#: ../../include/text.php:841
-msgid "stupified"
-msgstr "stordito"
-
-#: ../../include/text.php:842
-msgid "puzzled"
-msgstr "confuso"
-
-#: ../../include/text.php:843
-msgid "interested"
-msgstr "attento"
-
-#: ../../include/text.php:844
-msgid "bitter"
-msgstr "amaro"
-
-#: ../../include/text.php:845
-msgid "cheerful"
-msgstr "allegro"
-
-#: ../../include/text.php:846
-msgid "alive"
-msgstr "vivace"
-
-#: ../../include/text.php:847
-msgid "annoyed"
-msgstr "seccato"
-
-#: ../../include/text.php:848
-msgid "anxious"
-msgstr "ansioso"
-
-#: ../../include/text.php:849
-msgid "cranky"
-msgstr "irritabile"
-
-#: ../../include/text.php:850
-msgid "disturbed"
-msgstr "turbato"
-
-#: ../../include/text.php:851
-msgid "frustrated"
-msgstr "frustrato"
-
-#: ../../include/text.php:852
-msgid "motivated"
-msgstr "motivato"
-
-#: ../../include/text.php:853
-msgid "relaxed"
-msgstr "rilassato"
-
-#: ../../include/text.php:854
-msgid "surprised"
-msgstr "sorpreso"
-
-#: ../../include/text.php:1016
-msgid "Monday"
-msgstr "lunedì"
-
-#: ../../include/text.php:1016
-msgid "Tuesday"
-msgstr "martedì"
-
-#: ../../include/text.php:1016
-msgid "Wednesday"
-msgstr "mercoledì"
-
-#: ../../include/text.php:1016
-msgid "Thursday"
-msgstr "giovedì"
-
-#: ../../include/text.php:1016
-msgid "Friday"
-msgstr "venerdì"
-
-#: ../../include/text.php:1016
-msgid "Saturday"
-msgstr "sabato"
-
-#: ../../include/text.php:1016
-msgid "Sunday"
-msgstr "domenica"
-
-#: ../../include/text.php:1020
-msgid "January"
-msgstr "gennaio"
-
-#: ../../include/text.php:1020
-msgid "February"
-msgstr "febbraio"
-
-#: ../../include/text.php:1020
-msgid "March"
-msgstr "marzo"
-
-#: ../../include/text.php:1020
-msgid "April"
-msgstr "aprile"
-
-#: ../../include/text.php:1020
-msgid "May"
-msgstr "maggio"
-
-#: ../../include/text.php:1020
-msgid "June"
-msgstr "giugno"
-
-#: ../../include/text.php:1020
-msgid "July"
-msgstr "luglio"
-
-#: ../../include/text.php:1020
-msgid "August"
-msgstr "agosto"
-
-#: ../../include/text.php:1020
-msgid "September"
-msgstr "settembre"
-
-#: ../../include/text.php:1020
-msgid "October"
-msgstr "ottobre"
-
-#: ../../include/text.php:1020
-msgid "November"
-msgstr "novembre"
-
-#: ../../include/text.php:1020
-msgid "December"
-msgstr "dicembre"
-
-#: ../../include/text.php:1098
-msgid "unknown.???"
-msgstr "sconosciuto???"
-
-#: ../../include/text.php:1099
-msgid "bytes"
-msgstr "byte"
-
-#: ../../include/text.php:1134
-msgid "remove category"
-msgstr "rimuovi la categoria"
-
-#: ../../include/text.php:1156
-msgid "remove from file"
-msgstr "rimuovi dal file"
-
-#: ../../include/text.php:1214 ../../include/text.php:1226
-msgid "Click to open/close"
-msgstr "Clicca per aprire/chiudere"
-
-#: ../../include/text.php:1402 ../../mod/events.php:332
-msgid "link to source"
-msgstr "Link all'originale"
-
-#: ../../include/text.php:1421
-msgid "Select a page layout: "
-msgstr "Scegli il layout della pagina:"
-
-#: ../../include/text.php:1424 ../../include/text.php:1489
-msgid "default"
-msgstr "predefinito"
-
-#: ../../include/text.php:1460
-msgid "Page content type: "
-msgstr "Contenuto della pagina:"
-
-#: ../../include/text.php:1501
-msgid "Select an alternate language"
-msgstr "Seleziona una lingua diversa"
-
-#: ../../include/text.php:1666
-msgid "activity"
-msgstr "l'attività"
-
-#: ../../include/text.php:1928
-msgid "Design"
-msgstr "Design"
-
-#: ../../include/text.php:1930
-msgid "Blocks"
-msgstr "Riquadri"
-
-#: ../../include/text.php:1931
-msgid "Menus"
-msgstr "Menù"
-
-#: ../../include/text.php:1932
-msgid "Layouts"
-msgstr "Layout"
-
-#: ../../include/text.php:1933
-msgid "Pages"
-msgstr "Pagine"
-
#: ../../include/plugin.php:475 ../../include/plugin.php:477
msgid "Click here to upgrade."
msgstr "Clicca qui per aggiornare."
@@ -2688,7 +2695,7 @@ msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è as
msgid "Default"
msgstr "Predefinito"
-#: ../../include/identity.php:29 ../../mod/item.php:1162
+#: ../../include/identity.php:29 ../../mod/item.php:1143
msgid "Unable to obtain identity information from database"
msgstr "Impossibile ottenere le informazioni di identificazione dal database"
@@ -2731,7 +2738,7 @@ msgstr "Purtroppo non hai il permesso di vedere questo profilo."
#: ../../include/identity.php:524 ../../mod/webpages.php:8
#: ../../mod/connect.php:13 ../../mod/layouts.php:8
-#: ../../mod/achievements.php:8 ../../mod/filestorage.php:8
+#: ../../mod/achievements.php:8 ../../mod/filestorage.php:40
#: ../../mod/blocks.php:10 ../../mod/profile.php:16
msgid "Requested profile is not available."
msgstr "Il profilo richiesto non è disponibile."
@@ -2915,102 +2922,136 @@ msgstr "Lavoro:"
msgid "School/education:"
msgstr "Scuola:"
-#: ../../include/ItemObject.php:88 ../../mod/photos.php:954
+#: ../../include/items.php:201 ../../mod/like.php:55 ../../mod/group.php:68
+#: ../../mod/profperm.php:19 ../../index.php:343
+msgid "Permission denied"
+msgstr "Permesso negato"
+
+#: ../../include/items.php:3383 ../../mod/thing.php:74 ../../mod/admin.php:150
+#: ../../mod/admin.php:730 ../../mod/admin.php:933 ../../mod/viewsrc.php:18
+#: ../../mod/home.php:63 ../../mod/filestorage.php:18 ../../mod/display.php:32
+#: ../../mod/channel.php:182
+msgid "Item not found."
+msgstr "Elemento non trovato."
+
+#: ../../include/items.php:3734 ../../mod/group.php:38 ../../mod/group.php:140
+msgid "Collection not found."
+msgstr "Insieme non trovato."
+
+#: ../../include/items.php:3749
+msgid "Collection is empty."
+msgstr "L'insieme di canali è vuoto."
+
+#: ../../include/items.php:3756
+#, php-format
+msgid "Collection: %s"
+msgstr "Insieme: %s"
+
+#: ../../include/items.php:3767
+#, php-format
+msgid "Connection: %s"
+msgstr "Contatto: %s"
+
+#: ../../include/items.php:3770
+msgid "Connection not found."
+msgstr "Contatto non trovato."
+
+#: ../../include/ItemObject.php:89 ../../mod/photos.php:972
msgid "Private Message"
msgstr "Messaggio privato"
-#: ../../include/ItemObject.php:117
+#: ../../include/ItemObject.php:118
msgid "save to folder"
msgstr "salva in una cartella"
-#: ../../include/ItemObject.php:145
+#: ../../include/ItemObject.php:146
msgid "add star"
msgstr "aggiungi ai preferiti"
-#: ../../include/ItemObject.php:146
+#: ../../include/ItemObject.php:147
msgid "remove star"
msgstr "rimuovi dai preferiti"
-#: ../../include/ItemObject.php:147
+#: ../../include/ItemObject.php:148
msgid "toggle star status"
msgstr "Attiva/disattiva preferito"
-#: ../../include/ItemObject.php:151
+#: ../../include/ItemObject.php:152
msgid "starred"
msgstr "preferito"
-#: ../../include/ItemObject.php:168
+#: ../../include/ItemObject.php:169
msgid "add tag"
msgstr "Aggiungi tag"
-#: ../../include/ItemObject.php:174 ../../mod/photos.php:1060
+#: ../../include/ItemObject.php:175 ../../mod/photos.php:1078
msgid "I like this (toggle)"
msgstr "Attiva/disattiva Mi piace"
-#: ../../include/ItemObject.php:175 ../../mod/photos.php:1061
+#: ../../include/ItemObject.php:176 ../../mod/photos.php:1079
msgid "I don't like this (toggle)"
msgstr "Attiva/disattiva Non mi piace"
-#: ../../include/ItemObject.php:177
+#: ../../include/ItemObject.php:178
msgid "Share this"
msgstr "Condividi"
-#: ../../include/ItemObject.php:177
+#: ../../include/ItemObject.php:178
msgid "share"
msgstr "condividi"
-#: ../../include/ItemObject.php:201 ../../include/ItemObject.php:202
+#: ../../include/ItemObject.php:202 ../../include/ItemObject.php:203
#, php-format
msgid "View %s's profile - %s"
msgstr "Guarda il profilo di %s - %s"
-#: ../../include/ItemObject.php:203
+#: ../../include/ItemObject.php:204
msgid "to"
msgstr "a"
-#: ../../include/ItemObject.php:204
+#: ../../include/ItemObject.php:205
msgid "via"
msgstr "via"
-#: ../../include/ItemObject.php:205
+#: ../../include/ItemObject.php:206
msgid "Wall-to-Wall"
msgstr "Da bacheca a bacheca"
-#: ../../include/ItemObject.php:206
+#: ../../include/ItemObject.php:207
msgid "via Wall-To-Wall:"
msgstr "da bacheca a bacheca:"
-#: ../../include/ItemObject.php:220
+#: ../../include/ItemObject.php:221
#, php-format
msgid "Expires: %s"
msgstr "Scadenza: %s"
-#: ../../include/ItemObject.php:268
+#: ../../include/ItemObject.php:269
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d commento"
msgstr[1] "%d commenti"
-#: ../../include/ItemObject.php:528 ../../mod/photos.php:1079
-#: ../../mod/photos.php:1166
+#: ../../include/ItemObject.php:534 ../../mod/photos.php:1097
+#: ../../mod/photos.php:1184
msgid "This is you"
msgstr "Questo sei tu"
-#: ../../include/ItemObject.php:531 ../../mod/events.php:470
+#: ../../include/ItemObject.php:537 ../../mod/events.php:470
#: ../../mod/thing.php:276 ../../mod/thing.php:318 ../../mod/invite.php:156
-#: ../../mod/connedit.php:434 ../../mod/setup.php:302 ../../mod/setup.php:345
+#: ../../mod/connedit.php:434 ../../mod/setup.php:304 ../../mod/setup.php:347
#: ../../mod/connect.php:92 ../../mod/sources.php:97 ../../mod/sources.php:131
#: ../../mod/admin.php:420 ../../mod/admin.php:686 ../../mod/admin.php:826
#: ../../mod/admin.php:1025 ../../mod/admin.php:1112 ../../mod/group.php:81
-#: ../../mod/photos.php:677 ../../mod/photos.php:782 ../../mod/photos.php:1042
-#: ../../mod/photos.php:1082 ../../mod/photos.php:1169
-#: ../../mod/profiles.php:518 ../../mod/import.php:387
-#: ../../mod/settings.php:507 ../../mod/settings.php:619
-#: ../../mod/settings.php:647 ../../mod/settings.php:671
-#: ../../mod/settings.php:742 ../../mod/settings.php:903
-#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/poke.php:166
-#: ../../mod/fsuggest.php:108 ../../mod/mood.php:137
+#: ../../mod/photos.php:693 ../../mod/photos.php:798 ../../mod/photos.php:1060
+#: ../../mod/photos.php:1100 ../../mod/photos.php:1187
+#: ../../mod/profiles.php:518 ../../mod/filestorage.php:132
+#: ../../mod/import.php:387 ../../mod/settings.php:507
+#: ../../mod/settings.php:619 ../../mod/settings.php:647
+#: ../../mod/settings.php:671 ../../mod/settings.php:742
+#: ../../mod/settings.php:903 ../../mod/mail.php:223 ../../mod/mail.php:335
+#: ../../mod/poke.php:166 ../../mod/fsuggest.php:108 ../../mod/mood.php:142
#: ../../view/theme/redbasic/php/config.php:85
#: ../../view/theme/apw/php/config.php:231
#: ../../view/theme/blogga/view/theme/blog/config.php:67
@@ -3018,35 +3059,35 @@ msgstr "Questo sei tu"
msgid "Submit"
msgstr "Salva"
-#: ../../include/ItemObject.php:532
+#: ../../include/ItemObject.php:538
msgid "Bold"
msgstr "Grassetto"
-#: ../../include/ItemObject.php:533
+#: ../../include/ItemObject.php:539
msgid "Italic"
msgstr "Corsivo"
-#: ../../include/ItemObject.php:534
+#: ../../include/ItemObject.php:540
msgid "Underline"
msgstr "Sottolineato"
-#: ../../include/ItemObject.php:535
+#: ../../include/ItemObject.php:541
msgid "Quote"
msgstr "Citazione"
-#: ../../include/ItemObject.php:536
+#: ../../include/ItemObject.php:542
msgid "Code"
msgstr "Codice"
-#: ../../include/ItemObject.php:537
+#: ../../include/ItemObject.php:543
msgid "Image"
msgstr "Immagine"
-#: ../../include/ItemObject.php:538
+#: ../../include/ItemObject.php:544
msgid "Link"
msgstr "Link"
-#: ../../include/ItemObject.php:539
+#: ../../include/ItemObject.php:545
msgid "Video"
msgstr "Video"
@@ -3068,38 +3109,18 @@ msgid ""
"form has been opened for too long (>3 hours) before submitting it."
msgstr "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."
-#: ../../include/items.php:201 ../../mod/like.php:55 ../../mod/group.php:68
-#: ../../mod/profperm.php:19 ../../index.php:343
-msgid "Permission denied"
-msgstr "Permesso negato"
-
-#: ../../include/items.php:3375 ../../mod/thing.php:74 ../../mod/admin.php:150
-#: ../../mod/admin.php:730 ../../mod/admin.php:933 ../../mod/viewsrc.php:18
-#: ../../mod/home.php:63 ../../mod/display.php:32
-msgid "Item not found."
-msgstr "Elemento non trovato."
-
-#: ../../include/items.php:3726 ../../mod/group.php:38 ../../mod/group.php:140
-msgid "Collection not found."
-msgstr "Insieme non trovato."
-
-#: ../../include/items.php:3741
-msgid "Collection is empty."
-msgstr "L'insieme di canali è vuoto."
+#: ../../include/zot.php:545
+msgid "Invalid data packet"
+msgstr "Dati non validi"
-#: ../../include/items.php:3748
-#, php-format
-msgid "Collection: %s"
-msgstr "Insieme: %s"
+#: ../../include/zot.php:555
+msgid "Unable to verify channel signature"
+msgstr "Impossibile verificare la firma elettronica del canale"
-#: ../../include/items.php:3759
+#: ../../include/zot.php:732
#, php-format
-msgid "Connection: %s"
-msgstr "Contatto: %s"
-
-#: ../../include/items.php:3762
-msgid "Connection not found."
-msgstr "Contatto non trovato."
+msgid "Unable to verify site signature for %s"
+msgstr "Impossibile verificare la firma elettronica del sito %s"
#: ../../mod/common.php:10
msgid "No channel."
@@ -3133,7 +3154,7 @@ msgstr "Crea un nuovo evento"
msgid "Previous"
msgstr "Precendente"
-#: ../../mod/events.php:357 ../../mod/setup.php:256
+#: ../../mod/events.php:357 ../../mod/setup.php:258
msgid "Next"
msgstr "Successivo"
@@ -3723,308 +3744,318 @@ msgid ""
"phpmyadmin or mysql."
msgstr "Potresti dover importare il file 'install/database.sql' manualmente usando phpmyadmin o mysql."
-#: ../../mod/setup.php:188 ../../mod/setup.php:255 ../../mod/setup.php:586
+#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:606
msgid "Please see the file \"install/INSTALL.txt\"."
msgstr "Leggi il file 'install/INSTALL.txt'."
-#: ../../mod/setup.php:252
+#: ../../mod/setup.php:254
msgid "System check"
msgstr "Verifica del sistema"
-#: ../../mod/setup.php:257
+#: ../../mod/setup.php:259
msgid "Check again"
msgstr "Verifica di nuovo"
-#: ../../mod/setup.php:279
+#: ../../mod/setup.php:281
msgid "Database connection"
msgstr "Connessione al database"
-#: ../../mod/setup.php:280
+#: ../../mod/setup.php:282
msgid ""
"In order to install Red Matrix we need to know how to connect to your "
"database."
msgstr "Per installare Red Matrix è necessario conoscere i parametri di connessione al database."
-#: ../../mod/setup.php:281
+#: ../../mod/setup.php:283
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:282
+#: ../../mod/setup.php:284
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:286
+#: ../../mod/setup.php:288
msgid "Database Server Name"
msgstr "Server del database"
-#: ../../mod/setup.php:286
+#: ../../mod/setup.php:288
msgid "Default is localhost"
msgstr "'localhost' è il predefinito"
-#: ../../mod/setup.php:287
+#: ../../mod/setup.php:289
msgid "Database Port"
msgstr "Port del database"
-#: ../../mod/setup.php:287
+#: ../../mod/setup.php:289
msgid "Communication port number - use 0 for default"
msgstr "Scrivi 0 per usare il valore standard"
-#: ../../mod/setup.php:288
+#: ../../mod/setup.php:290
msgid "Database Login Name"
msgstr "Utente database"
-#: ../../mod/setup.php:289
+#: ../../mod/setup.php:291
msgid "Database Login Password"
msgstr "Password utente database"
-#: ../../mod/setup.php:290
+#: ../../mod/setup.php:292
msgid "Database Name"
msgstr "Nome database"
-#: ../../mod/setup.php:292 ../../mod/setup.php:334
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
msgid "Site administrator email address"
msgstr "Indirizzo email dell'amministratore del sito"
-#: ../../mod/setup.php:292 ../../mod/setup.php:334
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
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:293 ../../mod/setup.php:336
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
msgid "Website URL"
msgstr "URL completo del sito"
-#: ../../mod/setup.php:293 ../../mod/setup.php:336
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
msgid "Please use SSL (https) URL if available."
msgstr "Se disponibile, usa l'indirizzo SSL (https)."
-#: ../../mod/setup.php:296 ../../mod/setup.php:339
+#: ../../mod/setup.php:298 ../../mod/setup.php:341
msgid "Please select a default timezone for your website"
msgstr "Seleziona il fuso orario predefinito per il tuo sito web"
-#: ../../mod/setup.php:323
+#: ../../mod/setup.php:325
msgid "Site settings"
msgstr "Impostazioni del sito"
-#: ../../mod/setup.php:379
+#: ../../mod/setup.php:381
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:380
+#: ../../mod/setup.php:382
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:384
+#: ../../mod/setup.php:386
msgid "PHP executable path"
msgstr "Path del comando PHP"
-#: ../../mod/setup.php:384
+#: ../../mod/setup.php:386
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:389
+#: ../../mod/setup.php:391
msgid "Command line PHP"
msgstr "PHP da riga di comando"
-#: ../../mod/setup.php:398
+#: ../../mod/setup.php:400
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:399
+#: ../../mod/setup.php:401
msgid "This is required for message delivery to work."
msgstr "E' necessario perché funzioni la consegna dei messaggi."
-#: ../../mod/setup.php:401
+#: ../../mod/setup.php:403
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
-#: ../../mod/setup.php:422
+#: ../../mod/setup.php:424
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:423
+#: ../../mod/setup.php:425
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:425
+#: ../../mod/setup.php:427
msgid "Generate encryption keys"
msgstr "Genera chiavi di criptazione"
-#: ../../mod/setup.php:432
+#: ../../mod/setup.php:434
msgid "libCurl PHP module"
msgstr "modulo PHP libCurl"
-#: ../../mod/setup.php:433
+#: ../../mod/setup.php:435
msgid "GD graphics PHP module"
msgstr "modulo PHP GD graphics"
-#: ../../mod/setup.php:434
+#: ../../mod/setup.php:436
msgid "OpenSSL PHP module"
msgstr "modulo PHP OpenSSL"
-#: ../../mod/setup.php:435
+#: ../../mod/setup.php:437
msgid "mysqli PHP module"
msgstr "modulo PHP mysqli"
-#: ../../mod/setup.php:436
+#: ../../mod/setup.php:438
msgid "mb_string PHP module"
msgstr "modulo PHP mb_string"
-#: ../../mod/setup.php:437
+#: ../../mod/setup.php:439
msgid "mcrypt PHP module"
msgstr "modulo PHP mcrypt"
-#: ../../mod/setup.php:442 ../../mod/setup.php:444
+#: ../../mod/setup.php:444 ../../mod/setup.php:446
msgid "Apache mod_rewrite module"
msgstr "modulo Apache mod_rewrite"
-#: ../../mod/setup.php:442
+#: ../../mod/setup.php:444
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:448 ../../mod/setup.php:451
+#: ../../mod/setup.php:450 ../../mod/setup.php:453
msgid "proc_open"
msgstr "proc_open"
-#: ../../mod/setup.php:448
+#: ../../mod/setup.php:450
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:456
+#: ../../mod/setup.php:458
msgid "Error: libCURL PHP module required but not installed."
msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato."
-#: ../../mod/setup.php:460
+#: ../../mod/setup.php:462
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:464
+#: ../../mod/setup.php:466
msgid "Error: openssl PHP module required but not installed."
msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato."
-#: ../../mod/setup.php:468
+#: ../../mod/setup.php:470
msgid "Error: mysqli PHP module required but not installed."
msgstr "Errore: il modulo mysqli di PHP è richiesto ma non installato."
-#: ../../mod/setup.php:472
+#: ../../mod/setup.php:474
msgid "Error: mb_string PHP module required but not installed."
msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato."
-#: ../../mod/setup.php:476
+#: ../../mod/setup.php:478
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Errore: il modulo PHP mcrypt è richiesto ma non installato."
-#: ../../mod/setup.php:492
+#: ../../mod/setup.php:494
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."
-#: ../../mod/setup.php:493
+#: ../../mod/setup.php:495
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:494
+#: ../../mod/setup.php:496
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 Red."
-#: ../../mod/setup.php:495
+#: ../../mod/setup.php:497
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:498
+#: ../../mod/setup.php:500
msgid ".htconfig.php is writable"
msgstr ".htconfig.php è scrivibile"
-#: ../../mod/setup.php:508
+#: ../../mod/setup.php:510
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:509
+#: ../../mod/setup.php:511
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/tpl/smarty3/ under the Red top level "
"folder."
msgstr "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura alla cartella view/tpl/smarty3/ sotto la cartella di installazione di Red."
-#: ../../mod/setup.php:510
+#: ../../mod/setup.php:512 ../../mod/setup.php:530
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 come un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."
-#: ../../mod/setup.php:511
+#: ../../mod/setup.php:513
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/tpl/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente per view/tpl/smarty3/ non per tutti i file di template (.tpl) che contiene."
-#: ../../mod/setup.php:514
+#: ../../mod/setup.php:516
msgid "view/tpl/smarty3 is writable"
msgstr "view/tpl/smarty3 è scrivibile"
-#: ../../mod/setup.php:528
+#: ../../mod/setup.php:529
+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 usa un archivio per salvare i file caricati. Il server deve avere i diritti di scrittura sulla cartella dell'archivio che si trova dentro la cartella principale di Red"
+
+#: ../../mod/setup.php:533
+msgid "store is writable"
+msgstr "l'archivio è scrivibile"
+
+#: ../../mod/setup.php:548
msgid "SSL certificate validation"
msgstr "Validazione del certificato SSL"
-#: ../../mod/setup.php:528
+#: ../../mod/setup.php:548
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:535
+#: ../../mod/setup.php:555
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server."
-#: ../../mod/setup.php:537
+#: ../../mod/setup.php:557
msgid "Url rewrite is working"
msgstr "Url rewrite funziona correttamente"
-#: ../../mod/setup.php:547
+#: ../../mod/setup.php:567
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:571
+#: ../../mod/setup.php:591
msgid "Errors encountered creating database tables."
msgstr "La creazione delle tabelle del database ha generato errori."
-#: ../../mod/setup.php:584
+#: ../../mod/setup.php:604
msgid "<h1>What next</h1>"
msgstr "<h1>I prossimi passi</h1>"
-#: ../../mod/setup.php:585
+#: ../../mod/setup.php:605
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
@@ -4055,7 +4086,7 @@ 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/viewconnections.php:17 ../../mod/search.php:12
-#: ../../mod/photos.php:566 ../../mod/directory.php:15 ../../mod/display.php:9
+#: ../../mod/photos.php:573 ../../mod/directory.php:15 ../../mod/display.php:9
#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
msgid "Public access denied."
msgstr "Accesso pubblico negato."
@@ -4774,7 +4805,7 @@ msgid "Unable to add menu element."
msgstr "Impossibile aggiungere l'elemento al menù."
#: ../../mod/mitem.php:78 ../../mod/xchan.php:25 ../../mod/menu.php:113
-#: ../../mod/dirprofile.php:173
+#: ../../mod/dirprofile.php:176
msgid "Not found."
msgstr "Non trovato."
@@ -4930,11 +4961,11 @@ msgstr "Impossibile ottenere informazioni sul proprietario della pagina."
msgid "Album not found."
msgstr "Album non trovato."
-#: ../../mod/photos.php:119 ../../mod/photos.php:783
+#: ../../mod/photos.php:119 ../../mod/photos.php:799
msgid "Delete Album"
msgstr "Elimina album"
-#: ../../mod/photos.php:159 ../../mod/photos.php:1043
+#: ../../mod/photos.php:159 ../../mod/photos.php:1061
msgid "Delete Photo"
msgstr "Elimina foto"
@@ -4947,115 +4978,116 @@ msgstr "%3$s ha taggato %1$s in %2$s"
msgid "a photo"
msgstr "una foto"
-#: ../../mod/photos.php:576
+#: ../../mod/photos.php:583
msgid "No photos selected"
msgstr "Nessuna foto selezionata"
-#: ../../mod/photos.php:623
+#: ../../mod/photos.php:630
msgid "Access to this item is restricted."
msgstr "Questo elemento non è visibile a tutti."
-#: ../../mod/photos.php:688
+#: ../../mod/photos.php:704
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Hai usato %1$.2f Mb di %2$.2f Mb disponibili per le foto."
-#: ../../mod/photos.php:691
+#: ../../mod/photos.php:707
#, php-format
msgid "You have used %1$.2f Mbytes of photo storage."
msgstr "Hai usato %1$.2f Mb di spazio per le foto."
-#: ../../mod/photos.php:710
+#: ../../mod/photos.php:726
msgid "Upload Photos"
msgstr "Carica foto"
-#: ../../mod/photos.php:714 ../../mod/photos.php:778
+#: ../../mod/photos.php:730 ../../mod/photos.php:794
msgid "New album name: "
msgstr "Nome del nuovo album: "
-#: ../../mod/photos.php:715
+#: ../../mod/photos.php:731
msgid "or existing album name: "
msgstr "o nome di un album esistente: "
-#: ../../mod/photos.php:716
+#: ../../mod/photos.php:732
msgid "Do not show a status post for this upload"
msgstr "Non creare un messaggio di stato per questo caricamento"
-#: ../../mod/photos.php:718 ../../mod/photos.php:1038
+#: ../../mod/photos.php:734 ../../mod/photos.php:1056
+#: ../../mod/filestorage.php:125
msgid "Permissions"
msgstr "Permessi"
-#: ../../mod/photos.php:767 ../../mod/photos.php:789 ../../mod/photos.php:1214
-#: ../../mod/photos.php:1229
+#: ../../mod/photos.php:783 ../../mod/photos.php:805 ../../mod/photos.php:1232
+#: ../../mod/photos.php:1247
msgid "Contact Photos"
msgstr "Foto dei contatti"
-#: ../../mod/photos.php:793
+#: ../../mod/photos.php:809
msgid "Edit Album"
msgstr "Modifica album"
-#: ../../mod/photos.php:799
+#: ../../mod/photos.php:815
msgid "Show Newest First"
msgstr "Prima i più recenti"
-#: ../../mod/photos.php:801
+#: ../../mod/photos.php:817
msgid "Show Oldest First"
msgstr "Prima i più vecchi"
-#: ../../mod/photos.php:844 ../../mod/photos.php:1261
+#: ../../mod/photos.php:860 ../../mod/photos.php:1279
msgid "View Photo"
msgstr "Guarda la foto"
-#: ../../mod/photos.php:888
+#: ../../mod/photos.php:906
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:890
+#: ../../mod/photos.php:908
msgid "Photo not available"
msgstr "Foto non disponibile"
-#: ../../mod/photos.php:948
+#: ../../mod/photos.php:966
msgid "Use as profile photo"
msgstr "Usa come foto del profilo"
-#: ../../mod/photos.php:972
+#: ../../mod/photos.php:990
msgid "View Full Size"
msgstr "Vedi nelle dimensioni originali"
-#: ../../mod/photos.php:1026
+#: ../../mod/photos.php:1044
msgid "Edit photo"
msgstr "Modifica la foto"
-#: ../../mod/photos.php:1028
+#: ../../mod/photos.php:1046
msgid "Rotate CW (right)"
msgstr "Ruota (senso orario)"
-#: ../../mod/photos.php:1029
+#: ../../mod/photos.php:1047
msgid "Rotate CCW (left)"
msgstr "Ruota (senso antiorario)"
-#: ../../mod/photos.php:1031
+#: ../../mod/photos.php:1049
msgid "New album name"
msgstr "Nuovo nome dell'album"
-#: ../../mod/photos.php:1034
+#: ../../mod/photos.php:1052
msgid "Caption"
msgstr "Titolo"
-#: ../../mod/photos.php:1036
+#: ../../mod/photos.php:1054
msgid "Add a Tag"
msgstr "Aggiungi tag"
-#: ../../mod/photos.php:1040
+#: ../../mod/photos.php:1058
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Per esempio: @luca, @Maria_Bianchi, @bob@example.com, #California, #camping"
-#: ../../mod/photos.php:1267
+#: ../../mod/photos.php:1285
msgid "View Album"
msgstr "Guarda l'album"
-#: ../../mod/photos.php:1276
+#: ../../mod/photos.php:1294
msgid "Recent Photos"
msgstr "Foto recenti"
@@ -5145,11 +5177,11 @@ msgid "Welcome to %s"
msgstr "%s ti dà il benvenuto"
#: ../../mod/directory.php:143 ../../mod/profiles.php:573
-#: ../../mod/dirprofile.php:93
+#: ../../mod/dirprofile.php:95
msgid "Age: "
msgstr "Età:"
-#: ../../mod/directory.php:146 ../../mod/dirprofile.php:96
+#: ../../mod/directory.php:146 ../../mod/dirprofile.php:98
msgid "Gender: "
msgstr "Sesso:"
@@ -5579,7 +5611,7 @@ msgstr "Aggiungi oggetti al profilo"
#: ../../mod/profiles.php:614
msgid "Include desirable objects in your profile"
-msgstr "Aggiungi oggetti desiderabili al tuo profilo"
+msgstr "Aggiungi oggetti interessanti al tuo profilo"
#: ../../mod/new_channel.php:107
msgid "Add a Channel"
@@ -5611,23 +5643,47 @@ msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare pe
msgid "Or <a href=\"import\">import an existing channel</a> from another location"
msgstr "Oppure <a href=\"import\">importa un tuo canale esistente</a> da un altro server/hub"
-#: ../../mod/filestorage.php:35
+#: ../../mod/filestorage.php:68
msgid "Permission Denied."
msgstr "Permesso negato."
-#: ../../mod/filestorage.php:42
-msgid "Permission denied. VS."
-msgstr "Permesso negato."
+#: ../../mod/filestorage.php:86
+msgid "File not found."
+msgstr "File non trovato."
-#: ../../mod/filestorage.php:79
+#: ../../mod/filestorage.php:120
+msgid "Edit file permissions"
+msgstr "Modifica i permessi del file"
+
+#: ../../mod/filestorage.php:127
+msgid "Include all files and sub folders"
+msgstr "Includi tutti i file e le sottocartelle"
+
+#: ../../mod/filestorage.php:128
+msgid "Return to file list"
+msgstr "Torna all'elenco dei file"
+
+#: ../../mod/filestorage.php:130
+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:131
+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:168
msgid "Download"
msgstr "Scaricamento dati"
-#: ../../mod/filestorage.php:84
+#: ../../mod/filestorage.php:174
msgid "Used: "
msgstr "Usato:"
-#: ../../mod/filestorage.php:86
+#: ../../mod/filestorage.php:175
+msgid "[directory]"
+msgstr "[cartella]"
+
+#: ../../mod/filestorage.php:177
msgid "Limit: "
msgstr "Limite:"
@@ -6279,8 +6335,8 @@ msgstr "Non è disponibile alcun sistema per comunicare in modo sicuro. Puoi ver
msgid "Send Reply"
msgstr "Invia la risposta"
-#: ../../mod/editlayout.php:36 ../../mod/editwebpage.php:32
-#: ../../mod/editpost.php:20 ../../mod/editblock.php:36
+#: ../../mod/editlayout.php:36 ../../mod/editpost.php:20
+#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
msgid "Item not found"
msgstr "Elemento non trovato"
@@ -6288,22 +6344,22 @@ msgstr "Elemento non trovato"
msgid "Edit Layout"
msgstr "Modifica il layout"
-#: ../../mod/editlayout.php:104 ../../mod/editwebpage.php:147
-#: ../../mod/editpost.php:101 ../../mod/editblock.php:118
+#: ../../mod/editlayout.php:105 ../../mod/editpost.php:102
+#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:119
msgid "Insert YouTube video"
msgstr "Inserisci video da YouTube"
-#: ../../mod/editlayout.php:105 ../../mod/editwebpage.php:148
-#: ../../mod/editpost.php:102 ../../mod/editblock.php:119
+#: ../../mod/editlayout.php:106 ../../mod/editpost.php:103
+#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:120
msgid "Insert Vorbis [.ogg] video"
msgstr "Inserisci video Vorbis [.ogg]"
-#: ../../mod/editlayout.php:106 ../../mod/editwebpage.php:149
-#: ../../mod/editpost.php:103 ../../mod/editblock.php:120
+#: ../../mod/editlayout.php:107 ../../mod/editpost.php:104
+#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:121
msgid "Insert Vorbis [.ogg] audio"
msgstr "Inserisci audio Vorbis [.ogg]"
-#: ../../mod/editlayout.php:140
+#: ../../mod/editlayout.php:141
msgid "Delete Layout"
msgstr "Elimina il layout"
@@ -6383,13 +6439,13 @@ msgstr "Il caricamento dell'immagine è fallito."
msgid "Image size reduction [%s] failed."
msgstr "Il ridimensionamento del'immagine [%s] è fallito."
-#: ../../mod/editwebpage.php:106
-msgid "Edit Webpage"
-msgstr "Modifica la pagina web"
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "L'elemento non è modificabile"
-#: ../../mod/editwebpage.php:188
-msgid "Delete Webpage"
-msgstr "Elimina la pagina web"
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
+msgstr "Eliminare questo elemento?"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
@@ -6419,9 +6475,17 @@ msgstr "Impossibile raggiungere il tuo hub."
msgid "Post successful."
msgstr "Inviato!"
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
-msgstr "L'elemento non è modificabile"
+#: ../../mod/editwebpage.php:106
+msgid "Edit Webpage"
+msgstr "Modifica la pagina web"
+
+#: ../../mod/editwebpage.php:116
+msgid "Delete webpage?"
+msgstr "Vuoi eliminare questa pagina web?"
+
+#: ../../mod/editwebpage.php:189
+msgid "Delete Webpage"
+msgstr "Elimina la pagina web"
#: ../../mod/profile.php:64 ../../mod/profile.php:72
msgid "Access to this profile has been restricted."
@@ -6447,7 +6511,7 @@ msgstr "Scegli cosa vuoi inviare al destinatario"
msgid "Make this post private"
msgstr "Rendi privato questo articolo"
-#: ../../mod/wall_upload.php:41 ../../mod/item.php:1088
+#: ../../mod/wall_upload.php:41 ../../mod/item.php:1068
msgid "Wall Photos"
msgstr "Foto della bacheca"
@@ -6455,7 +6519,7 @@ msgstr "Foto della bacheca"
msgid "You must be logged in to see this page."
msgstr "Devi aver effettuato l'accesso per vedere questa pagina."
-#: ../../mod/channel.php:83
+#: ../../mod/channel.php:85
msgid "Insufficient permissions. Request redirected to profile page."
msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo."
@@ -6471,10 +6535,6 @@ msgstr "Comunità"
msgid "No results."
msgstr "Nessun risultato."
-#: ../../mod/fbrowser.php:114
-msgid "Files"
-msgstr "Elenco file"
-
#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
msgid "Contact not found."
msgstr "Contatto non trovato."
@@ -6496,7 +6556,7 @@ msgstr "Suggerisci un amico a %s"
msgid "Edit Block"
msgstr "Modifica il riquadro"
-#: ../../mod/editblock.php:156
+#: ../../mod/editblock.php:157
msgid "Delete Block"
msgstr "Elimina il riquadro"
@@ -6713,37 +6773,37 @@ msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canal
msgid "Remove My Account"
msgstr "Elimina il mio account"
-#: ../../mod/item.php:144
+#: ../../mod/item.php:145
msgid "Unable to locate original post."
msgstr "Impossibile trovare il messaggio originale."
-#: ../../mod/item.php:342
+#: ../../mod/item.php:343
msgid "Empty post discarded."
msgstr "L'articolo vuoto è stato ignorato."
-#: ../../mod/item.php:384
+#: ../../mod/item.php:385
msgid "Executable content type not permitted to this channel."
msgstr "I contenuti eseguibili non sono permessi su questo canale."
-#: ../../mod/item.php:806
+#: ../../mod/item.php:812
msgid "System error. Post not saved."
msgstr "Errore di sistema. Articolo non salvato."
-#: ../../mod/item.php:1167
+#: ../../mod/item.php:1148
#, 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:1173
+#: ../../mod/item.php:1154
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web."
-#: ../../mod/mood.php:133
+#: ../../mod/mood.php:138
msgid "Mood"
msgstr "Umore"
-#: ../../mod/mood.php:134
+#: ../../mod/mood.php:139
msgid "Set your current mood and tell your friends"
msgstr "Scegli il tuo umore attuale per mostrarlo agli amici"
@@ -6759,27 +6819,27 @@ msgstr "ha aggiunto il tuo canale"
msgid "posted an event"
msgstr "ha creato un evento"
-#: ../../mod/dirprofile.php:109
+#: ../../mod/dirprofile.php:111
msgid "Status: "
msgstr "Stato:"
-#: ../../mod/dirprofile.php:110
+#: ../../mod/dirprofile.php:112
msgid "Sexual Preference: "
msgstr "Preferenza sessuale:"
-#: ../../mod/dirprofile.php:112
+#: ../../mod/dirprofile.php:114
msgid "Homepage: "
msgstr "Homepage:"
-#: ../../mod/dirprofile.php:113
+#: ../../mod/dirprofile.php:115
msgid "Hometown: "
msgstr "Città dove vivo:"
-#: ../../mod/dirprofile.php:115
+#: ../../mod/dirprofile.php:117
msgid "About: "
msgstr "Informazioni:"
-#: ../../mod/dirprofile.php:160
+#: ../../mod/dirprofile.php:163
msgid "Keywords: "
msgstr "Parole chiave:"
diff --git a/view/it/strings.php b/view/it/strings.php
index 35ee32a9c..01462bcb2 100644
--- a/view/it/strings.php
+++ b/view/it/strings.php
@@ -71,6 +71,7 @@ $a->strings["Admin"] = "Amministrazione";
$a->strings["Site Setup and Configuration"] = "Configurazione del sito";
$a->strings["Nothing new here"] = "Niente di nuovo qui";
$a->strings["Please wait..."] = "Attendere...";
+$a->strings["Edit File properties"] = "Modifica le proprietà dei file";
$a->strings["Connect"] = "Entra in contatto";
$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";
@@ -154,6 +155,89 @@ $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["prev"] = "prec";
+$a->strings["first"] = "inizio";
+$a->strings["last"] = "fine";
+$a->strings["next"] = "succ";
+$a->strings["older"] = "più recenti";
+$a->strings["newer"] = "più nuovi";
+$a->strings["No connections"] = "Nessun contatto";
+$a->strings["%d Connection"] = array(
+ 0 => "%d contatto",
+ 1 => "%d contatti",
+);
+$a->strings["View Connections"] = "Elenco contatti";
+$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"] = "prod";
+$a->strings["prodded"] = "ha ricevuto un prod";
+$a->strings["slap"] = "schiaffo";
+$a->strings["slapped"] = "ha ricevuto uno schiaffo";
+$a->strings["finger"] = "finger";
+$a->strings["fingered"] = "ha ricevuto un finger";
+$a->strings["rebuff"] = "rifiuto";
+$a->strings["rebuffed"] = "ha ricevuto un rifiuto";
+$a->strings["happy"] = "allegro";
+$a->strings["sad"] = "triste";
+$a->strings["mellow"] = "calmo";
+$a->strings["tired"] = "stanco";
+$a->strings["perky"] = "vivace";
+$a->strings["angry"] = "arrabbiato";
+$a->strings["stupified"] = "stordito";
+$a->strings["puzzled"] = "confuso";
+$a->strings["interested"] = "attento";
+$a->strings["bitter"] = "amaro";
+$a->strings["cheerful"] = "allegro";
+$a->strings["alive"] = "vivace";
+$a->strings["annoyed"] = "seccato";
+$a->strings["anxious"] = "ansioso";
+$a->strings["cranky"] = "irritabile";
+$a->strings["disturbed"] = "turbato";
+$a->strings["frustrated"] = "frustrato";
+$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";
+$a->strings["remove from file"] = "rimuovi dal file";
+$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
+$a->strings["link to source"] = "Link all'originale";
+$a->strings["Select a page layout: "] = "Scegli il layout della pagina:";
+$a->strings["default"] = "predefinito";
+$a->strings["Page content type: "] = "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"] = "Design";
+$a->strings["Blocks"] = "Riquadri";
+$a->strings["Menus"] = "Menù";
+$a->strings["Layouts"] = "Layout";
+$a->strings["Pages"] = "Pagine";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> 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 <strong>potrebbero</strong> 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 nuovi canali che aggiungi";
$a->strings["All Channels"] = "Tutti i canali";
@@ -196,6 +280,7 @@ $a->strings["Profile Photos"] = "Foto del profilo";
$a->strings["view full size"] = "guarda nelle dimensioni reali";
$a->strings["Image/photo"] = "Immagine";
$a->strings["Encrypted content"] = "Contenuto crittografato";
+$a->strings["QR code"] = "QR code";
$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s seguente %3\$s";
$a->strings["post"] = "l'articolo";
$a->strings["$1 wrote:"] = "$1 ha scritto:";
@@ -252,16 +337,11 @@ $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["photo"] = "la foto";
-$a->strings["event"] = "l'evento";
$a->strings["channel"] = "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["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s";
$a->strings["Select"] = "Seleziona";
$a->strings["Delete"] = "Elimina";
@@ -353,6 +433,8 @@ $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"] = "Elenco file";
+$a->strings["Files and Storage"] = "Archivio file";
$a->strings["Events and Calendar"] = "Calendario eventi";
$a->strings["Webpages"] = "Pagine web";
$a->strings["Manage Webpages"] = "Gestisci le pagine web";
@@ -435,9 +517,6 @@ $a->strings["duplicate filename or path"] = "il file o percorso del file è dupl
$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["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["Tags"] = "Tag";
$a->strings["Keywords"] = "Parole chiave";
$a->strings["have"] = "ho";
@@ -528,84 +607,6 @@ $a->strings["%d connection in common"] = array(
);
$a->strings["New Page"] = "Nuova pagina web";
$a->strings["Edit"] = "Modifica";
-$a->strings["prev"] = "prec";
-$a->strings["first"] = "inizio";
-$a->strings["last"] = "fine";
-$a->strings["next"] = "succ";
-$a->strings["older"] = "più recenti";
-$a->strings["newer"] = "più nuovi";
-$a->strings["No connections"] = "Nessun contatto";
-$a->strings["%d Connection"] = array(
- 0 => "%d contatto",
- 1 => "%d contatti",
-);
-$a->strings["View Connections"] = "Elenco contatti";
-$a->strings["poke"] = "poke";
-$a->strings["ping"] = "ping";
-$a->strings["pinged"] = "ha ricevuto un ping";
-$a->strings["prod"] = "prod";
-$a->strings["prodded"] = "ha ricevuto un prod";
-$a->strings["slap"] = "schiaffo";
-$a->strings["slapped"] = "ha ricevuto uno schiaffo";
-$a->strings["finger"] = "finger";
-$a->strings["fingered"] = "ha ricevuto un finger";
-$a->strings["rebuff"] = "rifiuto";
-$a->strings["rebuffed"] = "ha ricevuto un rifiuto";
-$a->strings["happy"] = "allegro";
-$a->strings["sad"] = "triste";
-$a->strings["mellow"] = "calmo";
-$a->strings["tired"] = "stanco";
-$a->strings["perky"] = "vivace";
-$a->strings["angry"] = "arrabbiato";
-$a->strings["stupified"] = "stordito";
-$a->strings["puzzled"] = "confuso";
-$a->strings["interested"] = "attento";
-$a->strings["bitter"] = "amaro";
-$a->strings["cheerful"] = "allegro";
-$a->strings["alive"] = "vivace";
-$a->strings["annoyed"] = "seccato";
-$a->strings["anxious"] = "ansioso";
-$a->strings["cranky"] = "irritabile";
-$a->strings["disturbed"] = "turbato";
-$a->strings["frustrated"] = "frustrato";
-$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";
-$a->strings["remove from file"] = "rimuovi dal file";
-$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
-$a->strings["link to source"] = "Link all'originale";
-$a->strings["Select a page layout: "] = "Scegli il layout della pagina:";
-$a->strings["default"] = "predefinito";
-$a->strings["Page content type: "] = "Contenuto della pagina:";
-$a->strings["Select an alternate language"] = "Seleziona una lingua diversa";
-$a->strings["activity"] = "l'attività";
-$a->strings["Design"] = "Design";
-$a->strings["Blocks"] = "Riquadri";
-$a->strings["Menus"] = "Menù";
-$a->strings["Layouts"] = "Layout";
-$a->strings["Pages"] = "Pagine";
$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione esce dai termini del tuo abbonamento.";
$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento.";
@@ -692,6 +693,13 @@ $a->strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrat
$a->strings["Love/Romance:"] = "Amore:";
$a->strings["Work/employment:"] = "Lavoro:";
$a->strings["School/education:"] = "Scuola:";
+$a->strings["Permission denied"] = "Permesso negato";
+$a->strings["Item not found."] = "Elemento non trovato.";
+$a->strings["Collection not found."] = "Insieme 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["Private Message"] = "Messaggio privato";
$a->strings["save to folder"] = "salva in una cartella";
$a->strings["add star"] = "aggiungi ai preferiti";
@@ -727,13 +735,9 @@ $a->strings["Welcome "] = "Ciao";
$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo!";
$a->strings["Welcome back "] = "Ciao, è bello rivederti";
$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."] = "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto.";
-$a->strings["Permission denied"] = "Permesso negato";
-$a->strings["Item not found."] = "Elemento non trovato.";
-$a->strings["Collection not found."] = "Insieme 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["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["No channel."] = "Nessun canale.";
$a->strings["Common connections"] = "Contatti in comune";
$a->strings["No connections in common."] = "Nessun contatto in comune.";
@@ -938,6 +942,8 @@ $a->strings["In order to store these compiled templates, the web server needs to
$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 come 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 view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente per view/tpl/smarty3/ non per tutti i file di template (.tpl) che contiene.";
$a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 è 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"] = "Red usa un archivio per salvare i file caricati. Il server deve avere i diritti di scrittura sulla cartella dell'archivio che si trova dentro la cartella principale di Red";
+$a->strings["store is writable"] = "l'archivio è scrivibile";
$a->strings["SSL certificate validation"] = "Validazione del certificato SSL";
$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["Url rewrite in .htaccess is not working. Check your server configuration."] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server.";
@@ -1318,7 +1324,7 @@ $a->strings["School/education"] = "Scuola/educazione";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
$a->strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili";
$a->strings["Add profile things"] = "Aggiungi oggetti al profilo";
-$a->strings["Include desirable objects in your profile"] = "Aggiungi oggetti desiderabili al tuo profilo";
+$a->strings["Include desirable objects in your profile"] = "Aggiungi oggetti interessanti al tuo profilo";
$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 finiscono in un \"canale\". Un canale può essere usato per mantenere un tuo profilo personale, per avere un blog, per creare forum di discussione o gruppi di interesse, per pagine di celebrità e molto altro. Puoi creare quanti canali vuoi a meno di limiti dati dal gestore del 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\"";
@@ -1326,9 +1332,15 @@ $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 <a href=\"import\">import an existing channel</a> from another location"] = "Oppure <a href=\"import\">importa un tuo canale esistente</a> da un altro server/hub";
$a->strings["Permission Denied."] = "Permesso negato.";
-$a->strings["Permission denied. VS."] = "Permesso negato.";
+$a->strings["File not found."] = "File non trovato.";
+$a->strings["Edit file permissions"] = "Modifica i permessi del file";
+$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["Download"] = "Scaricamento dati";
$a->strings["Used: "] = "Usato:";
+$a->strings["[directory]"] = "[cartella]";
$a->strings["Limit: "] = "Limite:";
$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.";
@@ -1510,8 +1522,8 @@ $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["Edit Webpage"] = "Modifica la pagina web";
-$a->strings["Delete Webpage"] = "Elimina la pagina web";
+$a->strings["Item is not editable"] = "L'elemento non è modificabile";
+$a->strings["Delete item?"] = "Eliminare questo elemento?";
$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido.";
$a->strings["Discard"] = "Rifiuta";
$a->strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema.";
@@ -1519,7 +1531,9 @@ $a->strings["System Notifications"] = "Notifiche di sistema";
$a->strings["Block Name"] = "Nome del riquadro";
$a->strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub.";
$a->strings["Post successful."] = "Inviato!";
-$a->strings["Item is not editable"] = "L'elemento non è modificabile";
+$a->strings["Edit Webpage"] = "Modifica la pagina web";
+$a->strings["Delete webpage?"] = "Vuoi eliminare questa pagina web?";
+$a->strings["Delete Webpage"] = "Elimina la pagina web";
$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato.";
$a->strings["Poke/Prod"] = "Poke/Prod";
$a->strings["poke, prod or do other things to somebody"] = "Manda un poke, un prod o altro";
@@ -1532,7 +1546,6 @@ $a->strings["Insufficient permissions. Request redirected to profile page."] =
$a->strings["Not available."] = "Non disponibile.";
$a->strings["Community"] = "Comunità";
$a->strings["No results."] = "Nessun risultato.";
-$a->strings["Files"] = "Elenco file";
$a->strings["Contact not found."] = "Contatto non trovato.";
$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
$a->strings["Suggest Friends"] = "Suggerisci amici";